tcuinterfacexmllists.java

来自「为公司做的质量考核接口源码,用spring,hibernate,XML实现,对X」· Java 代码 · 共 56 行

JAVA
56
字号
/**
 * 
 */
package com.jr81.source.xml.source;

import java.io.IOException;

/**
 * @author Administrator
 *
 */
public interface TcuInterfaceXmlLists {
	
	public void Clear();
	
	public int GetCount();
	
	public int GetLength();
	
	public void AddList(TcuXmlList value);
	
	public void AddList(byte[] name, byte[] value);
	
	public void AddList(byte[] name,boolean value);
	
	public void AddList(byte[] name,int value);
	
	public void AddList(byte[] name,float value);
	
	public void AddList(byte[] name, byte[] value, int type);
	
	public void DeleteList(int index);
	
	public void DeleteList(String name);
	
	public TcuXmlList GetList(int index);
	
	public TcuXmlList GetList(String name);
	
	public byte[] GetListByteValue (String name);
	
	public boolean GetListBooleanValue (String name);
	
	public float GetListFloatValue(String name);
	
	public int GetListIntValue(String name);
	
	public String GetListStrValue(String name);
	
	public void Assign(TcuLists value);
	
	public boolean FromByteXml(byte[] value);
	
	public byte[] ToByteXml() throws IOException;
}

⌨️ 快捷键说明

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