📄 variable.java
字号:
package com.ibm.gbsc.cte.sample;
public class Variable {
private String name = "";
private int type = Constants.READ_ONLY;
private int source = Constants.GLOBAL;
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name
* the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the type
*/
public int getType() {
return type;
}
/**
* @param type the type to set
*/
public void setType(int type) {
this.type = type;
}
/**
* @return the source
*/
public int getSource() {
return source;
}
/**
* @param source the source to set
*/
public void setSource(int source) {
this.source = source;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -