Revision 5483

View differences:

org.gvsig.raster/branches/org.gvsig.raster.2.4/org.gvsig.raster/org.gvsig.raster.lib/org.gvsig.raster.lib.buffer/org.gvsig.raster.lib.buffer.api/src/main/java/org/gvsig/raster/lib/buffer/api/NoData.java
75 75
     */
76 76
    public int getDataType();
77 77

  
78
    @Override
79
    public boolean equals(Object obj);
80

  
81

  
82 78
    /**
83 79
     * Copy from noData parameter
84 80
     *
org.gvsig.raster/branches/org.gvsig.raster.2.4/org.gvsig.raster/org.gvsig.raster.lib/org.gvsig.raster.lib.buffer/org.gvsig.raster.lib.buffer.api/src/main/java/org/gvsig/raster/lib/buffer/api/Band.java
48 48
    /**
49 49
     * Gets the dataType.
50 50
     *
51
     * The possible data types are defined in BufferManager
51
     * The possible data types are defined in {@link BufferManager}.
52 52
     *
53 53
     * The data type of the band can't be changed after being created.
54 54
     *
......
57 57
    public int getDataType();
58 58

  
59 59
    /**
60
     *Gets the NoData value
60
     * Gets the NoData value
61 61
     *
62 62
     * @return the noData of the band. Can't be null;
63 63
     */
......
84 84
    /**
85 85
     * Fills the band with a unique value.
86 86
     *
87
     * If the value is null, fills with NoData
87
     * If the value is null, fills with NoData value. If NoData is undefined, do
88
     * nothing.
88 89
     *
89 90
     * @param value
90 91
     */
......
94 95
     * Fills this band with a copy of the source data band.
95 96
     *
96 97
     * @param source
97
     * @throws CopyFromBandException
98
     * @throws BandException
98 99
     */
99 100
    public void copyFrom(Band source) throws BandException;
100 101

  
......
123 124
     */
124 125
    public void putRow(int row, Object rowBuffer);
125 126

  
126

  
127

  
128 127
    /**
129 128
     * A Band which elements are bytes.
130 129
     *
......
182 181
    }
183 182

  
184 183
    /**
185
     * A Band which elements are ints.
184
     * A Band which elements are integers.
186 185
     *
187 186
     * @author fdiaz
188 187
     *
......
238 237
    }
239 238

  
240 239
    /**
241
     * A Band which elements are double.
240
     * A Band which elements are doubles.
242 241
     *
243 242
     * @author fdiaz
244 243
     *

Also available in: Unified diff