1 2 17 18 package org.apache.poi.ddf; 19 20 25 public class EscherPropertyMetaData 26 { 27 public final static byte TYPE_UNKNOWN = (byte) 0; 29 public final static byte TYPE_BOOLEAN = (byte) 1; 30 public final static byte TYPE_RGB = (byte) 2; 31 public final static byte TYPE_SHAPEPATH = (byte) 3; 32 public final static byte TYPE_SIMPLE = (byte)4; 33 public final static byte TYPE_ARRAY = (byte)5;; 34 35 private String description; 36 private byte type; 37 38 39 42 public EscherPropertyMetaData( String description ) 43 { 44 this.description = description; 45 } 46 47 52 public EscherPropertyMetaData( String description, byte type ) 53 { 54 this.description = description; 55 this.type = type; 56 } 57 58 public String getDescription() 59 { 60 return description; 61 } 62 63 public byte getType() 64 { 65 return type; 66 } 67 68 } 69 | Popular Tags |