Package org.cloudfoundry.ide.eclipse.server.core.internal.application

Examples of org.cloudfoundry.ide.eclipse.server.core.internal.application.ApplicationProvider


  public static String EXTENSION_POINT = "org.cloudfoundry.ide.eclipse.server.ui.applicationWizard"; //$NON-NLS-1$

  public static ApplicationWizardDelegate getWizardProvider(IModule module) {
    // See if there is a corresponding application delegate
    ApplicationProvider applicationProvider = ApplicationRegistry.getApplicationProvider(module);
    return getWizardDelegate(applicationProvider);

  }
View Full Code Here


    return null;
  }

  public static IApplicationWizardDelegate getDefaultJavaWebWizardDelegate() {
    ApplicationProvider javaWebProvider = ApplicationRegistry.getDefaultJavaWebApplicationProvider();
    return getWizardDelegate(javaWebProvider);
  }
View Full Code Here

TOP

Related Classes of org.cloudfoundry.ide.eclipse.server.core.internal.application.ApplicationProvider

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.