?? modelnode.java
字號:
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
package eti.bi.alphaminer.vo;
/**
* <p>Title: KBBI Application</p>
* <p>Description: A Knowledge Based Business Intelligence Platform</p>
* <p>Copyright: Copyright (c) 2004</p>
* <p>Company: E-Business Technology Institute, HKU</p>
* @author Anny Chiu
* @version 1.0
*/
public class ModelNode extends Node {
/**
*
*/
private static final long serialVersionUID = 1L;
private int m_Type;
private String m_Description;
private String m_PMMLPath;
private String m_PMMLName;
public ModelNode(){
super();
}
public ModelNode(String a_CaseID) {
super(a_CaseID, NodeFactory.MODEL);
}
public ModelNode(String a_CaseID, ModelNode a_ModelNode)
{
super(a_CaseID, NodeFactory.MODEL);
copyNodeProperty(a_ModelNode);
setType(a_ModelNode.getType());
setDescription(a_ModelNode.getDescription());
setPMMLPath(a_ModelNode.getPMMLPath());
setPMMLName(a_ModelNode.getPMMLName());
}
public int getType()
{
return m_Type;
}
public void setType(int a_Type)
{
m_Type = a_Type;
}
public String getDescription()
{
return m_Description;
}
public void setDescription(String a_Description)
{
m_Description = a_Description;
}
public String getPMMLPath()
{
return m_PMMLPath;
}
public void setPMMLPath(String a_Path)
{
m_PMMLPath = a_Path;
}
public String getPMMLName()
{
return m_PMMLName;
}
public void setPMMLName(String a_Name)
{
m_PMMLName = a_Name;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -