|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcom.partnersoft.v3x.io.formats.dxf.DXFEntity
com.partnersoft.v3x.io.formats.dxf.DXFXRecord
public class DXFXRecord
A DXF XRECORD entity.
| Field Summary | |
|---|---|
java.util.Map |
fieldValues
|
| Fields inherited from class com.partnersoft.v3x.io.formats.dxf.DXFEntity |
|---|
appGroupName, handle, insideAppGroup |
| Constructor Summary | |
|---|---|
DXFXRecord()
|
|
| Method Summary | |
|---|---|
void |
copyStateFrom(DXFEntity nother)
Copies the attributes from the given DXFEntity. |
void |
processGroup(int code,
DXFProtoValue value)
Acts on groups; interprets them and populates properties. |
void |
resetToDefaults()
Resets all values to defaults; useful when reusing objects. |
| Methods inherited from class com.partnersoft.v3x.io.formats.dxf.DXFEntity |
|---|
begin, clone, end |
| Methods inherited from class java.lang.Object |
|---|
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public java.util.Map fieldValues
| Constructor Detail |
|---|
public DXFXRecord()
| Method Detail |
|---|
public void resetToDefaults()
DXFEntitysuper.resetToDefaults();
resetToDefaults in class DXFEntitypublic void copyStateFrom(DXFEntity nother)
DXFEntity
public void copyState(DXFEntity nother) {
super.copyStateFrom(nother);
someState = nother.someState;
....
copyStateFrom in class DXFEntity
public void processGroup(int code,
DXFProtoValue value)
// let superclass do its thing, skip any codes inside app-specific
// bracketed section
super.processGroup(code, value);
if (insideAppGroup)
return;
processGroup in interface DXFGroupActorprocessGroup in class DXFEntity
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||