Revision 4272 org.gvsig.raster.wmts/trunk/org.gvsig.raster.wmts/org.gvsig.raster.wmts.swing/org.gvsig.raster.wmts.swing.api/src/main/java/org/gvsig/raster/wmts/swing/WmtsGUI.java

View differences:

WmtsGUI.java
11 11

  
12 12
public abstract class WmtsGUI extends JPanel {
13 13
	private static final long serialVersionUID = 1L;
14
	
14

  
15 15
	/**
16
	 * Gets the list of <code>RasterDataParameters</code> once the 
16
	 * Gets the list of <code>RasterDataParameters</code> once the
17 17
	 * dialog has been loaded
18 18
	 * @return
19 19
	 * @throws LoadLayerException
20 20
	 */
21
	public abstract RasterDataParameters[] getDataParameters() throws LoadLayerException;
21
	public abstract RasterDataParameters[] getDataParameters(); // throws LoadLayerException;
22 22

  
23 23
	/**
24 24
	 * Returns the index of the current tab.
25 25
	 * @return
26 26
	 */
27 27
	public abstract int currentPage();
28
	
28

  
29 29
	/**
30 30
	 * Returns the tab amount that the WMTSParamsPanel currently have
31 31
	 * @return int
32 32
	 */
33 33
	public abstract int getNumTabs();
34
	
34

  
35 35
	/**
36 36
	 * Sets the focus to the tab previous to the current one.
37 37
	 */
38 38
	public abstract void setPreviousTab();
39
	
39

  
40 40
	/**
41 41
	 * Sets the focus to the tab next to the current one.
42 42
	 */
43 43
	public abstract void setNextTab();
44
	
44

  
45 45
	/**
46 46
	 * <p>
47 47
	 * Returns the previous of the previous enabled tab.
......
49 49
	 * @return The index, or -1 if there is no one.
50 50
	 */
51 51
	public abstract int nextEnabledPage();
52
	
52

  
53 53
	/**
54 54
	 * This method checks for the options selected within the configuration
55 55
	 * dialog are correct and enough to perform a GetMap request.
......
57 57
	 * @return true if you're done, false if not.
58 58
	 */
59 59
	public abstract boolean isCorrectlyConfigured();
60
	
60

  
61 61
	public abstract void setDeleteCache(boolean deleteCache);
62
	
62

  
63 63
	/**
64 64
	 * Sets the explorer
65 65
	 * @param data
66 66
	 */
67 67
	public abstract void setWizardData(WMTSServerExplorer data);
68
	
68

  
69 69
	public abstract boolean getDeleteCache();
70
	
70

  
71 71
	public abstract void addChangeTabListener(MouseAdapter eventMouse);
72
	
72

  
73 73
	public abstract void updateSelectedInfo(HashMap<String, Object> info);
74 74

  
75 75
}

Also available in: Unified diff