Class TLcdDGNGXYFillMode

java.lang.Object
com.luciad.format.dgn.gxy.TLcdDGNGXYFillMode
All Implemented Interfaces:
ILcdDGNGXYFillMode, ILcdCloneable, Cloneable

public class TLcdDGNGXYFillMode extends Object implements ILcdDGNGXYFillMode, ILcdCloneable
This interface specifies how a given ILcdDGNShape is painted.
  • Constructor Details

    • TLcdDGNGXYFillMode

      public TLcdDGNGXYFillMode()
  • Method Details

    • fillMode

      public int fillMode(ILcdDGNShape aShape)
      Specified by:
      fillMode in interface ILcdDGNGXYFillMode
      Returns:
      the fill mode of this ILcdDGNShape: OUTLINED, FILLED, or OUTLINED_FILLED.
    • clone

      public Object clone()
      Description copied from interface: ILcdCloneable

      Makes Object.clone() public.

      When for example extending from 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 interface ILcdCloneable
      Overrides:
      clone in class Object
      See Also: