📄 miningattribute.java
字号:
package org.scut.DataMining.Core;
public abstract class MiningAttribute
{
/** name of the attribute */
private String name;
/**
* Constructs a MiningAttribute by name and type
* @param name name of attribute
* @param type type of attribute
*/
public MiningAttribute(String name)
{
this.name = name;
}
/**
* Gets the name of the attribute
* @return name of the attribute
*/
public String getName()
{
return this.name;
}
/**
* Sets the name of the attribute
* @param name name string to be set to the attribute
*/
public void setName(String name)
{
this.name = name;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -