Package javafx.beans.property

Examples of javafx.beans.property.SimpleIntegerProperty


   */
  public UGateToggleSwitchBox(final BeanPathAdapter<T> beanPathAdapter,
      final IModelType<T> modelKey, final ToggleItem... toggleItems) {
    setSpacing(5d);
    setAlignment(Pos.BOTTOM_LEFT);
    this.valueProperty = new SimpleIntegerProperty(0) {
      @Override
      public final void set(final int v) {
        if (v >= 0 && v <= getMaxValue() && v != get()) {
          super.set(v);
          if (toggleItemsNeedSelectionUpdates) {
View Full Code Here


    private IntegerProperty numpotentialconnleak;
    private IntegerProperty numconnused;

    private ConnectionPoolBindings() {
        this.jndiName = new SimpleStringProperty();
        this.numconnfree = new SimpleIntegerProperty();
        this.waitqueuelength = new SimpleIntegerProperty();
        this.numpotentialconnleak = new SimpleIntegerProperty();
        this.numconnused = new SimpleIntegerProperty();
    }
View Full Code Here

        this.snapshots = FXCollections.observableArrayList();
        this.pools = FXCollections.observableHashMap();
        this.escalationsPresenter = new EscalationsPresenter(this.dashboardModel.serverUriProperty());
        this.usedHeapSizeInMB = new SimpleLongProperty();
        this.threadCount = new SimpleLongProperty();
        this.peakThreadCount = new SimpleIntegerProperty();
        this.busyThreads = new SimpleIntegerProperty();
        this.queuedConnections = new SimpleIntegerProperty();
        this.commitCount = new SimpleIntegerProperty();
        this.rollbackCount = new SimpleIntegerProperty();
        this.totalErrors = new SimpleIntegerProperty();
        this.activeSessions = new SimpleIntegerProperty();
        this.expiredSessions = new SimpleIntegerProperty();
        this.id = new SimpleLongProperty();
        this.commitsPerSecond = new SimpleDoubleProperty();
        this.rollbacksPerSecond = new SimpleDoubleProperty();
        this.deadlockedThreads = new SimpleStringProperty();
        this.initializeListeners();
View Full Code Here

 
  public AuditTrailResultModel(AuditTrailInfo auditTrailInfo) {
    id= new SimpleLongProperty(auditTrailInfo.getId());
    occurrence = new SimpleStringProperty(auditTrailInfo.getOccurrence()!=null?auditTrailInfo.getOccurrence().toString():"");
    conversationId = new SimpleStringProperty(auditTrailInfo.getConversationId());
    loglevel= new SimpleIntegerProperty(auditTrailInfo.getLoglevel());
    context = new SimpleStringProperty(auditTrailInfo.getContext());
    workflowInstanceId = new SimpleStringProperty(auditTrailInfo.getWorkflowInstanceId());
    correlationId = new SimpleStringProperty(auditTrailInfo.getCorrelationId());
    transactionId = new SimpleStringProperty(auditTrailInfo.getTransactionId());
    messageType = new SimpleStringProperty(auditTrailInfo.getMessageType());
View Full Code Here

    public final SimpleStringProperty errorInfos;

  public WorkflowInstanceResultModel(WorkflowInstanceInfo workflowInstanceInfo) {
    this.id = new SimpleStringProperty(workflowInstanceInfo.getId());
    this.state = new SimpleObjectProperty<WorkflowInstanceState>(workflowInstanceInfo.getState());
    this.priority = new SimpleIntegerProperty(workflowInstanceInfo.getPriority());
    this.processorPoolId = new SimpleStringProperty(workflowInstanceInfo.getProcessorPoolId());
    this.timeout = new SimpleObjectProperty<Date>(workflowInstanceInfo.getTimeout());
   
    this.lastActivityTimestamp=new SimpleObjectProperty<Date>(workflowInstanceInfo.getLastActivityTimestamp());
    this.overallLifetimeInMs=new SimpleLongProperty(workflowInstanceInfo.getOverallLifetimeInMs());
View Full Code Here

        private final SimpleIntegerProperty number;
        private final SimpleStringProperty load;

        private DeviceInfo(Integer number, Double load) {
            this.number = new SimpleIntegerProperty(number);
            this.load = new SimpleStringProperty(String.format("%6.2f", load));
        }
View Full Code Here

        private RequestInfo(double arrive, double serve, boolean served, int deviceNumber) {
            this.arrive = new SimpleStringProperty(String.format("%6.2f", arrive));
            this.serve = new SimpleStringProperty(String.format("%6.2f", serve));
            this.served = served ? new SimpleStringProperty("Да") : new SimpleStringProperty("Нет");
            this.deviceNumber = new SimpleIntegerProperty(deviceNumber);
        }
View Full Code Here

            decimals.set(clamp(0, 3, DECIMALS));
        }
    }
    public final IntegerProperty decimalsProperty() {
        if (null == decimals) {
            decimals = new SimpleIntegerProperty(this, "decimals", _decimals);
        }
        return decimals;
    }
View Full Code Here

        properties.put("markersList", new SimpleObjectProperty<>(MARKERS));
        return this;
    }

    public final GaugeBuilder decimals(final int DECIMALS) {
        properties.put("decimals", new SimpleIntegerProperty(DECIMALS));
        return this;
    }
View Full Code Here

            decimals.set(dec);
        }
    }
    public final IntegerProperty decimalsProperty() {
        if (null == decimals) {
            decimals = new SimpleIntegerProperty(this, "decimals", _decimals);
        }
        return decimals;
    }
View Full Code Here

TOP

Related Classes of javafx.beans.property.SimpleIntegerProperty

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.