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

com.onespatial.dwglib.objects.Style 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;

import com.onespatial.dwglib.FileVersion;
import com.onespatial.dwglib.bitstreams.BitBuffer;

public class Style extends NonEntityObject {

    public Style(ObjectMap objectMap) {
        super(objectMap);
    }

    @Override
	public void readObjectTypeSpecificData(BitBuffer dataStream, BitBuffer stringStream, BitBuffer handleStream, FileVersion fileVersion) {
        // 19.4.54 SHAPEFILE (53)
        
        
        
        String entryName = stringStream.getTU();
        String fontName = stringStream.getTU();
        String bigFontName = stringStream.getTU();
	}

	public String toString() {
		return "STYLE";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy