view src/econnect/wp3_3/client/services/ExportWriterInterface.java @ 15:175c1eecaf84

added export kml feature (not finished)
author Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
date Mon, 26 Nov 2012 14:40:43 +0100
parents
children
line wrap: on
line source

package econnect.wp3_3.client.services;

import com.google.gwt.user.client.rpc.RemoteService;
import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;

@RemoteServiceRelativePath("ExportWriterImpl")
public interface ExportWriterInterface extends RemoteService {
    
    public String writeKMLFile(String kmlFileContent);

}