Revision 4493 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.2  2006-03-15 08:54:42  jaume
44
 * Revision 1.3  2006-03-21 11:30:26  jaume
45
 * some wcs client operation stuff
46
 *
47
 * Revision 1.2  2006/03/15 08:54:42  jaume
45 48
 * *** empty log message ***
46 49
 *
47 50
 * Revision 1.1.2.1  2006/03/08 09:08:31  jaume
......
54 57
package org.gvsig.remoteClient.wcs;
55 58

  
56 59
import java.awt.geom.Rectangle2D;
60
import java.util.Vector;
57 61

  
58 62
import org.gvsig.remoteClient.RemoteClientStatus;
59 63

  
60 64
public class WCSStatus extends RemoteClientStatus {
61
	private String layerName;
62
	private String time;
63
	private String parameter;
64
	private String resolution;
65
	private Rectangle2D bBox;
66
	private String coverageName;
67
	private String onlineResource;
65
	private String		layerName		= null;
66
	private String		time			= null;
67
	private String		parameter		= null;
68
	private String		resolution		= null;
69
	private Rectangle2D	bBox			= null;
70
	private String		coverageName	= null;
71
	private String		onlineResource	= null;
72
	private Integer		depth			= null;
73
	private String		times			= null;
74
	private String		parameters		= null;
68 75
	
69 76
	public void setExtent(Rectangle2D bBox) {
70 77
		this.bBox = bBox;
......
89 96
	public String getOnlineResource() {
90 97
		return onlineResource;
91 98
	}
99

  
100

  
101
	public String getCoverageName() {
102
		return this.coverageName;
103
	}
92 104
	
105
	public Rectangle2D getExtent() {
106
		return this.bBox;
107
	}
108

  
109

  
110
	public Integer getDepth() {
111
		return depth;
112
	}
113

  
114
	public String getTime() {
115
		return times;
116
	}
117
	
118
	public String getParameters() {
119
		return parameters;
120
	}
93 121
}

Also available in: Unified diff