view src/econnect/wp3_3/client/services/ExportWriterInterface.java @ 89:3700846b8590 trimmed_data tip

bug: removed leading / in url
author Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
date Fri, 15 Mar 2013 12:53:55 +0100
parents 175c1eecaf84
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);

}