📄 tcuinterfacexmllists.java
字号:
/**
*
*/
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -