comparison flys-client/src/main/java/de/intevation/flys/client/client/services/CrossSectionKMService.java @ 1426:fc8ff0ed64ca

Added client for CrossSectionKMService. flys-client/trunk@3369 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Felix Wolfsteller <felix.wolfsteller@intevation.de>
date Thu, 08 Dec 2011 12:09:58 +0000
parents
children
comparison
equal deleted inserted replaced
1425:bc06a671ef60 1426:fc8ff0ed64ca
1 package de.intevation.flys.client.client.services;
2
3 import java.util.Map;
4
5 import com.google.gwt.user.client.rpc.RemoteService;
6 import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
7
8 import de.intevation.flys.client.shared.exceptions.ServerException;
9
10 /**
11 * This interface provides access to CrossSectionKMService .
12 */
13 @RemoteServiceRelativePath("cross-section-km")
14 public interface CrossSectionKMService extends RemoteService {
15
16 /**
17 * @param serverUrl The url of the artifact server.
18 * @param locale The locale used for the request.
19 * @param artifact The artifact.
20 * @param data The data that should be inserted.
21 *
22 * @return the artifact which description might have been changed.
23 */
24 public Map<Integer,Double[]> getCrossSectionKMs(
25 String locale,
26 Map<Integer, Double> data,
27 int nNeightbours)
28 throws ServerException;
29 }
30 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org