association.java

来自「这是一个从音频信号里提取特征参量的程序」· Java 代码 · 共 81 行

JAVA
81
字号
// file: Association.java//// import java libraries//import java.awt.*;import java.awt.event.*;public class Association {    // ---------------------------------------------------    //    // declare class member data    //    // ---------------------------------------------------        // process algorithm association string    //    private String association = null;    // ---------------------------------------------------    //    // declare class constructors    //    // ---------------------------------------------------    // method: Association    //    // arguments: none    // returns  : none    //    // default class constructor    //    public Association() {		// set the default association to none	//	association = new String();    }    // ---------------------------------------------------    //    // declare class methods    //    // ---------------------------------------------------    // method: getAssociation    //    // arguments: none    // return   : association of the algorithm vertex    //    // returns the association of the algorithm vertex    //    public String getAssociation() {	// return the algorithm vertex association	//	return association;    }    // method: setAssociation    //    // arguments:    //    String association: association of the algorithm vertex    //    // return   : none    //    // set the association of the algorithm vertex    //    public void setAssociation(String association) {	// set the algorithm vertex association	//	this.association = association;    }}//// end of file

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?