FileDocCategorySizeDatePackage
EscherPropertyMetaData.javaAPI DocApache Poi 3.0.12169Mon Jan 01 12:39:40 GMT 2007org.apache.poi.ddf

EscherPropertyMetaData

public class EscherPropertyMetaData extends Object
This class stores the type and description of an escher property.
author
Glen Stampoultzis (glens at apache.org)

Fields Summary
public static final byte
TYPE_UNKNOWN
public static final byte
TYPE_BOOLEAN
public static final byte
TYPE_RGB
public static final byte
TYPE_SHAPEPATH
public static final byte
TYPE_SIMPLE
public static final byte
TYPE_ARRAY
private String
description
private byte
type
Constructors Summary
public EscherPropertyMetaData(String description)

param
description The description of the escher property.



                 
        
    
        this.description = description;
    
public EscherPropertyMetaData(String description, byte type)

param
description The description of the escher property.
param
type The type of the property.

        this.description = description;
        this.type = type;
    
Methods Summary
public java.lang.StringgetDescription()

        return description;
    
public bytegetType()

        return type;