com.partnersoft.formats.dxf
Class DxfSeqEnd

java.lang.Object
  extended by com.partnersoft.formats.dxf.DxfEntity
      extended by com.partnersoft.formats.dxf.DxfSeqEnd
All Implemented Interfaces:
DxfStructure

public class DxfSeqEnd
extends DxfEntity

A DXF SEQEND object.

SEQEND is used to indicate the end of a list of entities accompanying a parent entity. Specifically, it is used to indicate the end of VERTEX entities following a POLYLINE, or ATTRIB entities following an INSERT.

Copyright 2001-2006 Partner Software, Inc.

Version:
$Id: DxfSeqEnd.java 1012 2007-11-24 18:30:02Z paul $
Author:
Paul Reavis

Constructor Summary
DxfSeqEnd()
           
 
Method Summary
 java.lang.String getType()
          The type name of this structure.
 java.lang.String toString()
           
 
Methods inherited from class com.partnersoft.formats.dxf.DxfEntity
getApplicationDefinedStructures, getColor, getColorName, getGroups, getHandle, getLayer, getLinetype, getLinetypeScale, getLineWeight, getMaterial, getOwnerHandle, getPlotStyle, getProxyEntityGraphics, getRgbColor, getShadowMode, getTransparency, isInvisible, isPaperSpace, setApplicationDefinedStructures, setColor, setColorName, setGroups, setHandle, setInvisible, setLayer, setLinetype, setLinetypeScale, setLineWeight, setMaterial, setOwnerHandle, setPaperSpace, setPlotStyle, setProxyEntityGraphics, setRgbColor, setShadowMode, setTransparency
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DxfSeqEnd

public DxfSeqEnd()
Method Detail

getType

public java.lang.String getType()
Description copied from interface: DxfStructure
The type name of this structure. Generally this will be the same for all instances of the same implementing Java class, so a typical example might be:
 \/**
  * Type name of this structure. Always returns "POINT".
  * \@return "POINT"
  *\/
 public String getType() {
     return "POINT";
 }
 

Specified by:
getType in interface DxfStructure
Specified by:
getType in class DxfEntity
Returns:
type name of structure as defined in AutoCAD DXF specification

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object