/* * [LEDataStream.java] * * Summary: Little-endian versions of DataInputStream and DataOutputSTreoam. * * Copyright: (c) 1998-2017 Roedy Green, Canadian Mind Products, http://mindprod.com * * Licence: This software may be copied and used freely for any purpose but military. * http://mindprod.com/contact/nonmil.html * * Requires: JDK 1.8+ * * Created with: JetBrains IntelliJ IDEA IDE http://www.jetbrains.com/idea/ * * Version History: * 1.0 1998-01-06 * 1.1 1998-01-07 officially implements DataInput * 1.2 1998-01-09 add LERandomAccessFile * 1.3 1998-08-27 * 1.4 1998-11-10 add new address and phone. * 1.5 1999-10-08 use com.mindprod.ledatastream package name. * 1.6 2005-06-13 made readLine deprecated * 1.7 2007-01-01 * 1.8 2007-05-24 add pad, icon, pass Intellij inspector. */ package com.mindprod.ledatastream; /** * Little-endian versions of DataInputStream and DataOutputSTreoam. *

* dummy not used * * @author Roedy Green, Canadian Mind Products * @version 1.8 2007-05-24 * @since 1998-01-06 */ public final class LEDataStream { private static final int FIRST_COPYRIGHT_YEAR = 1998; /** * undisplayed copyright notice * * @noinspection UnusedDeclaration */ private static final String EMBEDDED_COPYRIGHT = "Copyright: (c) 1998-2017 Roedy Green, Canadian Mind Products, http://mindprod.com"; /** * @noinspection UnusedDeclaration */ private static final String RELEASE_DATE = "2007-05-24"; /** * embedded version string. * * @noinspection UnusedDeclaration */ private static final String VERSION_STRING = "1.8"; /** * Dummy not used. * * @param args not used * * @noinspection EmptyMethod */ public static void main( String[] args ) { } }