Tabnine Logo
MActivity.setPropertyValue
Code IndexAdd Tabnine to your IDE (free)

How to use
setPropertyValue
method
in
jadex.bpmn.model.MActivity

Best Java code snippets using jadex.bpmn.model.MActivity.setPropertyValue (Showing top 8 results out of 315)

origin: org.activecomponents.jadex/jadex-editor-bpmn

  public void tableChanged(TableModelEvent e)
  {
    StringBuffer buf = new StringBuffer();
    
    buf.append("new java.lang.String[]{");
    
    int cnt = p.getTable().getModel().getRowCount();
    if(cnt>0)
    {
      for(int i=0; i<cnt; i++)
      {
        buf.append("\"").append(p.getTable().getModel().getValueAt(i, 0)).append("\"");
        if(i+1<cnt)
          buf.append(", ");
      }
    }
    else
    {
      buf.append("0");
    }
    buf.append("}");
    
    UnparsedExpression dur = new UnparsedExpression(MBpmnModel.PROPERTY_EVENT_RULE_EVENTTYPES, "java.lang.String[]", buf.toString(), null);
    ((MActivity)ECARuleEventPropertyPanel.this.event.getBpmnElement()).setPropertyValue(MBpmnModel.PROPERTY_EVENT_RULE_EVENTTYPES, dur);
    container.setDirty(true);
  }
});
origin: net.sourceforge.jadex/jadex-kernel-bpmn

((MActivity) namedelem).setPropertyValue(propname, propval);
origin: org.activecomponents.jadex/jadex-editor-bpmn

((MActivity) namedelem).setPropertyValue(propname, propval);
origin: org.activecomponents.jadex/jadex-editor-bpmn

  public void update(DocumentEvent e)
  {
    UnparsedExpression dur = new UnparsedExpression("condition", "java.lang.String", getText(e.getDocument()), null);
    ((MActivity)ECARuleEventPropertyPanel.this.event.getBpmnElement()).setPropertyValue("condition", dur);
    container.setDirty(true);
  }
});
origin: org.activecomponents.jadex/jadex-editor-bpmn

  public void update(DocumentEvent e)
  {
    UnparsedExpression dur = new UnparsedExpression("duration", "java.lane.Number", getText(e.getDocument()), null);
    ((MActivity) TimerEventPropertyPanel.this.event.getBpmnElement()).setPropertyValue("duration", dur);
    modelcontainer.setDirty(true);
  }
});
origin: org.activecomponents.jadex/jadex-editor-bpmn

      public void itemStateChanged(ItemEvent e)
      {
        String sel = (String)pa.getSelectedItem();
        if(sel==null)
        {
          getBpmnTask().removeProperty(MSubProcess.MULTIINSTANCE_ITERATOR);
        }
        else
        {
//                    getBpmnTask().setPropertyValue(MSubProcess.MULTIINSTANCE_ITERATOR, new UnparsedExpression(null, "\""+sel+"\""));
          getBpmnTask().setPropertyValue(MSubProcess.MULTIINSTANCE_ITERATOR, new UnparsedExpression(null, sel));
        }
        getModelContainer().setDirty(true);
      }
    });
origin: org.activecomponents.jadex/jadex-editor-bpmn

act.setPropertyValue(propname, propval);
  act.setPropertyValue(name, exp);
act.setPropertyValue(name, exp);
        act.setPropertyValue(name, exp);
        act.setPropertyValue(key, propval);
origin: net.sourceforge.jadex/jadex-kernel-bpmn

act.setPropertyValue(propname, propval);
  act.setPropertyValue(name, exp);
act.setPropertyValue(name, exp);
            null, context.getClassLoader());
        act.setPropertyValue(name, exp);
        act.setPropertyValue(key, propval);
jadex.bpmn.modelMActivitysetPropertyValue

Javadoc

Legacy conversion from unparsed expression.

Popular methods of MActivity

  • getActivityType
    Get the activity type.
  • getId
  • getName
  • <init>
  • addIncomingMessagingEdge
    Add an incoming message edge.
  • addIncomingSequenceEdge
    Add an incoming edge.
  • addOutgoingMessagingEdge
    Add an outgoing message edge.
  • addOutgoingSequenceEdge
    Add an outgoing edge.
  • addParameter
    Add a parameter.
  • getClazz
    Get the class.
  • getEventHandlers
    Get the event handlers.
  • getIncomingSequenceEdges
    Get the incoming edges.
  • getEventHandlers,
  • getIncomingSequenceEdges,
  • getLane,
  • getOutgoingSequenceEdges,
  • getParameters,
  • getProperties,
  • getPropertyValue,
  • isEventHandler,
  • isThrowing,
  • setActivityType

Popular in Java

  • Finding current android device location
  • addToBackStack (FragmentTransaction)
  • getSupportFragmentManager (FragmentActivity)
  • onRequestPermissionsResult (Fragment)
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • Hashtable (java.util)
    A plug-in replacement for JDK1.5 java.util.Hashtable. This version is based on org.cliffc.high_scale
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • JFileChooser (javax.swing)
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now