Package com.google.gdt.eclipse.designer.wizards.model.module.CreateEntryPointOperationPre21

Examples of com.google.gdt.eclipse.designer.wizards.model.module.CreateEntryPointOperationPre21.EntryPointPre21Configuration


      Map<String, String> variables = new HashMap<String, String>();
      variables.put("basePackageName", getPackageName());
      variables.put("moduleName", getModuleName());
      {
        // add EntryPoint variables
        EntryPointPre21Configuration entryPointConfiguration = getEntryPointConfiguration();
        if (entryPointConfiguration != null) {
          variables.putAll(entryPointConfiguration.getVariables());
        }
      }
      return variables;
    }
View Full Code Here

TOP

Related Classes of com.google.gdt.eclipse.designer.wizards.model.module.CreateEntryPointOperationPre21.EntryPointPre21Configuration

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.