FileDocCategorySizeDatePackage
PropertyParser.javaAPI DocJava SE 5 API5844Fri Aug 26 14:54:46 BST 2005com.sun.java.swing.plaf.gtk

PropertyParser

public abstract class PropertyParser extends Object
author
Shannon Hickey
version
1.11 08/10/04

Fields Summary
private static final PropertyParser
INSETS_PARSER
private static final PropertyParser
BOOLEAN_PARSER
private static final PropertyParser
SHADOW_PARSER
private static final PropertyParser
FOCUS_LINE_PARSER
private static final PropertyParser
COLOR_PARSER
private static final HashMap
PARSERS
Constructors Summary
Methods Summary
public static com.sun.java.swing.plaf.gtk.PropertyParsergetParserFor(java.lang.String type)

    
     
        PARSERS.put("default-border", INSETS_PARSER);
        PARSERS.put("interior-focus", BOOLEAN_PARSER);
        PARSERS.put("shadow-type", SHADOW_PARSER);
        PARSERS.put("focus-line-pattern", FOCUS_LINE_PARSER);
        PARSERS.put("cursor-color", COLOR_PARSER);
    
        return (PropertyParser)PARSERS.get(type);
    
public booleanneedSimpleStringsEscaped()

        return false;
    
public abstract java.lang.Objectparse(java.lang.String source)