?? myelement.java
字號:
package test;
import org.xml.sax.Attributes;
import java.io.*;
public class MyElement implements Serializable
{
String uri;
String localName;
String qName;
String value=null;
Attributes attributes;
public MyElement(String uri, String localName,
String qName, Attributes attributes)
{
this.uri = uri;
this.localName = localName;
this.qName = qName;
this.attributes = attributes;
}
public String getUri()
{
return uri;
}
public String getLocalName()
{
return localName;
}
public String getQname()
{
return qName;
}
public Attributes getAttributes()
{
return attributes;
}
public String getValue()
{
return value;
}
public void setValue(String value)
{
this.value = value;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -