variable.java
来自「Java开的发文件管理系统,可以管理整个服务器的文件,并按要求进行处理!」· Java 代码 · 共 55 行
JAVA
55 行
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 + =
减小字号Ctrl + -
显示快捷键?