Search in sources :

Example 1 with GwtDevModeServer

use of com.intellij.gwt.run.GwtDevModeServer in project google-cloud-intellij by GoogleCloudPlatform.

the class AppEngineGwtServerProvider method getServers.

@Override
public List<? extends GwtDevModeServer> getServers() {
    final List<ApplicationServer> servers = ApplicationServersManager.getInstance().getApplicationServers(AppEngineServerIntegration.getInstance());
    final List<GwtDevModeServer> result = new ArrayList<GwtDevModeServer>();
    for (ApplicationServer server : servers) {
        result.add(new AppEngineGwtServer(server));
    }
    return result;
}
Also used : GwtDevModeServer(com.intellij.gwt.run.GwtDevModeServer) ArrayList(java.util.ArrayList) ApplicationServer(com.intellij.javaee.appServerIntegrations.ApplicationServer)

Aggregations

GwtDevModeServer (com.intellij.gwt.run.GwtDevModeServer)1 ApplicationServer (com.intellij.javaee.appServerIntegrations.ApplicationServer)1 ArrayList (java.util.ArrayList)1