Revision 4493 trunk/libraries/libRemoteServices/src/org/gvsig/remoteClient/wcs/WCSCoverage.java

View differences:

WCSCoverage.java
72 72
	public  Hashtable 		axisPool = new Hashtable();
73 73
	private String 			nativeSRS;
74 74
	private ArrayList 		supportedSRSs = new ArrayList();
75
	private ArrayList		interpolationMethods;
75 76
	private String 			nativeFormat; 
76 77
	private ArrayList 		formats = new ArrayList();
77 78
	
......
211 212
        lonLatBbox = box;
212 213
    }   
213 214

  
215
    public void addInterpolationMethod(String method) {
216
    	if (interpolationMethods==null) interpolationMethods = new ArrayList();
217
    	interpolationMethods.add(method);
218
    }
219
    
220
    public ArrayList getInterpolationMethods() {
221
    	return interpolationMethods;
222
    }
214 223
    /**
215 224
     * Parses the fragment of the XML document that describes this layer (or coverage)
216 225
     * @param parser

Also available in: Unified diff