Class TLcdDWGModelListDecoder

java.lang.Object
com.luciad.format.dwg.TLcdDWGModelListDecoder
All Implemented Interfaces:
ILcdDWGModelDecoder, ILcdModelDecoder

public class TLcdDWGModelListDecoder extends Object implements ILcdDWGModelDecoder
This ILcdModelDecoder decodes data in AutoCAD's drawing format. Internally, the decoding is delegated to a given ILcdDWGModelDecoder. Once decoded, the internal model is split into several sub-models, each corresponding to a single DWG layer. The sub-models are returned as a TLcd2DBoundsIndexedModelList.

The descriptor of the model list is the TLcdDWGModelDescriptor decoded by the internal DWGModelDecoder. The descriptors of the submodels are also TLcdDWGModelDescriptor objects, except that they each contain a single TLcdDWGLayer and the display name is replaced by the name of that layer.

  • Constructor Details

    • TLcdDWGModelListDecoder

      public TLcdDWGModelListDecoder()
      Creates a new TLcdDWGModelListDecoder that delegates the actual decoding to an instance of TLcdDWGModelDecoder.
    • TLcdDWGModelListDecoder

      public TLcdDWGModelListDecoder(ILcdDWGModelDecoder aDWGModelDecoder)
      Creates a new TLcdDWGModelListDecoder that delegates the actual decoding to a given instance of ILcdDWGModelDecoder.
      Parameters:
      aDWGModelDecoder - the model decoder that will decode the DWG files.
  • Method Details