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
-
Method Summary
Modifier and TypeMethodDescriptionclone()
MakesObject.clone()
public.int
fillMode
(ILcdDGNShape aShape)
-
Constructor Details
-
TLcdDGNGXYFillMode
public TLcdDGNGXYFillMode()
-
-
Method Details
-
fillMode
- Specified by:
fillMode
in interfaceILcdDGNGXYFillMode
- Returns:
- the fill mode of this
ILcdDGNShape
:OUTLINED
,FILLED
, orOUTLINED_FILLED
.
-
clone
Description copied from interface:ILcdCloneable
Makes
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:
clone
in interfaceILcdCloneable
- Overrides:
clone
in classObject
- See Also:
-