Revision 6333 org.gvsig.raster/branches/org.gvsig.raster.2.4/org.gvsig.raster/org.gvsig.fmap.dal.raster/org.gvsig.fmap.dal.raster.api/src/main/java/org/gvsig/fmap/dal/raster/api/BandAttributeDescriptor.java

View differences:

BandAttributeDescriptor.java
31 31
/**
32 32
 * This class describes an attribute of band. This attribute is defined by a
33 33
 * name, description and a list with the available values.
34
 * 
34
 *
35 35
 * @author <a href="mailto:lmarques@disid.com">Lluis Marques</a>
36 36
 *
37 37
 */
......
39 39

  
40 40
    /**
41 41
     * Gets band of this attribute descriptor
42
     * 
42
     *
43 43
     * @return band Attribute descriptor band
44 44
     */
45 45
    public int getBand();
46 46

  
47 47
    /**
48 48
     * Name of attribute
49
     * 
49
     *
50 50
     * @return Attribute name
51 51
     */
52 52
    public String getName();
53 53

  
54 54
    /**
55 55
     * Description of attribute
56
     * 
56
     *
57 57
     * @return Attribute description
58 58
     */
59 59
    public String getDescription();
60 60

  
61 61
    /**
62 62
     * Available values of this attribute band
63
     * 
63
     *
64 64
     * @return values A list with attribute band values
65 65
     */
66 66
    public List<Object> getValues();
67

  
68
    /**
69
     * String units of the levels
70
     */
71
    public String getUnits();
67 72
}

Also available in: Unified diff