FileDocCategorySizeDatePackage
Wml.javaAPI DocAndroid 1.5 API4712Wed May 06 22:41:06 BST 2009org.kxml2.wap.wml

Wml

public 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
Constructors Summary
Methods Summary
public static org.kxml2.wap.WbxmlParsercreateParser()
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.WbxmlSerializercreateSerializer()

        WbxmlSerializer s = new WbxmlSerializer();
        s.setTagTable(0, TAG_TABLE);
        s.setAttrStartTable(0, ATTR_START_TABLE);
        s.setAttrValueTable(0, ATTR_VALUE_TABLE);
        return s;