📄 conjugaison.java
字号:
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package velephant.business;/** * * @author Doan Chien Thang */public class Conjugaison { private String conjugaison; private int infinitifIdx; private int tense; private int person; private Verb verb; public Conjugaison(String conjugaison, int infinitifIdx, int tense, int person, Verb verb) { this.conjugaison = conjugaison; this.infinitifIdx = infinitifIdx; this.tense = tense; this.person = person; this.verb = verb; } @Override public String toString() { return conjugaison + "," + infinitifIdx + "," + tense + "," + person; } public String getConjugaison() { return this.conjugaison; } public int compareTo(Object o) { Conjugaison c = (Conjugaison)o; return (this.conjugaison.compareTo(c.getConjugaison())); } public void setInfinitifIdx(int idx) { this.infinitifIdx = idx; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -