public class DxfConfigurableApplicationDefinedStructure extends java.lang.Object implements DxfApplicationDefinedStructure
DxfApplicationDefinedStructure.
Use it for unknown, uninteresting, or otherwise un-reified varieties. Stores
the application name as a property and simply stores a copy of the groups
provided.
Copyright 2006 Partner Software, Inc.
| Constructor and Description |
|---|
DxfConfigurableApplicationDefinedStructure() |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getApplicationName()
The application name of this structure.
|
java.util.List<DxfGroup> |
getGroups()
Get the internal state as DXFGroups.
|
void |
setGroups(java.util.List<DxfGroup> groups)
Set the internal state based on the given groups.
|
java.lang.String |
toString() |
public DxfConfigurableApplicationDefinedStructure()
public java.lang.String getApplicationName()
DxfApplicationDefinedStructure
\/**
* Application name of this structure. Always returns "ACAD_REACTORS".
* \@return "ACAD_REACTORS"
*\/
public String getApplicationName() {
return "ACAD_REACTORS";
}
Run-time discovered application structures may simply store the application name for reporting, however.
getApplicationName in interface DxfApplicationDefinedStructurepublic java.util.List<DxfGroup> getGroups()
DxfApplicationDefinedStructuregetGroups in interface DxfApplicationDefinedStructurepublic void setGroups(java.util.List<DxfGroup> groups)
DxfApplicationDefinedStructuresetGroups in interface DxfApplicationDefinedStructuregroups - list of groups containing data for this structurepublic java.lang.String toString()
toString in class java.lang.Object