Package bibliothek.util

Examples of bibliothek.util.Version


        out.writeUTF( element.getRoot() );
        transformer.write( element.getLocation(), out );
    }

    public Location readProperty( DataInputStream in ) throws IOException {
        Version version = Version.read( in );
        version.checkCurrent();
        boolean version8 = Version.VERSION_1_0_8.compareTo( version ) <= 0;
        Path mode = null;
        if( version8 ){
          mode = new Path( in.readUTF() );
        }
View Full Code Here


            }
        }
  }

    public <B> void read( DataInputStream in, ModeSettingsConverter<Location, B> converter ) throws IOException {
        Version version = Version.read( in );
        version.checkCurrent();

        lastMaximizedLocation = new HashMap<String, Location>();
        lastMaximizedMode = new HashMap<String, Path>();

        int count = in.readInt();
View Full Code Here

TOP

Related Classes of bibliothek.util.Version

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.