attribute.java
来自「GUI Ant-Miner is a tool for extracting c」· Java 代码 · 共 34 行
JAVA
34 行
import java.util.LinkedList;
import java.util.List;
/*
* Created on 25/03/2005
*/
/**
* @author Fernando Meyer
*/
public class Attribute {
private String attributeName;
private List type;
public Attribute(){
type = new LinkedList();
}
public void setAttributeName(String name){
attributeName = name;
}
public String getAttributeName(){
return attributeName;
}
public void addType(String type){
this.type.add(type);
}
public List getTypes(){
return type;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?