001    /*
002     * Gray16Image
003     *
004     * Copyright (c) 2003 Marco Schmidt.
005     * All rights reserved.
006     */
007    
008    package net.sourceforge.jiu.data;
009    
010    import net.sourceforge.jiu.data.ShortChannelImage;
011    import net.sourceforge.jiu.data.GrayIntegerImage;
012    
013    /**
014     * Interface for grayscale images using integer samples that are sixteen bits large.
015     * Valid sample values must lie in the interval 0 to 65535 (including both of those values).
016     * Like all grayscale images, implementations of this class are supposed to have one channel only.
017     * Simply merges the two interfaces GrayIntegerImage and ShortChannelImage without adding methods of its own.
018     * @author Marco Schmidt
019     * @since 0.11.0
020     * @see ShortChannelImage
021     * @see GrayIntegerImage
022     */
023    public interface Gray16Image extends GrayIntegerImage, ShortChannelImage
024    {
025    }