Revision 4180 org.gvsig.raster.wcs/trunk/org.gvsig.raster.wcs/org.gvsig.raster.wcs.io/src/main/java/org/gvsig/raster/wcs/io/WCSDataParameters.java

View differences:

WCSDataParameters.java
24 24

  
25 25
import java.awt.geom.Point2D;
26 26
import java.awt.geom.Rectangle2D;
27
import java.net.URI;
27 28
import java.util.Hashtable;
28 29
import java.util.Map;
29 30

  
......
40 41
	 * @return
41 42
	 */
42 43
	public Object getTime();
43
	
44

  
44 45
	/**
45 46
	 * Sets the time information for the request
46 47
	 * @param time
......
52 53
	 * @return Formato.
53 54
	 */
54 55
	public Object getFormat();
55
	
56

  
56 57
	/**
57 58
	 * Sets the format
58 59
	 * @param format Formato.
......
64 65
	public Object getURI();
65 66

  
66 67
	public String getCoverageName();
67
	
68

  
68 69
	public Point2D getMaxResolution();
69
	
70

  
70 71
	public String getParameter();
71
	
72

  
72 73
	/**
73 74
	 * Gets the bounding box
74 75
	 * @return
75 76
	 */
76 77
	public Rectangle2D getExtent();
77
	
78

  
78 79
	public int getWidth();
79
	
80

  
80 81
	public int getHeight();
81
	
82

  
82 83
	public boolean isOverridingHost();
83
	
84

  
84 85
	/**
85 86
	 * Gets the online resource map
86 87
	 * @param onlineResources
87 88
	 */
88 89
	public Map<String,String> getOnlineResource();
89
	
90

  
90 91
	public String getDepth();
91 92

  
92 93
	public void setCancellable(ICancellable cancel);
93
	
94

  
94 95
	public void setOverrideHost(boolean over);
95 96

  
96 97
	/**
97
	 * Assigns the extent. 
98
	 * Assigns the extent.
98 99
	 * When a provider is initialized this will need to know what is the extent before the request.
99
	 * 
100
	 *
100 101
	 * @param bBox
101 102
	 */
102 103
	public void setExtent(Rectangle2D bBox);
103 104

  
104
	public void setURI(String string);
105
	public void setURI(URI uri);
105 106

  
106 107
	public void setSRS(String srs);
107 108

  
......
118 119
	 * @param onlineResources
119 120
	 */
120 121
	public void setOnlineResources(Hashtable<String, String> onlineResources);
121
	
122

  
122 123
	public void setDepth(String depth);
123 124

  
124 125
}

Also available in: Unified diff