table.java

来自「exemple for Document Object Model DOM」· Java 代码 · 共 38 行

JAVA
38
字号
package mod鑜es;

import java.util.Vector;

public class Table {
	private String nomTable;
	private int nbreDeChamps;
	@SuppressWarnings("unchecked")
	private Vector ChampsTable;
	
	public Table(){
		
	}
	
	public void setnomTable(String value){
		this.nomTable = value;
	}
	@SuppressWarnings("unchecked")
	public void setChampsTable(Vector value){
		this.ChampsTable = value;
	}
	public void setnbreDeChamps(int value){
		this.nbreDeChamps = value;
	}
	
	public String getnomTable(){
		return this.nomTable;
	}
	@SuppressWarnings("unchecked")
	public Vector getChampsTable(){
		return this.ChampsTable;
	}
	public int getnbreDeChamps(){
		return this.nbreDeChamps;
	}
	
}

⌨️ 快捷键说明

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