Package org.dmd.mvw.tools.mvwgenerator.extended.menus

Examples of org.dmd.mvw.tools.mvwgenerator.extended.menus.ActionBinding


      Separator sep = (Separator) def;
      separators.put(sep.getCamelCaseName(), sep);
      menuElements.put(sep.getCamelCaseName(), sep);
    }
    else if (def instanceof ActionBinding){
      ActionBinding action = (ActionBinding) def;
      actions.put(action.getCamelCaseName(), action);
    }
    else if (def instanceof MenuImplementationConfig){
      if (menuImplementation == null){
        menuImplementation = (MenuImplementationConfig) def;
       
View Full Code Here


        super(new ActionBindingDMO(mods), org.dmd.mvw.tools.mvwgenerator.generated.MvwSchemaAG._ActionBinding);
    }

    // Generated from: org.dmd.dmg.generators.BaseDMWGeneratorNewest.dumpWrapper(BaseDMWGeneratorNewest.java:491)
    public ActionBinding getModificationRecorder(){
        ActionBinding rc = new ActionBinding();
        rc.setActionBindingName(getActionBindingName());
        rc.setModifier(new DmcTypeModifierMV(MetaDMSAG.__modify));
        return(rc);
    }
View Full Code Here

    public ActionBindingDMW(ActionBindingDMO obj) {
        super(obj, org.dmd.mvw.tools.mvwgenerator.generated.MvwSchemaAG._ActionBinding);
    }

    public ActionBinding cloneIt() {
        ActionBinding rc = new ActionBinding();
        rc.setDmcObject(getDMO().cloneIt());
        return(rc);
    }
View Full Code Here

TOP

Related Classes of org.dmd.mvw.tools.mvwgenerator.extended.menus.ActionBinding

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.