1 16 17 package org.apache.poi.hssf.usermodel; 18 19 24 public class HSSFSimpleShape 25 extends HSSFShape 26 { 27 30 public final static short OBJECT_TYPE_LINE = 1; 31 public final static short OBJECT_TYPE_RECTANGLE = 2; 32 public final static short OBJECT_TYPE_OVAL = 3; 33 52 int shapeType = OBJECT_TYPE_LINE; 53 54 HSSFSimpleShape( HSSFShape parent, HSSFAnchor anchor ) 55 { 56 super( parent, anchor ); 57 } 58 59 67 public int getShapeType() { return shapeType; } 68 69 78 public void setShapeType( int shapeType ){ this.shapeType = shapeType; } 79 80 } 81 | Popular Tags |