Revision 4427 trunk/libraries/libRemoteServices/src/org/gvsig/remoteClient/wcs/WCSStatus.java

View differences:

WCSStatus.java
41 41
/*
42 42
 * $Id$ 
43 43
 * $Log$
44
 * Revision 1.1  2006-03-06 15:18:32  jaume
44
 * Revision 1.2  2006-03-15 08:54:42  jaume
45 45
 * *** empty log message ***
46
 *
47
 * Revision 1.1.2.1  2006/03/08 09:08:31  jaume
48
 * *** empty log message ***
49
 *
50
 * Revision 1.1  2006/03/06 15:18:32  jaume
51
 * *** empty log message ***
46 52
 * 
47 53
 */
48 54
package org.gvsig.remoteClient.wcs;
49 55

  
56
import java.awt.geom.Rectangle2D;
57

  
50 58
import org.gvsig.remoteClient.RemoteClientStatus;
51 59

  
52 60
public class WCSStatus extends RemoteClientStatus {
......
54 62
	private String time;
55 63
	private String parameter;
56 64
	private String resolution;
65
	private Rectangle2D bBox;
66
	private String coverageName;
67
	private String onlineResource;
57 68
	
69
	public void setExtent(Rectangle2D bBox) {
70
		this.bBox = bBox;
71
	}
72

  
73
	
74
	public void setCoveraName(String coverageName) {
75
		this.coverageName = coverageName;
76
	}
77

  
78

  
79
	public void setParameters(String parameters) {
80
		this.parameter = parameters;
81
	}
82

  
83

  
84
	public void setOnlineResource(String onlineResources) {
85
		this.onlineResource = onlineResources;
86
	}
87

  
88

  
89
	public String getOnlineResource() {
90
		return onlineResource;
91
	}
92
	
58 93
}

Also available in: Unified diff