All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.onespatial.dwglib.objects.GenericObject Maven / Gradle / Ivy

Go to download

dwg-lib is a Java library for reading AutoCad files version 2010 and later

The newest version!
package com.onespatial.dwglib.objects;

public class GenericObject extends NonEntityObject {

	public String objectType;

	public GenericObject(ObjectMap objectMap, int objectType) {
        super(objectMap);
		this.objectType = Integer.toString(objectType);
	}

	public GenericObject(ObjectMap objectMap, String classdxfname) {
        super(objectMap);
		this.objectType = classdxfname;
	}

	public String toString() {
		return "unknown object of type " + objectType;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy