bookoperations.java
来自「分布式CORBA的一些简答例程」· Java 代码 · 共 60 行
JAVA
60 行
package BookStore;
/**
* <ul>
* <li> <b>IDL Source</b> "BookStore.idl"
* <li> <b>IDL Name</b> ::BookStore::Book
* <li> <b>Repository Id</b> IDL:BookStore/Book:1.0
* </ul>
* <b>IDL definition:</b>
* <pre>
* interface Book {
...
};
* </pre>
*/
public interface BookOperations {
/**
* <pre>
* attribute string name;
* </pre>
*/
public java.lang.String name ();
/**
* <pre>
* attribute string name;
* </pre>
*/
public void name (java.lang.String name);
/**
* <pre>
* attribute string author;
* </pre>
*/
public java.lang.String author ();
/**
* <pre>
* attribute string author;
* </pre>
*/
public void author (java.lang.String author);
/**
* <pre>
* attribute string isbn;
* </pre>
*/
public java.lang.String isbn ();
/**
* <pre>
* attribute string isbn;
* </pre>
*/
public void isbn (java.lang.String isbn);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?