Package org.eclipse.wb.internal.core.model.variable

Examples of org.eclipse.wb.internal.core.model.variable.EmptyPureVariableSupport


    UIObjectInfo newItem = (UIObjectInfo) newObject;
    UIObjectInfo nextItem = (UIObjectInfo) nextObject;
    // add new item
    if (newItem instanceof MenuItemInfo) {
      if (newItem.getCreationSupport() instanceof ImplicitFactoryCreationSupport) {
        VariableSupport variableSupport = new EmptyPureVariableSupport(newItem);
        StatementGenerator statementGenerator = GenerationUtils.getStatementGenerator(newItem);
        JavaInfoUtils.add(newItem, variableSupport, statementGenerator, null, m_menu, nextItem);
      } else {
        JavaInfoUtils.add(newItem, getNewItemAssociation(), m_menu, nextItem);
      }
View Full Code Here

TOP

Related Classes of org.eclipse.wb.internal.core.model.variable.EmptyPureVariableSupport

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.