view src/econnect/wp3_3/client/services/ExportWriterInterface.java @ 41:90b7bbc9962f default

Merged the bugfixes
author Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
date Thu, 06 Dec 2012 18:09:00 +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);

}