< prev index next >

src/java.desktop/share/classes/com/sun/imageio/plugins/common/LZWStringTable.java

Print this page

        

*** 29,41 **** /** * General purpose LZW String Table. * Extracted from GIFEncoder by Adam Doppelt * Comments added by Robin Luiten ! * <code>expandCode</code> added by Robin Luiten * The strLen table to give quick access to the lenght of an expanded ! * code for use by the <code>expandCode</code> method added by Robin. **/ public class LZWStringTable { /** codesize + Reserved Codes */ private static final int RES_CODES = 2; --- 29,41 ---- /** * General purpose LZW String Table. * Extracted from GIFEncoder by Adam Doppelt * Comments added by Robin Luiten ! * {@code expandCode} added by Robin Luiten * The strLen table to give quick access to the lenght of an expanded ! * code for use by the {@code expandCode} method added by Robin. **/ public class LZWStringTable { /** codesize + Reserved Codes */ private static final int RES_CODES = 2;
< prev index next >