Java Code Examples for javafx.beans.property.ReadOnlyStringProperty
The following examples show how to use
javafx.beans.property.ReadOnlyStringProperty. These examples are extracted from open source projects.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source Project: constellation Source File: AbstractEditorFactory.java License: Apache License 2.0 | 4 votes |
public final ReadOnlyStringProperty getErrorMessageProperty() { return errorMessageProperty; }
Example 2
Source Project: attach Source File: IOSPushNotificationsService.java License: GNU General Public License v3.0 | 4 votes |
@Override public ReadOnlyStringProperty tokenProperty() { return TOKEN.getReadOnlyProperty(); }
Example 3
Source Project: bisq-core Source File: Trade.java License: GNU Affero General Public License v3.0 | 4 votes |
public ReadOnlyStringProperty errorMessageProperty() { return errorMessageProperty; }
Example 4
Source Project: bisq-core Source File: DisputeCommunicationMessage.java License: GNU Affero General Public License v3.0 | 4 votes |
public ReadOnlyStringProperty sendMessageErrorProperty() { return sendMessageErrorProperty; }
Example 5
Source Project: bisq-core Source File: DisputeCommunicationMessage.java License: GNU Affero General Public License v3.0 | 4 votes |
public ReadOnlyStringProperty ackErrorProperty() { return ackErrorProperty; }
Example 6
Source Project: bisq-core Source File: Offer.java License: GNU Affero General Public License v3.0 | 4 votes |
public ReadOnlyStringProperty errorMessageProperty() { return errorMessageProperty; }
Example 7
Source Project: scenic-view Source File: MonitoredCSS.java License: GNU General Public License v3.0 | 4 votes |
public ReadOnlyStringProperty css() { return css; }
Example 8
Source Project: WorkbenchFX Source File: Tab.java License: Apache License 2.0 | 4 votes |
public final ReadOnlyStringProperty nameProperty() { return name; }
Example 9
Source Project: WorkbenchFX Source File: Tile.java License: Apache License 2.0 | 4 votes |
public final ReadOnlyStringProperty nameProperty() { return name; }
Example 10
Source Project: PreferencesFX Source File: Category.java License: Apache License 2.0 | 4 votes |
public ReadOnlyStringProperty descriptionProperty() { return description; }
Example 11
Source Project: paintera Source File: MaskedSource.java License: GNU General Public License v2.0 | 4 votes |
public ReadOnlyStringProperty currentCanvasDirectoryProperty() { return this.cacheDirectory; }
Example 12
Source Project: xltsearch Source File: Catalog.java License: Apache License 2.0 | 4 votes |
ReadOnlyStringProperty indexDetailsProperty() { return indexDetails.getReadOnlyProperty(); }
Example 13
Source Project: xltsearch Source File: Catalog.java License: Apache License 2.0 | 4 votes |
ReadOnlyStringProperty indexMessageProperty() { return indexMessage.getReadOnlyProperty(); }
Example 14
Source Project: xltsearch Source File: Catalog.java License: Apache License 2.0 | 4 votes |
ReadOnlyStringProperty searchDetailsProperty() { return searchDetails.getReadOnlyProperty(); }
Example 15
Source Project: mars-sim Source File: DatePicker.java License: GNU General Public License v3.0 | 4 votes |
/** @return a string based date property, formatted by a settable formatter (default format will be an the default platform locale short date (e.g. MM/dd/yy). */ public ReadOnlyStringProperty dateStringProperty() { return dateString.getReadOnlyProperty(); }
Example 16
Source Project: jfxvnc Source File: VncRenderService.java License: Apache License 2.0 | 4 votes |
public ReadOnlyStringProperty serverCutTextProperty() { return serverCutText.getReadOnlyProperty(); }
Example 17
Source Project: jfxvnc Source File: VncRenderService.java License: Apache License 2.0 | 4 votes |
public ReadOnlyStringProperty serverCutTextProperty() { return serverCutText.getReadOnlyProperty(); }
Example 18
Source Project: bisq Source File: MutableOfferDataModel.java License: GNU Affero General Public License v3.0 | 4 votes |
public ReadOnlyStringProperty getTradeCurrencyCode() { return tradeCurrencyCode; }
Example 19
Source Project: bisq Source File: Trade.java License: GNU Affero General Public License v3.0 | 4 votes |
public ReadOnlyStringProperty errorMessageProperty() { return errorMessageProperty; }
Example 20
Source Project: bisq Source File: ChatMessage.java License: GNU Affero General Public License v3.0 | 4 votes |
public ReadOnlyStringProperty sendMessageErrorProperty() { return sendMessageErrorProperty; }
Example 21
Source Project: bisq Source File: ChatMessage.java License: GNU Affero General Public License v3.0 | 4 votes |
public ReadOnlyStringProperty ackErrorProperty() { return ackErrorProperty; }
Example 22
Source Project: bisq Source File: Offer.java License: GNU Affero General Public License v3.0 | 4 votes |
public ReadOnlyStringProperty errorMessageProperty() { return errorMessageProperty; }
Example 23
Source Project: cate Source File: WalletTransaction.java License: MIT License | 4 votes |
/** * @return the property holding the transaction amount. */ public ReadOnlyStringProperty amountProperty() { return amountProperty; }
Example 24
Source Project: cate Source File: WalletTransaction.java License: MIT License | 4 votes |
/** * @return the property holding the transaction date. */ public ReadOnlyStringProperty dateProperty() { return dateProperty; }
Example 25
Source Project: TerasologyLauncher Source File: PackageItem.java License: Apache License 2.0 | 4 votes |
public ReadOnlyStringProperty nameProperty() { return name; }
Example 26
Source Project: TerasologyLauncher Source File: VersionItem.java License: Apache License 2.0 | 4 votes |
public ReadOnlyStringProperty versionProperty() { return version; }
Example 27
Source Project: attach Source File: PushNotificationsService.java License: GNU General Public License v3.0 | 2 votes |
/** * The unique registration token that can be passed to the server, so the app * can receive push notifications * * @return a ReadOnlyStringProperty with a unique token */ ReadOnlyStringProperty tokenProperty();
Example 28
Source Project: cate Source File: WalletTransaction.java License: MIT License | 2 votes |
/** * @return the property holding the name of the network the transaction * belongs to. */ public ReadOnlyStringProperty networkNameProperty() { return networkNameProperty; }
Example 29
Source Project: paintera Source File: SourceState.java License: GNU General Public License v2.0 | votes |
ReadOnlyStringProperty statusTextProperty();
Example 30
Source Project: markdown-writer-fx Source File: MarkdownEditorPane.java License: BSD 2-Clause "Simplified" License | votes |
public ReadOnlyStringProperty markdownTextProperty() { return markdownText.getReadOnlyProperty(); }