Wmlpublic abstract class Wml extends Object This class contains the wml coding tables for elements
and attributes needed by the WmlParser. |
Fields Summary |
---|
public static final String[] | TAG_TABLE | public static final String[] | ATTR_START_TABLE | public static final String[] | ATTR_VALUE_TABLE |
Methods Summary |
---|
public static org.kxml2.wap.WbxmlParser | createParser()Creates a WbxmlParser with the WML code pages set
WbxmlParser p = new WbxmlParser();
p.setTagTable(0, TAG_TABLE);
p.setAttrStartTable(0, ATTR_START_TABLE);
p.setAttrValueTable(0, ATTR_VALUE_TABLE);
return p;
| public static org.kxml2.wap.WbxmlSerializer | createSerializer()
WbxmlSerializer s = new WbxmlSerializer();
s.setTagTable(0, TAG_TABLE);
s.setAttrStartTable(0, ATTR_START_TABLE);
s.setAttrValueTable(0, ATTR_VALUE_TABLE);
return s;
|
|