Package javafx.beans.property

Examples of javafx.beans.property.SimpleStringProperty


      out.writeObject(auditralColorMappings.get(i));
    }
  }

  private void readObject(ObjectInputStream in) throws ClassNotFoundException, IOException {
    lastConnectedServer = new SimpleStringProperty((String)in.readObject());
    auditralColorMappings = FXCollections.observableList(new ArrayList<AuditralColorMapping>());
    int size = in.readInt();
    for (int i=0;i<size;i++){
      auditralColorMappings.add((AuditralColorMapping)in.readObject());
    }
View Full Code Here


    public final SimpleStringProperty level;
    public final SimpleStringProperty locationInformation;
   
    public LogsRowModel(LogEvent logEvent) {
      time = new SimpleObjectProperty<Date>(logEvent.getTimeStamp());
      message = new SimpleStringProperty(logEvent.getMessage());
      level = new SimpleStringProperty(logEvent.getLevel());
      locationInformation = new SimpleStringProperty(logEvent.getLocationInformation());
    }
View Full Code Here

  protected final C controller;
 

  public Form(String staticTitle, ShowFormStrategy<?> showFormStrategy, C controller) {
    super();
    this.staticTitle = new SimpleStringProperty(staticTitle);
    this.displayTitle = new SimpleStringProperty(staticTitle);
    this.showFormStrategy = showFormStrategy;
    this.controller = controller;
  }
View Full Code Here

  static Logger logger = LoggerFactory.getLogger(MonitorMain.class);

  @Override
  public void start(final Stage primaryStage) { //Stage = window
    ApplicationContext applicationContext = new ApplicationContext();
    primaryStage.titleProperty().bind(new SimpleStringProperty("Copper Monitor (server: ").concat(applicationContext.serverAdressProperty().concat(")")));
    new Button(); // Trigger loading of default stylesheet
    final Scene scene = new Scene(applicationContext.getMainPane(), 1300, 900, Color.WHEAT);

    scene.getStylesheets().add(this.getClass().getResource("/de/scoopgmbh/copper/gui/css/base.css").toExternalForm());
   
View Full Code Here

   
    FxmlForm<FilterResultController<WorkflowInstanceDetailFilterModel, WorkflowInstanceDetailResultModel>> resultForm = createWorkflowinstanceDetailResultForm(new EmptyShowFormStrategie());
   
    EngineFilterAbleForm<WorkflowInstanceDetailFilterModel, WorkflowInstanceDetailResultModel> filterAbleForm = new EngineFilterAbleForm<WorkflowInstanceDetailFilterModel, WorkflowInstanceDetailResultModel>(messageProvider,
        getDefaultShowFormStrategy(), filterForm, resultForm, issueReporter);
    filterAbleForm.displayedTitleProperty().bind(new SimpleStringProperty("Details Id:").concat(fCtrl.getFilter().workflowInstanceId));
    return filterAbleForm;
  }
View Full Code Here

  public final SimpleStringProperty  correlationId;

  public MessageResultModel(MessageInfo messageInfo) {
    this.timeout = new SimpleObjectProperty<Date>(messageInfo.getTimeout());
    this.time = new SimpleObjectProperty<Date>(messageInfo.getTimestamp());
    this.message = new SimpleStringProperty(messageInfo.getMessage());
    this.correlationId = new SimpleStringProperty(messageInfo.getCorrelationId());
  }
View Full Code Here

  public final SimpleObjectProperty<ContentType> contentType;
  public final SimpleStringProperty creatorId;

  public ProviderResultModel(GenericMonitoringData genericMonitoringData) {
    timeStamp = new SimpleObjectProperty<Date>(genericMonitoringData.getTimeStamp());
    content = new SimpleStringProperty(genericMonitoringData.getContent());
    contentType = new SimpleObjectProperty<ContentType>(genericMonitoringData.getContentType());
    creatorId = new SimpleStringProperty(genericMonitoringData.getCreatorId());
  }
View Full Code Here

    out.writeDouble(color.getValue().getBlue());
    out.writeDouble(color.getValue().getOpacity());
  }

  private void readObject(ObjectInputStream in) throws ClassNotFoundException, IOException {
    idRegEx = new SimpleStringProperty((String)in.readObject());
    occurrenceRegEx = new SimpleStringProperty((String)in.readObject());
      conversationIdRegEx = new SimpleStringProperty((String)in.readObject());
    loglevelRegEx = new SimpleStringProperty((String)in.readObject());
    contextRegEx = new SimpleStringProperty((String)in.readObject());
    workflowInstanceIdRegEx = new SimpleStringProperty((String)in.readObject());
    correlationIdRegEx = new SimpleStringProperty((String)in.readObject());
    transactionIdRegEx = new SimpleStringProperty((String)in.readObject());
    messageTypeRegEx = new SimpleStringProperty((String)in.readObject());
    double r = in.readDouble();
    double g = in.readDouble();
    double b = in.readDouble();
    double o = in.readDouble();
    color = new SimpleObjectProperty<Color>(new Color(r,g,b,o));
View Full Code Here

  public final SimpleStringProperty transactionId;
  public final SimpleStringProperty messageType;
 
  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 class SqlResultModel {
  public final List<SimpleStringProperty> rows = new ArrayList<SimpleStringProperty>();
 
  public SqlResultModel(String... rows){
    for (String row: rows){
      this.rows.add(new SimpleStringProperty(row));
    }
  }
View Full Code Here

TOP

Related Classes of javafx.beans.property.SimpleStringProperty

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.