001 /* 002 * RGBIntegerImage 003 * 004 * Copyright (c) 2002 Marco Schmidt. 005 * All rights reserved. 006 */ 007 008 package net.sourceforge.jiu.data; 009 010 import net.sourceforge.jiu.data.IntegerImage; 011 import net.sourceforge.jiu.data.RGBImage; 012 013 /** 014 * An interface for RGB truecolor images that have integer samples. 015 * A combination of {@link net.sourceforge.jiu.data.IntegerImage} and 016 * {@link net.sourceforge.jiu.data.RGBImage}. 017 * 018 * @author Marco Schmidt 019 * @since 0.9.0 020 */ 021 public interface RGBIntegerImage extends IntegerImage, RGBImage 022 { 023 }