📄 bookoperations.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -