congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
DSLVariableValue.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.drools.guvnor.models.commons.shared.rule.DSLVariableValue
constructor

Best Java code snippets using org.drools.guvnor.models.commons.shared.rule.DSLVariableValue.<init> (Showing top 8 results out of 315)

origin: org.kie.guvnor/guvnor-guided-rule-editor-client

public DSLVariableValue getSelectedValue() {
  int selectedIndex = resultWidget.getSelectedIndex();
  if ( selectedIndex != -1 ) {
    return new DSLVariableValue( resultWidget.getValue( selectedIndex ) );
  } else {
    return new DSLVariableValue( "" );
  }
}
origin: org.kie.guvnor/guvnor-guided-rule-editor-client

  public void valueChanged( String newText,
               String newValue ) {
    makeDirty();
    selectedValue = new DSLVariableValue( newValue );
    //When the value changes we need to reset the content of *ALL* DSLSentenceWidget drop-downs.
    //An improvement would be to determine the chain of dependent drop-downs and only update
    //children of the one whose value changes. However in reality DSLSentences only contain
    //a couple of drop-downs so it's quicker to simply update them all.
    updateEnumDropDowns();
  }
};
origin: org.kie.guvnor/guvnor-guided-rule-editor-client

  public DSLVariableValue getSelectedValue() {
    String value = this.resultWidget.getSelectedIndex() == 0 ? "true" : "false";
    return new DSLVariableValue( value );
  }
}
origin: org.drools/drools-guvnor-models-commons

private DSLVariableValue parseValue( String variable ) {
  //if the variable doesn't have a ':', then it is considered as a 
  //simple value
  if ( !variable.contains( ":" ) ) {
    return new DSLVariableValue( variable );
  }
  //if it does containt a ':', then the part before it is considered
  //as the real value (used to create the final drl) and the part
  //after it is considered as an id
  String value = variable.substring( 0,
                    variable.indexOf( ":" ) );
  String id = variable.substring( variable.indexOf( ":" ) + 1 );
  return new DSLComplexVariableValue( id, value );
}
origin: org.kie.guvnor/guvnor-guided-rule-editor-client

  public DSLVariableValue getSelectedValue() {
    return new DSLVariableValue( resultWidget.getDateString() );
  }
}
origin: org.drools/drools-guvnor-models-commons

@Override
@SuppressWarnings({ "rawtypes", "unchecked" })
protected void addCurrentElementToCollection( HierarchicalStreamReader reader,
                       UnmarshallingContext context,
                       Collection collection,
                       Collection target ) {
  Object item = readItem( reader,
              context,
              collection );
  if ( item instanceof DSLVariableValue) {
    target.add( item );
  } else if ( item instanceof String ) {
    //The only other possible legacy type is a String, so using toString() should be OK
    DSLVariableValue value = new DSLVariableValue( item.toString() );
    target.add( value );
  }
}
origin: org.kie.guvnor/guvnor-guided-dtable-editor-client

private DSLVariableValue visitDSLVariableValue( DSLVariableValue value ) {
  DSLVariableValue clone = new DSLVariableValue();
  clone.setValue( value.getValue() );
  return clone;
}
origin: org.kie.guvnor/guvnor-guided-rule-editor-client

public DSLVariableValue getSelectedValue() {
  //if oldVariableValue was of type DSLComplexVariableValue, then return a
  //copy of it with only the 'value' part modified
  if ( oldVariableValue instanceof DSLComplexVariableValue) {
    return new DSLComplexVariableValue( ( (DSLComplexVariableValue) oldVariableValue ).getId(),
                      box.getText() );
  }
  return new DSLVariableValue( box.getText() );
}
org.drools.guvnor.models.commons.shared.ruleDSLVariableValue<init>

Popular methods of DSLVariableValue

  • getValue
  • setValue

Popular in Java

  • Making http post requests using okhttp
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • runOnUiThread (Activity)
  • scheduleAtFixedRate (Timer)
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • Hashtable (java.util)
    A plug-in replacement for JDK1.5 java.util.Hashtable. This version is based on org.cliffc.high_scale
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • Notification (javax.management)
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Top 17 Free Sublime Text Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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