📄 book.java
字号:
// Class associated to the BOOK schema
package bookTrading.ontology;
import jade.content.Concept;
import jade.util.leap.List;
public class Book implements Concept {
private String title;
private List authors;
private String editor;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public List getAuthors() {
return authors;
}
public void setAuthors(List authors) {
this.authors = authors;
}
public String getEditor() {
return editor;
}
public void setEditor(String editor) {
this.editor = editor;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -