1 2 17 18 package org.apache.poi.ddf; 19 20 25 public class EscherShapePathProperty 26 extends EscherSimpleProperty 27 { 28 29 public static final int LINE_OF_STRAIGHT_SEGMENTS = 0; 30 public static final int CLOSED_POLYGON = 1; 31 public static final int CURVES = 2; 32 public static final int CLOSED_CURVES = 3; 33 public static final int COMPLEX = 4; 34 35 public EscherShapePathProperty( short propertyNumber, int shapePath ) 36 { 37 super( propertyNumber, false, false, shapePath ); 38 } 39 40 41 42 } 43 | Popular Tags |