Package org.openiaml.model.diagram.custom.actions

Examples of org.openiaml.model.diagram.custom.actions.RefreshFormMappingsWithDrools$RefreshFormMappings


  @Override
  public List<UpdateWithDroolsAction> getActionList() {
    List<UpdateWithDroolsAction> result = new ArrayList<UpdateWithDroolsAction>();
    result.add(new RefreshObjectInstanceMappingsWithDrools());
    result.add(new RefreshFormMappingsWithDrools());
    return result;
  }
View Full Code Here


 
  @Override
  protected List<UpdateWithDroolsAction> getActionList() {
    List<UpdateWithDroolsAction> list = new ArrayList<UpdateWithDroolsAction>();
    list.add(new RefreshObjectInstanceMappingsWithDrools());
    list.add(new RefreshFormMappingsWithDrools());
    return list;
  }
View Full Code Here

   * @throws JaxenException
   */
  @Override
  public void testActionInference() throws Exception {
    root = loadDirectly(InputFormInstanceMapping.class);
    RefreshFormMappingsWithDrools action =
      new RefreshFormMappingsWithDrools();

    action.refreshMappings(root, CachedModelInferer.getInstance().createCreateElementsFactory(), new NullProgressMonitor());

    InputFormInstanceMapping parent = new InputFormInstanceMapping();
    parent.checkNotInferredKnowledge(root);
  }
View Full Code Here

    DiagramDocumentEditor editor_page = openDiagram(page);
    try {
      ShapeNodeEditPart form = assertHasInputForm(editor_page, "target form", false);
 
      // lets run the action
      runAction(new RefreshFormMappingsWithDrools(), form);
 
      // the current editor should still be the same
      // should have three children
      assertEditorHasChildren(3, editor_page);
      assertHasInputForm(editor_page, "target form", false);
View Full Code Here

TOP

Related Classes of org.openiaml.model.diagram.custom.actions.RefreshFormMappingsWithDrools$RefreshFormMappings

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.