mirror of
https://github.com/apache/poi.git
synced 2026-02-27 20:40:08 +08:00
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/branches/REL_2_BRANCH@353499 13f79535-47bb-0310-9956-ffa450edef68
26 lines
616 B
Java
26 lines
616 B
Java
package org.apache.poi.ddf;
|
|
|
|
/**
|
|
* Defines the constants for the various possible shape paths.
|
|
*
|
|
* @author Glen Stampoultzis (glens at apache.org)
|
|
*/
|
|
public class EscherShapePathProperty
|
|
extends EscherSimpleProperty
|
|
{
|
|
|
|
public static final int LINE_OF_STRAIGHT_SEGMENTS = 0;
|
|
public static final int CLOSED_POLYGON = 1;
|
|
public static final int CURVES = 2;
|
|
public static final int CLOSED_CURVES = 3;
|
|
public static final int COMPLEX = 4;
|
|
|
|
public EscherShapePathProperty( short propertyNumber, int shapePath )
|
|
{
|
|
super( propertyNumber, false, false, shapePath );
|
|
}
|
|
|
|
|
|
|
|
}
|