source: ether_statistics/service/implementation/gov/noaa/pmel/sgt/TransformColor.java @ 569

Last change on this file since 569 was 569, checked in by vmipsl, 12 years ago

Nouveau projet

File size: 1.1 KB
Line 
1/*
2 * $Id: TransformColor.java,v 1.3 2001/02/01 17:22:32 dwd Exp $
3 *
4 * This software is provided by NOAA for full, free and open release.  It is
5 * understood by the recipient/user that NOAA assumes no liability for any
6 * errors contained in the code.  Although this software is released without
7 * conditions or restrictions in its use, it is expected that appropriate
8 * credit be given to its author and to the National Oceanic and Atmospheric
9 * Administration should the software be included by the recipient as an
10 * element in other product development.
11 */
12package gov.noaa.pmel.sgt;
13
14/**
15 * Interface provides support for accessing color transforms for a
16 * color map.
17 *
18 * @author Donald Denbo
19 * @version $Revision: 1.3 $, $Date: 2001/02/01 17:22:32 $
20 * @since 2.0
21 */
22public interface TransformColor {
23  Transform getRedTransform();
24
25  void setRedTransform(Transform redTransform);
26
27  Transform getGreenTransform();
28
29  void setGreenTransform(Transform greenTransform);
30
31  Transform getBlueTransform();
32
33  void setBlueTransform(Transform blueTransform);
34
35  void setColorTransforms(Transform red, Transform green, Transform blue);
36}
Note: See TracBrowser for help on using the repository browser.