javafx.beans.property.ReadOnlyStringProperty Java Examples
The following examples show how to use
javafx.beans.property.ReadOnlyStringProperty.
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 File: Catalog.java From xltsearch with Apache License 2.0 | 4 votes |
ReadOnlyStringProperty searchDetailsProperty() { return searchDetails.getReadOnlyProperty(); }
Example #2
Source File: VersionItem.java From TerasologyLauncher with Apache License 2.0 | 4 votes |
public ReadOnlyStringProperty versionProperty() { return version; }
Example #3
Source File: PackageItem.java From TerasologyLauncher with Apache License 2.0 | 4 votes |
public ReadOnlyStringProperty nameProperty() { return name; }
Example #4
Source File: WalletTransaction.java From cate with MIT License | 4 votes |
/** * @return the property holding the transaction date. */ public ReadOnlyStringProperty dateProperty() { return dateProperty; }
Example #5
Source File: WalletTransaction.java From cate with MIT License | 4 votes |
/** * @return the property holding the transaction amount. */ public ReadOnlyStringProperty amountProperty() { return amountProperty; }
Example #6
Source File: Offer.java From bisq with GNU Affero General Public License v3.0 | 4 votes |
public ReadOnlyStringProperty errorMessageProperty() { return errorMessageProperty; }
Example #7
Source File: ChatMessage.java From bisq with GNU Affero General Public License v3.0 | 4 votes |
public ReadOnlyStringProperty ackErrorProperty() { return ackErrorProperty; }
Example #8
Source File: ChatMessage.java From bisq with GNU Affero General Public License v3.0 | 4 votes |
public ReadOnlyStringProperty sendMessageErrorProperty() { return sendMessageErrorProperty; }
Example #9
Source File: Trade.java From bisq with GNU Affero General Public License v3.0 | 4 votes |
public ReadOnlyStringProperty errorMessageProperty() { return errorMessageProperty; }
Example #10
Source File: MutableOfferDataModel.java From bisq with GNU Affero General Public License v3.0 | 4 votes |
public ReadOnlyStringProperty getTradeCurrencyCode() { return tradeCurrencyCode; }
Example #11
Source File: VncRenderService.java From jfxvnc with Apache License 2.0 | 4 votes |
public ReadOnlyStringProperty serverCutTextProperty() { return serverCutText.getReadOnlyProperty(); }
Example #12
Source File: VncRenderService.java From jfxvnc with Apache License 2.0 | 4 votes |
public ReadOnlyStringProperty serverCutTextProperty() { return serverCutText.getReadOnlyProperty(); }
Example #13
Source File: DatePicker.java From mars-sim with 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 #14
Source File: AbstractEditorFactory.java From constellation with Apache License 2.0 | 4 votes |
public final ReadOnlyStringProperty getErrorMessageProperty() { return errorMessageProperty; }
Example #15
Source File: Catalog.java From xltsearch with Apache License 2.0 | 4 votes |
ReadOnlyStringProperty indexMessageProperty() { return indexMessage.getReadOnlyProperty(); }
Example #16
Source File: Catalog.java From xltsearch with Apache License 2.0 | 4 votes |
ReadOnlyStringProperty indexDetailsProperty() { return indexDetails.getReadOnlyProperty(); }
Example #17
Source File: MaskedSource.java From paintera with GNU General Public License v2.0 | 4 votes |
public ReadOnlyStringProperty currentCanvasDirectoryProperty() { return this.cacheDirectory; }
Example #18
Source File: Category.java From PreferencesFX with Apache License 2.0 | 4 votes |
public ReadOnlyStringProperty descriptionProperty() { return description; }
Example #19
Source File: Tile.java From WorkbenchFX with Apache License 2.0 | 4 votes |
public final ReadOnlyStringProperty nameProperty() { return name; }
Example #20
Source File: Tab.java From WorkbenchFX with Apache License 2.0 | 4 votes |
public final ReadOnlyStringProperty nameProperty() { return name; }
Example #21
Source File: MonitoredCSS.java From scenic-view with GNU General Public License v3.0 | 4 votes |
public ReadOnlyStringProperty css() { return css; }
Example #22
Source File: Offer.java From bisq-core with GNU Affero General Public License v3.0 | 4 votes |
public ReadOnlyStringProperty errorMessageProperty() { return errorMessageProperty; }
Example #23
Source File: DisputeCommunicationMessage.java From bisq-core with GNU Affero General Public License v3.0 | 4 votes |
public ReadOnlyStringProperty ackErrorProperty() { return ackErrorProperty; }
Example #24
Source File: DisputeCommunicationMessage.java From bisq-core with GNU Affero General Public License v3.0 | 4 votes |
public ReadOnlyStringProperty sendMessageErrorProperty() { return sendMessageErrorProperty; }
Example #25
Source File: Trade.java From bisq-core with GNU Affero General Public License v3.0 | 4 votes |
public ReadOnlyStringProperty errorMessageProperty() { return errorMessageProperty; }
Example #26
Source File: IOSPushNotificationsService.java From attach with GNU General Public License v3.0 | 4 votes |
@Override public ReadOnlyStringProperty tokenProperty() { return TOKEN.getReadOnlyProperty(); }
Example #27
Source File: WalletTransaction.java From cate with MIT License | 2 votes |
/** * @return the property holding the name of the network the transaction * belongs to. */ public ReadOnlyStringProperty networkNameProperty() { return networkNameProperty; }
Example #28
Source File: PushNotificationsService.java From attach with 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 #29
Source File: SourceState.java From paintera with GNU General Public License v2.0 | votes |
ReadOnlyStringProperty statusTextProperty();
Example #30
Source File: MarkdownEditorPane.java From markdown-writer-fx with BSD 2-Clause "Simplified" License | votes |
public ReadOnlyStringProperty markdownTextProperty() { return markdownText.getReadOnlyProperty(); }