/******************************************************************************* * Note: The implementation of this class is missing, since the code is still * in approval state. The implementation will be added as soon as * possible. ******************************************************************************/ package com.w4t.util.image; import java.awt.Color; import java.awt.image.BufferedImage; import java.io.FileOutputStream; public class GifEncoder { public GifEncoder( final BufferedImage bufferedImage, final FileOutputStream fos ) { throw new UnsupportedOperationException(); } public GifEncoder( final BufferedImage bufferedImage, final FileOutputStream fos, final boolean b, final Color transparentColor ) { throw new UnsupportedOperationException(); } public void encode() { throw new UnsupportedOperationException(); } }