actionstat.java
来自「jgraph 自动布局src源代码」· Java 代码 · 共 38 行
JAVA
38 行
package test.bean;
public class ActionStat {
private ActionInfo sourceAction;
private ActionInfo targetAction;
private Long statCount;
public ActionStat(ActionInfo sourceAction,ActionInfo targetAction,Long statCount){
this.sourceAction=sourceAction;
this.targetAction=targetAction;
this.statCount=statCount;
}
public Long getStatCount() {
return statCount;
}
public void setStatCount(Long statCount) {
this.statCount = statCount;
}
public ActionInfo getSourceAction() {
return sourceAction;
}
public void setSourceAction(ActionInfo sourceAction) {
this.sourceAction = sourceAction;
}
public ActionInfo getTargetAction() {
return targetAction;
}
public void setTargetAction(ActionInfo targetAction) {
this.targetAction = targetAction;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?