001 /* 002 * RGBImage 003 * 004 * Copyright (c) 2002, 2003 Marco Schmidt. 005 * All rights reserved. 006 */ 007 008 package net.sourceforge.jiu.data; 009 010 import net.sourceforge.jiu.data.RGBIndex; 011 012 /** 013 * An interface for RGB truecolor images. 014 * This is an empty interface, useful for labeling an image type 015 * as being an RGB image type. 016 * @author Marco Schmidt 017 * @since 0.9.0 018 */ 019 public interface RGBImage extends PixelImage, RGBIndex 020 { 021 }