亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? bicase.java

?? 為了下東西 隨便發(fā)了個 datamining 的源代碼
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
	 * Gets a NodeList of operator nodes.
	 * @return NodeList of operator nodes.
	 */
	public NodeList getOperatorNodeList() {
		return m_OperatorNodeList;
	}
	
	/**
	 * Sets the operator node NodeList.
	 * @param a_NodeList operator node NodeList to be set.
	 */
	public void setOperatorNodeList(NodeList a_NodeList) {
		m_OperatorNodeList = a_NodeList;
	}

	/**
	 * Gets an array of operator nodes.
	 * @return array of Nodes (OperatorNode).
	 */
	public Node[] getOperatorNodeListArray() {
		return m_OperatorNodeList.getNodeListArray();
	}

	/**
	 * Gets the size of operator node NodeList.
	 * @return size of NodeList storing operator nodes.
	 */
	public int getOperatorNodeListSize() {
		return m_OperatorNodeList.getNodeListSize();
	}
				
	/**
	 * Gets a NodeList of model nodes.
	 * @return NodeList of model nodes.
	 */
	public NodeList getModelNodeList() {
		return m_ModelNodeList;
	}
		
	/**
	 * Sets the model node NodeList.
	 * @param a_NodeList model node NodeList to be set.
	 */
	public void setModelNodeList(NodeList aNodeList) {
		m_ModelNodeList = aNodeList;
	}

	/**
	 * Gets an array of model nodes.
	 * @return array of Nodes (ModelNode).
	 */
	public Node[] getModelNodeListArray() {
		return m_ModelNodeList.getNodeListArray();
	}

	/**
	 * Gets the size of model node NodeList.
	 * @return size of NodeList storing model nodes.
	 */
	public int getModelNodeListSize() {
		return m_ModelNodeList.getNodeListSize();
	}

	/**
	 * Gets the Process of the case instance.
	 * @return Process of the case.
	 */
	public Process getProcess() {
		return m_Process;
	}

	/**
	 * Sets Process of the case.
	 * @param a_Process the Process to be set into the case.
	 */
	public void setProcess(Process a_Process) {
		m_Process = a_Process;
	}

	/**
	 * Gets all children of a Node.
	 * @param a_NodeID ID of the parent Node.
	 * @return a Vector of all children of a Node.
	 */
	public Vector getChildrenOfNode(String a_NodeID) {
		return m_Process.getChildrenOfNode(a_NodeID);
	}

/*
	public Vector getRootNodes() {
		Vector root = new Vector();
		Node[] nodes = getOperatorNodeListArray();
		for (int i = 0; i < nodes.length; i++) {
			if (getParentOfNodes(nodes[i].getNodeID()).size() == 0)
				root.addElement(nodes[i].getNodeID());
		}
		return root;
	}
*/

	/**
	 * Gets all parents of a Node.
	 * @param a_NodeID ID of the child Node.
	 * @return a Vector of all parents of a Node.
	 */
	public Vector getParentOfNodes(String a_NodeID) {
		return m_Process.getParentsOfNode(a_NodeID);
	}

/*
	public int getPathLengthOfNode(String a_NodeID) {
		int length = 0;
		String nodeID = a_NodeID;
		Vector children = getChildrenOfNode(nodeID);
		while (children.size() > 0) {
			length++;
			Vector nodes = new Vector();
			for (int i = 0; i < children.size(); i++) {
				Vector childrenNode =
					getChildrenOfNode((String) children.elementAt(i));
				for (int j = 0; j < childrenNode.size(); j++)
					nodes.addElement(childrenNode.elementAt(j));
			}
			children = nodes;
		}
		return length;
	}
*/

	/**
	 * Inserts a Connection between two nodes in the case.
	 * @param a_HeadNodeID ID of the parent node of the connection.
	 * @param a_TailNodeID ID of the child node of the connection.
	 * @return true if Connection between nodes is inserted successfully;
	 * false otherwise.
	 */
	public boolean insertConnection(String a_HeadNodeID, String a_TailNodeID) {
		final boolean successInsert = m_Process.insertConnection(
			a_HeadNodeID,
			getOperatorNode(a_HeadNodeID).getMaxNumChild(),
			a_TailNodeID,
			getOperatorNode(a_TailNodeID).getMaxNumParent());
			
/*		
		if (successInsert)
		{
			Node headNode = getOperatorNode(a_HeadNodeID);
			Node tailNode = getOperatorNode(a_TailNodeID);
			
			tailNode.setInputMiningObject(headNode.getOutputMiningObject());
		}
	*/	
		return successInsert;
	}

	/**
	 * Removes a Connection between two nodes in the case.
	 * @param a_HeadNodeID ID of the parent node of the connection.
	 * @param a_TailNodeID ID of teh child node of the connection.
	 */
	public void removeConnection(String a_HeadNodeID, String a_TailNodeID) {
		m_Process.removeConnectionBetweenNodes(a_HeadNodeID, a_TailNodeID);
	}
		
	/**
	 * Gets status of the case.
	 * @return status of the case.
	 */
	public String getStatus() {
		return m_Status;
	}

	/**
	 * Sets status of the case.
	 * @param a_Status
	 */
	public void setStatus(String a_Status) {
		m_Status = a_Status;
	}

	/**
	 * Gets access right of the case.
	 * @return access right of the case.
	 */
	public int getAccessRight() {
		return m_AccessRight;
	}

	/**
	 * Sets access right of the case.
	 * @param a_Access access right to be set.
	 */
	public void setAccessRight(int a_Access) {
		m_AccessRight = a_Access;
	}
	
	/**
	 * Gets version of the case.
	 * @return verion of the case.
	 */
	public int getVersion() {
		return m_Version;
	}

	/**
	 * Sets version of the case.
	 * @param a_Version verion to be set.
	 */
	public void setVersion(int a_Version) {
		m_Version = a_Version;
	}	

	public int getNextAvailableNodeID(String a_Prefix)
	{
		int i = 0;
		String id = null;
				
		while (true)
		{
			id = a_Prefix + i;
			if (!m_OperatorNodeList.containNodeID(id))
				break;
			i++;
		}
		return i; 
	}

	/**
	 * Removes TaskNode from the case.
	 */
	private void removeTaskNode() {
		m_TaskNode = null;
	}
	
	/**
	 * Gets a DataNode from the case.
	 * @param a_NodeID ID of the data node to be obtained.
	 * @return Node (DataNode).
	 */
	private Node getDataNode(String a_NodeID) {
		if (a_NodeID == null)
			System.err.println("In Case:getModelNode: node id is null");
		return m_DataNodeList.getNode(a_NodeID);
	}

	/**
	 * Sets a DataNode in the case.
	 * @param a_Node DataNode to be set.
	 */
	private void setDataNode(DataNode a_Node) {
		if (a_Node == null)
			System.err.println("In Case:addModelNode: node is null");
		if (a_Node.getNodeID() == null)
			System.err.println("In Case:addModelNode: node id is null");
		m_DataNodeList.setNode(a_Node.getNodeID(), a_Node);
	}

	/**
	 * Removes a DataNode from the NodeList of data nodes.
	 * @param a_NodeID ID of the DataNode to be removed from the list.
	 */
	private void removeDataNode(String a_NodeID) {
		if (a_NodeID == null)
			System.err.println("In Case:removeDataNode: node id is null");
		m_DataNodeList.removeNode(a_NodeID);
	}

	/**
	 * Gets a OperatorNode from the case.
	 * @param a_NodeID ID of the operator node to be obtained.
	 * @return Node (OperatorNode).
	 */
	private Node getOperatorNode(String a_NodeID) {
		if (a_NodeID == null)
			System.err.println("In Case:getOperatorNode: node id is null");
		return m_OperatorNodeList.getNode(a_NodeID);
	}

	/**
	 * Sets a OperatorNode in the case.
	 * @param a_Node OperatorNode to be set.
	 */
	public void setOperatorNode(IOperatorNode a_Node) {
		if (a_Node == null)
			System.err.println("In Case:addModelNode: node is null");
		if (a_Node.getNodeID() == null)
			System.err.println("In Case:addModelNode: node id is null");
		m_OperatorNodeList.setOperatorNode(a_Node.getNodeID(), a_Node);
	}

	/**
	 * Removes a OperatorNode from the NodeList of operator nodes.
	 * @param a_NodeID ID of the OperatorNode to be removed from the list.
	 */
	private void removeOperatorNode(String a_NodeID) {
		if (a_NodeID == null)
			System.err.println("In Case:removeModelNode: node id is null");
		m_OperatorNodeList.removeNode(a_NodeID);
		m_Process.removeConnectionOfNode(a_NodeID);
	}

	/**
	 * Gets a OperatorNode from the case.
	 * @param a_NodeID ID of the operator node to be obtained.
	 * @return Node (OperatorNode).
	 */
	private Node getModelNode(String a_NodeID) {
		if (a_NodeID == null)
			System.err.println("In Case:getModelNode: node id is null");
		return m_ModelNodeList.getNode(a_NodeID);
	}

	/**
	 * Sets a OperatorNode in the case.
	 * @param a_Node OperatorNode to be set.
	 */
	private void setModelNode(ModelNode a_Node) {
		if (a_Node == null)
			System.err.println("In Case:addModelNode: node is null");
		if (a_Node.getNodeID() == null)
			System.err.println("In Case:addModelNode: node id is null");
		m_ModelNodeList.setNode(a_Node.getNodeID(), a_Node);
	}
	
	/**
	 * Removes a OperatorNode from the NodeList of operator nodes.
	 * @param a_NodeID ID of the OperatorNode to be removed from the list.
	 */
	private void removeModelNode(String a_NodeID) {
		if (a_NodeID == null)
			System.err.println("In Case:removeModelNode: node id is null");
		m_ModelNodeList.removeNode(a_NodeID);
	}
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久久久99精品| 亚洲丰满少妇videoshd| 久久精品视频网| 国产精品欧美一区二区三区| 中文字幕日韩精品一区 | 国产成人午夜片在线观看高清观看| 国产精品视频你懂的| 久久久www成人免费毛片麻豆| 精品三级在线看| 久久久久国产精品人| 亚洲男女一区二区三区| 在线观看日韩毛片| 五月综合激情网| 日韩一区二区三区观看| 国产中文一区二区三区| 亚洲精品一区二区三区香蕉| 国产91精品精华液一区二区三区| 国产精品国产三级国产a| 色婷婷综合久久| 亚洲一卡二卡三卡四卡无卡久久| 欧美电影在哪看比较好| 激情欧美一区二区三区在线观看| 亚洲国产精品精华液2区45| 91美女蜜桃在线| 一区二区视频在线| 日韩精品一区二| 波多野结衣中文一区| 偷拍一区二区三区四区| 日韩精品一区二区三区四区| 成人午夜在线视频| 亚洲a一区二区| 久久婷婷国产综合精品青草 | 免费欧美在线视频| 国产欧美日本一区二区三区| 在线观看国产一区二区| 另类专区欧美蜜桃臀第一页| 日韩理论片在线| 日韩三级中文字幕| 欧美中文字幕一区| 国产盗摄一区二区| 婷婷丁香久久五月婷婷| 国产欧美一区二区三区鸳鸯浴 | 成人精品国产福利| 亚洲va在线va天堂| 国产精品美女视频| 日韩一区二区影院| 欧美亚洲动漫精品| 成人中文字幕在线| 麻豆freexxxx性91精品| 国产精品传媒入口麻豆| 色综合激情五月| 五月激情综合色| 亚洲欧洲精品一区二区精品久久久| 精品无人码麻豆乱码1区2区| 欧美一区二区三区日韩视频| 丝袜亚洲另类欧美综合| 色噜噜狠狠成人中文综合| 自拍偷拍国产精品| 日本乱人伦一区| 洋洋av久久久久久久一区| 91亚洲国产成人精品一区二区三| 欧美一区二区三区视频免费| 99re这里都是精品| 国产一区二区三区| 麻豆精品一区二区av白丝在线| 亚洲日韩欧美一区二区在线| 精品国产乱码久久久久久闺蜜| 91在线国内视频| 成人a免费在线看| 国产成人精品免费在线| 国产一区二区伦理| 老汉av免费一区二区三区| 秋霞av亚洲一区二区三| 三级精品在线观看| 亚洲国产日韩a在线播放性色| 成人免费一区二区三区视频| 国产精品系列在线| 国产精品丝袜一区| 国产欧美日韩精品一区| 欧美国产精品专区| 国产精品拍天天在线| 日本一区二区三级电影在线观看| 久久综合色8888| 久久久久久电影| 国产精品视频一区二区三区不卡| 国产欧美日韩精品一区| 国产精品福利在线播放| 亚洲视频你懂的| 一区二区欧美在线观看| 亚洲一卡二卡三卡四卡无卡久久 | 欧美日本国产视频| 欧美性大战久久久久久久| 欧美色男人天堂| 欧美高清视频不卡网| 91麻豆精品国产91久久久久久久久| 欧美日韩一区二区三区四区五区| 欧美美女一区二区| 精品久久一区二区三区| 国产亚洲欧美一级| 国产精品久久久久一区二区三区 | 日韩一区有码在线| 亚洲综合在线观看视频| 午夜精品免费在线观看| 久久爱www久久做| 国产高清无密码一区二区三区| 处破女av一区二区| 欧美性感一类影片在线播放| 日韩一区二区影院| 国产精品天天摸av网| 亚洲一区中文日韩| 日韩精品电影在线| 激情五月激情综合网| av爱爱亚洲一区| 777午夜精品免费视频| 久久免费偷拍视频| 亚洲男女一区二区三区| 久久91精品国产91久久小草| 国产成人av一区二区三区在线观看| www.一区二区| 日韩精品资源二区在线| 一区在线中文字幕| 激情综合网av| 欧美影院午夜播放| 国产亚洲1区2区3区| 日韩精品欧美成人高清一区二区| 成人综合激情网| 欧美xxxxx牲另类人与| 亚洲图片另类小说| 国产精品一区二区果冻传媒| 欧美日韩国产首页在线观看| 国产精品免费视频网站| 麻豆精品在线视频| 色婷婷亚洲婷婷| 久久亚洲捆绑美女| 日韩成人免费看| 色噜噜狠狠色综合欧洲selulu| 精品国产电影一区二区| 亚洲444eee在线观看| 成+人+亚洲+综合天堂| 欧美白人最猛性xxxxx69交| 亚洲成人动漫av| 91网站视频在线观看| 亚洲国产成人午夜在线一区| 精品一区二区三区免费播放 | 91在线观看一区二区| 精品国产电影一区二区| 男女男精品视频网| 欧美三级电影网| 亚洲精品一卡二卡| 国产成人av自拍| 国产日韩一级二级三级| 精品中文字幕一区二区| 91精品国产麻豆| 一区二区激情小说| 色婷婷久久久亚洲一区二区三区| 国产精品久久久久久久久免费樱桃| 国产在线精品免费av| 日韩欧美精品在线视频| 日韩电影在线看| 欧美一级二级三级蜜桃| 婷婷综合五月天| 欧美日韩第一区日日骚| 亚洲成人三级小说| 欧美猛男男办公室激情| 五月激情综合色| 欧美挠脚心视频网站| 视频一区中文字幕| 欧美精品日韩精品| 日韩电影一区二区三区| 欧美福利电影网| 免费高清在线视频一区·| 日韩欧美黄色影院| 国产激情一区二区三区四区| 国产欧美日本一区视频| 99精品一区二区| 一区二区三区毛片| 欧美久久久久免费| 免费观看在线色综合| 久久中文娱乐网| 99综合电影在线视频| 亚洲一区国产视频| 欧美一区二区女人| 国产在线播放一区二区三区| 国产精品午夜免费| 在线免费观看一区| 日韩高清不卡一区二区三区| 精品国产一区久久| www.欧美.com| 亚洲电影一区二区| 精品盗摄一区二区三区| 成人av电影在线观看| 亚洲一区二区在线观看视频| 欧美精品自拍偷拍| 国产乱码精品1区2区3区| 综合久久久久久久| 欧美精品久久久久久久久老牛影院| 久久成人羞羞网站| 亚洲欧美日韩久久| 日韩欧美国产麻豆| 91小宝寻花一区二区三区|