?? operation.java
字號(hào):
/* * @(#)Operation.java 1.7 05/11/17 * * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.corba.se.spi.orb ;/** A generic class representing a function that takes a value and returns * a value. This is a building block for property parsing. */public interface Operation{ /** Apply some function to a value and return the result. */ Object operate( Object value ) ;}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -