Package com.luciad.format.dgn.gxy
Class TLcdDGNGXYFillMode
java.lang.Object
com.luciad.format.dgn.gxy.TLcdDGNGXYFillMode
- All Implemented Interfaces:
ILcdDGNGXYFillMode,ILcdCloneable,Cloneable
This interface specifies how a given ILcdDGNShape is painted.
-
Field Summary
Fields inherited from interface com.luciad.format.dgn.gxy.ILcdDGNGXYFillMode
FILLED, OUTLINED, OUTLINED_FILLED -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionclone()MakesObject.clone()public.intfillMode(ILcdDGNShape aShape)
-
Constructor Details
-
TLcdDGNGXYFillMode
public TLcdDGNGXYFillMode()
-
-
Method Details
-
fillMode
- Specified by:
fillModein interfaceILcdDGNGXYFillMode- Returns:
- the fill mode of this
ILcdDGNShape:OUTLINED,FILLED, orOUTLINED_FILLED.
-
clone
Description copied from interface:ILcdCloneableMakes
When for example extending fromObject.clone()public.java.lang.Object, it can be implemented like this:public Object clone() { try { return super.clone(); } catch ( CloneNotSupportedException e ) { // Cannot happen: extends from Object and implements Cloneable (see also Object.clone) throw new RuntimeException( e ); } }- Specified by:
clonein interfaceILcdCloneable- Overrides:
clonein classObject- See Also:
-