📄 attribute.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -