⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 attribute.java

📁 GUI Ant-Miner is a tool for extracting classification rules from data. It is an updated version of a
💻 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 + -