| Home >> All >> com >> sixlegs >> image >> [ png Javadoc ] |
Source code: com/sixlegs/image/png/Chunk_IEND.java
1 // Copyright (C) 1998, 1999, 2001 Chris Nokleberg 2 // Please see included LICENSE.TXT 3 4 package com.sixlegs.image.png; 5 6 final class Chunk_IEND 7 extends Chunk 8 { 9 Chunk_IEND() 10 { 11 super(IEND); 12 } 13 14 protected boolean multipleOK() 15 { 16 return false; 17 } 18 }