Revision 5547

View differences:

org.gvsig.raster/trunk/org.gvsig.raster/org.gvsig.raster.lib/org.gvsig.raster.lib.impl/src/main/java/org/gvsig/raster/impl/store/AbstractRasterDataStore.java
183 183
	 * <LI>Create the buffers (RO or RW) and set them in the <code>RasterQuery</code> object</LI>
184 184
	 * <LI>Calculate steps when supersampling is applied</LI>
185 185
	 * </UL>
186
     * @throws org.gvsig.fmap.dal.coverage.exception.ProcessInterruptedException
187
     * @throws org.gvsig.fmap.dal.coverage.exception.QueryException
186 188
	 */
187 189
	public Object[] queryArray(RasterQuery query)
188 190
			throws ProcessInterruptedException, QueryException {
......
280 282
	 * Loads information about serials
281 283
	 * @param serialInfo
282 284
	 * @return true if work correctly
283
	 * @throws RmfSerializerException
284 285
	 */
285 286
	public abstract boolean loadSerialInfoFromRmf(TimeSeries serialInfo);
286 287

  
......
550 551
	public boolean hasDynValue(String name) {
551 552
		return this.dynobj.hasDynValue(name);
552 553
	}
553

  
554
	public Object invokeDynMethod(String name, DynObject context) throws DynMethodException {
555
		return this.dynobj.invokeDynMethod(this, name, context);
554
        
555
        @Override
556
	public Object invokeDynMethod(String name, Object[] args) throws DynMethodException {
557
		return this.dynobj.invokeDynMethod(this, name, args);
556 558
	}
557 559

  
558
	public Object invokeDynMethod(int code, DynObject context) throws DynMethodException {
559
		return this.dynobj.invokeDynMethod(this, code, context);
560
        @Override
561
	public Object invokeDynMethod(int code, Object[] args) throws DynMethodException {
562
		return this.dynobj.invokeDynMethod(this, code, args);
560 563
	}
561 564

  
562 565
	public void clear() {
org.gvsig.raster/trunk/org.gvsig.raster/org.gvsig.raster.lib/pom.xml
10 10
		<artifactId>org.gvsig.raster</artifactId>
11 11
		<version>2.2.44-SNAPSHOT</version>
12 12
	</parent>
13
    <dependencies>
14
		<dependency>
15
			<groupId>org.gvsig</groupId>
16
			<artifactId>org.gvsig.timesupport.lib.api</artifactId>
17
            <scope>compile</scope>
18
		</dependency>
19
	</dependencies>
20 13
	<modules>
21 14
		<module>org.gvsig.raster.lib.api</module>
22 15
		<module>org.gvsig.raster.lib.impl</module>
org.gvsig.raster/trunk/org.gvsig.raster/pom.xml
11 11
    <parent>
12 12
        <groupId>org.gvsig</groupId>
13 13
        <artifactId>org.gvsig.desktop</artifactId>
14
        <version>2.0.132</version>
14
        <version>2.0.134</version>
15 15
    </parent>
16 16

  
17 17
    <properties>
18 18
        <potrace.version>2.0.0</potrace.version>
19
        <org.gvsig.raster.cache.version>2.2.7</org.gvsig.raster.cache.version>
19
        <org.gvsig.raster.cache.version>2.2.8</org.gvsig.raster.cache.version>
20 20
    </properties>
21 21

  
22 22
    <scm>
......
116 116
        </dependencies>
117 117
    </dependencyManagement>
118 118

  
119

  
120
    <dependencies>
121
        <dependency>
122
            <groupId>org.gvsig</groupId>
123
            <artifactId>org.gvsig.tools.lib</artifactId>
124
            <scope>compile</scope>
125
        </dependency>
126
    </dependencies>
127

  
128 119
    <build>
129 120
        <plugins>
130 121
            <plugin>

Also available in: Unified diff