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

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

?? vertex.java

?? 這是一個從音頻信號里提取特征參量的程序
?? JAVA
?? 第 1 頁 / 共 3 頁
字號:
    public Vector getChildren() {	return vertexChildren;    }    // method: addChild    //    // arguments:    //   Vertex child: (input) new child to be added    // returns: none    //    // adds the child to the list    //     public boolean addChild(Vertex child) {	if (!vertexChildren.contains(child)) {	    vertexChildren.addElement(child);	    return true;	}	return false;    }    // method: addChild    //    // arguments:    //   Vertex child: (input) new child to be added    //   int index: (input) index at which the child is to be added    // returns: none    //    // adds the child to the list    //     public boolean addChild(Vertex child, int index) {	if (!vertexChildren.contains(child)) {	    if (index >= vertexChildren.size()) {		vertexChildren.setSize(index + 1);	    }	    vertexChildren.setElementAt(child, index);	    return true;	}	return false;    }    // method: removeChild    //    // arguments:    //   Vertex child: (input) child to be removed    // returns: method status    //    // removes the child from the list    //     public boolean removeChild(Vertex child) {	return vertexChildren.removeElement(child);    }    // method: updateVertexDimensions    //    // arguments: none    // returns  : none    //    // method resets and revalidates the vertex dimension    //    public void updateVertexDimensions() {		// declare local variables	//	int newWidth = 0;	int newHeight = 0;	// check if the parent vector has been initialized	//	if (vertexParents == null) {	    return;	}	// determine the width of the vertex	//	if (vertexParents.size() == 0) {	    newWidth =  this.vertexWidth;	} else {	    newWidth =  (vertexParents.size() * this.vertexWidth);	}	// determine the height of the vertex	//	newHeight = this.getVertexHeight();	// set the new vertex dimensions	//	this.setSize(new Dimension(newWidth, newHeight));	this.setMinimumSize(new Dimension(newWidth, newHeight));	this.setPreferredSize(new Dimension(newWidth, newHeight));    }    // method: initializeConfig    //    // arguments:    //   Vector n: (input) vector of algorithm names    //   Vector v: (input) vector of algorithm values    //   Vector t: (input) vector of algorithm data types    //   String s: (input) algorithm immage association    //   Data d: (input) algorithm data object    // returns  : none    //    // initializes the configuration parameters of the algorithm vertex    //    public void initializeConfig(Vector n, Vector v, Vector t, 				 String a, Data d) {		// initialize data members	//	names = n;	types = t;	association = a;	Data data = d;	values = new Vector(5,5);	subclass = new Vector(2,1);	for(int i=0; i < v.size(); i++) {	    // if enumerated type, get the first value	    //		    if(types.get(i).equals(ALGORITHM_ENUM)){		Vector enum_values = (Vector)v.get(i);		values.add(enum_values.get(0));	    }	    // add a default subclass with basic parameters here to begin with	    // this still needs to be worked out properly	    //	    else if (types.get(i).equals(ALGORITHM_CLASS)) {		values.add(v.get(i));		max_subclass++;				String image_name = null;		String image_association= null;				// tells the program which ALGORITHM it is looking to match		//		image_association = (String)values.get(i);		// scans through the association until it finds the 		// smallIcon key		//		for(int j=data.association.indexOf(image_association); 		    j <= data.association.lastIndexOf(image_association);		    j++) {		    if(j != -1) {			if(((String)(data.name.get(j))).equals(ALGORITHM_ICON_SMALL)) {			    // sets the image_name to the value held in 			    // small icon			    //			    image_name = (String)data.values.get(j);			}		    }		}		    		// check to see if the file exists. If it does not exist,		// use a default image		//		if(image_name != null){		    File image_file = new File(image_name);		    if (image_file.exists() == false)			image_name = CONTAINER_IMAGE;		}		else {		    image_name = CONTAINER_IMAGE ;		}				// create the icons for the config panel		//		ImageIcon icon = new ImageIcon(image_name);				// create the button for the config panel		//		Vertex button = new Vertex(icon, ALGORITHM);				// to simplify the creation, the data vectors will be trimmed 		// to only include the ALGORITHM we're looking at and saved 		// into these three vectors for use in a bit		//		Vector labels2 = new Vector(5,5);		Vector types2 = new Vector(5,5);		Vector values2 = new Vector(5,5);				for(int j=data.association.indexOf(image_association); 		    j <= data.association.lastIndexOf(image_association);		    j++) {		    if(j != -1) {			labels2.add(data.name.get(j));			types2.add(data.type.get(j));			values2.add(data.values.get(j));		    }		}	 		// initialize the vertex to the default values for its type		//		button.initializeConfig(labels2, values2, types2,					image_association, data);				// add subclass button to the vector		//		subclass.add(button);				// attach an action listener to the button		//		button.setActionCommand(ALGORITHM_CLASS);	    }	    // add sub parameters here to begin with	    // this still needs to be worked out properly	    //	    else if (types.get(i).equals(ALGORITHM_PARAM)) {		values.add(v.get(i));		max_subparam++;				String image_name = null;		String image_association= null;				// tells the program which ALGORITHM it is looking to match		//		image_association = (String)values.get(i);		// scans through the association until it finds the 		// smallIcon key		//		for(int j=data.association.indexOf(image_association); 		    j <= data.association.lastIndexOf(image_association);		    j++) {		    if(j != -1) {			if(((String)(data.name.get(j))).equals(ALGORITHM_ICON_SMALL)) {			    // sets the image_name to the value held in 			    // small icon			    //			    image_name = (String)data.values.get(j);			}		    }		}		    		// check to see if the file exists. If it does not exist,		// use a default image		//		if(image_name != null){		    File image_file = new File(image_name);		    if (image_file.exists() == false)			image_name = CONTAINER_IMAGE;		}		else {		    image_name = CONTAINER_IMAGE;		}				// create the icons for the config panel		//		ImageIcon icon = new ImageIcon(image_name);				// create the button for the config panel		//		Vertex button = new Vertex(icon, ALGORITHM);		button.association = image_association;		// to simplify the creation, the data vectors will be trimmed 		// to only include the ALGORITHM we're looking at and saved 		// into these three vectors for use in a bit		//		Vector labels2 = new Vector(5,5);		Vector types2 = new Vector(5,5);		Vector values2 = new Vector(5,5);				for(int j=data.association.indexOf(image_association); 		    j <= data.association.lastIndexOf(image_association);		    j++) {		    if(j != -1) {			labels2.add(data.name.get(j));			types2.add(data.type.get(j));			values2.add(data.values.get(j));		    }		}	 		// initialize the vertex to the default values for its type		//		//button.initializeConfig(labels2, values2, types2,		//		image_association, data);				// add subclass button to the vector		//		subparam.add(button);				// attach an action listener to the button		//		button.setActionCommand(ALGORITHM_PARAM);	    }	    // do nothing if the type is image	    //	    else if (types.get(i).equals(ALGORITHM_IMAGE)) {		values.add(v.get(i));	    }	    // If there is only one value given, set the default as the value	    //	    else {				// add the defaults to the values vector		//		values.add(v.get(i));	    }    	}    }    // method: initializeConfigGen    //    // arguments:    //   Vector n: (input) vector of algorithm names    //   Vector v: (input) vector of algorithm values    //   Vector t: (input) vector of algorithm data types    //   String s: (input) algorithm immage association    //   Data d: (input) algorithm data object    // returns  : none    //    // initializes the configuration parameters of the algorithm vertex    //    public void initializeConfigGen(Vector n, Vector v, Vector t, 				 String a, Data d) {		// initialize data members	//	names = n;	types = t;	association = a;	Data data = d;	values = new Vector(5,5);	//subparam = new Vector(2,1);	for(int i=0; i < v.size(); i++) {	    // if enumerated type, get the first value	    //		    if(types.get(i).equals(ALGORITHM_ENUM)){		Vector enum_values = (Vector)v.get(i);		values.add(enum_values.get(0));	    }	    // add a default object with basic parameters here to begin with	    // this still needs to be worked out properly	    //	    else if (types.get(i).equals(ALGORITHM_PARAM)) {		values.add(v.get(i));		max_subparam++;				String image_name = null;		String image_association= null;				// tells the program which ALGORITHM it is looking to match		//		image_association = (String)values.get(i);		// scans through the association until it finds the 		// smallIcon key		//		for(int j=data.association.indexOf(image_association); 		    j <= data.association.lastIndexOf(image_association);		    j++) {		    if(j != -1) {			if(((String)(data.name.get(j))).equals(ALGORITHM_ICON_SMALL)) {			    // sets the image_name to the value held in 			    // small icon			    //			    image_name = (String)data.values.get(j);			}		    }		}		    		// check to see if the file exists. If it does not exist,		// use a default image		//		if(image_name != null){		    File image_file = new File(image_name);		    if (image_file.exists() == false)			image_name = CONTAINER_IMAGE;		}		else {		    image_name = CONTAINER_IMAGE;		}								// create the icons for the config panel		//		ImageIcon icon = new ImageIcon(image_name);				// create the button for the config panel		//		Vertex button = new Vertex(icon, ALGORITHM);		button.association = image_association;				// to simplify the creation, the data vectors will be trimmed 		// to only include the ALGORITHM we're looking at and saved 		// into these three vectors for use in a bit		//		Vector labels2 = new Vector(5,5);		Vector types2 = new Vector(5,5);		Vector values2 = new Vector(5,5);				for(int j=data.association.indexOf(image_association); 		    j <= data.association.lastIndexOf(image_association);		    j++) {		    if(j != -1) {			labels2.add(data.name.get(j));			types2.add(data.type.get(j));			values2.add(data.values.get(j));		    }		}	 		// initialize the vertex to the default values for its type		//		//button.initializeConfig(labels2, values2, types2,		//		image_association, data);				// add subclass button to the vector		//		subparam.add(button);				// attach an action listener to the button		//		button.setActionCommand("param");	    }	    // do nothing if the type is image	    //	    else if (types.get(i).equals(ALGORITHM_IMAGE)) {		values.add(v.get(i));	    }	    // If there is only one value given, set the default as the value	    //	    else {				// add the defaults to the values vector		//		values.add(v.get(i));	    }    	}    }    // ---------------------------------------------------    //    // class required methods    //    // ---------------------------------------------------    // method: paintComponent    //    // arguments:    //   Graphics g: (input) graphics object    //    // return: none    //    protected void paintComponent(Graphics g) {	// set the background color of the vertex	//	switch (vertexType) {	case ALGORITHM:	    break;	case CONTAINER:	    break;	default:	    break;	}	// this call will paint the label and the focus	//	super.paintComponent(g);     }    // method: paintBorder    //    // arguments:    //    Graphics g: (input) graphics object    //    // return: none    //    protected void paintBorder(Graphics g) { 	// not implemented    }}//// end of file

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
69久久99精品久久久久婷婷| 一区二区三区日韩欧美精品| 亚洲综合精品自拍| 国产在线观看一区二区| 欧美三级韩国三级日本一级| 国产精品久久久久久久久图文区 | 国产美女一区二区| 在线看日本不卡| 国产精品免费免费| 精品一区二区三区久久久| 欧美群妇大交群中文字幕| 日韩理论在线观看| 成人av网址在线| 2023国产精品视频| 蜜桃在线一区二区三区| 欧美精品在线一区二区| 亚洲一区二区欧美激情| 91小视频在线观看| 中文字幕五月欧美| 成人av在线观| 中文字幕第一页久久| 国产成人午夜精品影院观看视频| 欧美一级淫片007| 日韩高清不卡在线| 欧美日韩另类一区| 亚洲国产精品精华液网站| 色婷婷av一区| 伊人开心综合网| 欧洲av在线精品| 亚洲成人www| 91精品国产全国免费观看| 亚洲777理论| 欧美一区二区三区白人| 开心九九激情九九欧美日韩精美视频电影 | 午夜精品影院在线观看| 欧美影院一区二区| 亚洲一区二区五区| 91精品国产免费| 国内外成人在线视频| 欧美不卡一二三| 国产成人av电影在线| 日韩毛片一二三区| 欧美日韩午夜在线视频| 美女网站色91| 久久久久97国产精华液好用吗| 国产成人av一区二区三区在线观看| 国产视频在线观看一区二区三区 | 亚洲人成精品久久久久| 欧美手机在线视频| 蜜臀a∨国产成人精品| 久久久久成人黄色影片| a级高清视频欧美日韩| 亚洲在线视频一区| 欧美白人最猛性xxxxx69交| 国产成人精品三级| 一区二区三区免费在线观看| 欧美一区二区三区四区视频| 国产精品亚洲综合一区在线观看| 中文字幕在线观看不卡视频| 日本丶国产丶欧美色综合| 麻豆成人免费电影| 国产精品麻豆久久久| 欧美二区三区的天堂| 国产大陆a不卡| 午夜精品一区在线观看| 国产日韩高清在线| 欧美另类videos死尸| 风间由美中文字幕在线看视频国产欧美| 国产精品久久久久aaaa樱花 | 国产片一区二区三区| 欧美亚洲国产怡红院影院| 国产专区综合网| 亚洲国产日韩精品| 国产欧美一区二区在线| 欧美日韩国产天堂| 成人午夜在线视频| 蜜桃久久av一区| 一区二区三区视频在线观看| 久久久久久亚洲综合影院红桃 | 亚洲国产精品久久不卡毛片| 国产欧美精品一区二区三区四区 | 99久久99久久精品国产片果冻| 日本一区中文字幕 | 日本一区二区三区久久久久久久久不 | 日韩欧美高清一区| 色香蕉成人二区免费| 国产寡妇亲子伦一区二区| 天堂影院一区二区| 一区二区成人在线| 国产欧美一区视频| www欧美成人18+| 91精品国产91久久久久久一区二区| 99久久免费视频.com| 国产乱对白刺激视频不卡| 强制捆绑调教一区二区| 午夜欧美在线一二页| 亚洲激情校园春色| 亚洲欧美一区二区久久| 国产欧美一区视频| 久久久久久97三级| 久久婷婷综合激情| 久久综合九色综合欧美98| 欧美一级片在线观看| 欧美日本乱大交xxxxx| 欧美亚洲愉拍一区二区| 在线看不卡av| 91成人在线观看喷潮| 在线观看国产精品网站| 99re6这里只有精品视频在线观看| 国产成人精品免费网站| 成人一区在线观看| 成人丝袜18视频在线观看| 盗摄精品av一区二区三区| 国产成人免费在线视频| 国产精品一区二区在线看| 国产精品一区二区不卡| 国产在线精品一区二区三区不卡| 久久福利资源站| 国产精品一二一区| 懂色av一区二区三区免费观看| 成人网页在线观看| 91美女精品福利| 欧美色视频在线| 日韩欧美国产电影| 国产日韩一级二级三级| 国产精品白丝在线| 洋洋成人永久网站入口| 日日夜夜精品视频免费| 久久成人羞羞网站| 国产成人精品影视| 一本大道久久a久久精品综合| 欧美无砖专区一中文字| 91麻豆精品国产自产在线| 久久蜜桃av一区精品变态类天堂 | 欧美亚一区二区| 91精品国模一区二区三区| 久久综合色天天久久综合图片| 久久久不卡网国产精品二区| 亚洲欧美在线高清| 午夜视频一区在线观看| 久久99久久精品| 岛国av在线一区| 欧美日韩的一区二区| 久久九九久精品国产免费直播| 亚洲日韩欧美一区二区在线| 蜜臀va亚洲va欧美va天堂| 成人黄页在线观看| 91精品国产福利| 亚洲欧洲www| 免费成人在线观看| 色综合一个色综合| 精品乱人伦一区二区三区| 亚洲人成亚洲人成在线观看图片| 亚洲妇女屁股眼交7| 成人午夜视频网站| 欧美一区二区三区人| 亚洲天堂中文字幕| 久久精品国产精品亚洲精品| 一本色道亚洲精品aⅴ| 精品久久久久久久久久久久久久久久久| 中文字幕中文字幕一区二区| 免费在线观看精品| 91小视频免费看| 2020日本不卡一区二区视频| 亚洲一区二区三区激情| 国产99精品国产| 91精品国产综合久久久久久久| 亚洲视频免费在线观看| 国内成人自拍视频| 91精品国产综合久久福利软件| 中文字幕在线一区| 激情综合网最新| 欧美色老头old∨ideo| 中文字幕在线免费不卡| 国产一区二区免费视频| 日韩一区二区三区免费观看| 亚洲电影欧美电影有声小说| 成人av免费网站| 国产亚洲va综合人人澡精品| 美日韩一区二区三区| 欧美精品九九99久久| 亚洲精选免费视频| jlzzjlzz欧美大全| 久久九九久久九九| 国产精品综合在线视频| 91麻豆精品国产91久久久久| 一区二区免费在线播放| 色噜噜夜夜夜综合网| 亚洲免费视频中文字幕| 成人毛片视频在线观看| 日本一区二区成人| 国产成人精品免费看| 国产日本欧美一区二区| 国产高清不卡一区二区| 精品播放一区二区| 精品系列免费在线观看| 亚洲精品在线三区| 精品在线播放免费| 久久女同性恋中文字幕| 国产一区不卡在线|