com.onespatial.dwglib.objects.DimstyleControlObj Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dwg-lib Show documentation
Show all versions of dwg-lib Show documentation
dwg-lib is a Java library for reading AutoCad files version 2010 and later
The newest version!
package com.onespatial.dwglib.objects;
public class DimstyleControlObj extends NonEntityObject {
public DimstyleControlObj(ObjectMap objectMap) {
super(objectMap);
}
public String toString() {
return "DIMSTYLE CONTROL OBJ";
}
}