congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
Display
Code IndexAdd Tabnine to your IDE (free)

How to use
Display
in
org.diirt.vtype

Best Java code snippets using org.diirt.vtype.Display (Showing top 4 results out of 315)

origin: org.diirt/datasource-sample

private void setMetadata(Display display) {
  if (display == null) {
    metadata.setText("");
  } else {
    metadata.setText(display.getUpperDisplayLimit() + " - " + display.getLowerDisplayLimit());
  }
}
origin: org.diirt.support/diirt-pva

lowerDisplayLimit = getDoubleValue(displayStructure, "limitLow", noDisplay.getLowerDisplayLimit());
upperDisplayLimit = getDoubleValue(displayStructure, "limitHigh", noDisplay.getUpperDisplayLimit());
    format = noDisplay.getFormat();
else
    format = createNumberFormat(formatField.get());
    units = noDisplay.getUnits();
else
    units = unitsField.get();
lowerDisplayLimit = noDisplay.getLowerDisplayLimit();
upperDisplayLimit = noDisplay.getUpperDisplayLimit();
format = noDisplay.getFormat();
units = noDisplay.getUnits();
lowerCtrlLimit = getDoubleValue(controlStructure, "limitLow", noDisplay.getLowerCtrlLimit());
upperCtrlLimit = getDoubleValue(controlStructure, "limitHigh", noDisplay.getUpperCtrlLimit());
lowerCtrlLimit = noDisplay.getLowerCtrlLimit();
upperCtrlLimit = noDisplay.getUpperCtrlLimit();
lowerAlarmLimit = getDoubleValue(valueAlarmStructure, "lowAlarmLimit", noDisplay.getLowerAlarmLimit());
lowerWarningLimit = getDoubleValue(valueAlarmStructure, "lowWarningLimit", noDisplay.getLowerWarningLimit());
upperWarningLimit = getDoubleValue(valueAlarmStructure, "highWarningLimit", noDisplay.getUpperWarningLimit());
upperAlarmLimit = getDoubleValue(valueAlarmStructure, "highAlarmLimit", noDisplay.getUpperAlarmLimit());
lowerAlarmLimit = noDisplay.getLowerAlarmLimit();
lowerWarningLimit = noDisplay.getLowerWarningLimit();
origin: org.diirt/vtype-json

public JsonVTypeBuilder addDisplay(Display display) {
  return add("display", new JsonVTypeBuilder()
      .add("lowAlarm", display.getLowerAlarmLimit())
      .add("highAlarm", display.getUpperAlarmLimit())
      .add("lowDisplay", display.getLowerDisplayLimit())
      .add("highDisplay", display.getUpperDisplayLimit())
      .add("lowWarning", display.getLowerWarningLimit())
      .add("highWarning", display.getUpperDisplayLimit())
      .add("units", display.getUnits()));
}
origin: org.diirt/datasource-graphene

public static Range toRange(Display display) {
  if (display == null) {
    return null;
  }
  Double min = display.getLowerDisplayLimit();
  Double max = display.getUpperDisplayLimit();
  if (min != null && max != null) {
    return Ranges.range(min, max);
  } else {
    return null;
  }
}
org.diirt.vtypeDisplay

Most used methods

  • getLowerDisplayLimit
  • getUpperDisplayLimit
  • getLowerAlarmLimit
  • getLowerWarningLimit
  • getUnits
  • getUpperAlarmLimit
  • getFormat
  • getLowerCtrlLimit
  • getUpperCtrlLimit
  • getUpperWarningLimit

Popular in Java

  • Reading from database using SQL prepared statement
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getContentResolver (Context)
  • requestLocationUpdates (LocationManager)
  • VirtualMachine (com.sun.tools.attach)
    A Java virtual machine. A VirtualMachine represents a Java virtual machine to which this Java vir
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • JTextField (javax.swing)
  • Runner (org.openjdk.jmh.runner)
  • From CI to AI: The AI layer in your organization
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