javafx.beans.property.ReadOnlyFloatProperty Java Examples

The following examples show how to use javafx.beans.property.ReadOnlyFloatProperty. 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: IOSBatteryService.java    From attach with GNU General Public License v3.0 4 votes vote down vote up
@Override
public ReadOnlyFloatProperty batteryLevelProperty() {
    return BATTERY_LEVEL.getReadOnlyProperty();
}
 
Example #2
Source File: AndroidBatteryService.java    From attach with GNU General Public License v3.0 4 votes vote down vote up
@Override
public ReadOnlyFloatProperty batteryLevelProperty() {
    return BATTERY_LEVEL.getReadOnlyProperty();
}
 
Example #3
Source File: AndroidKeyboardService.java    From attach with GNU General Public License v3.0 4 votes vote down vote up
@Override
public ReadOnlyFloatProperty visibleHeightProperty() {
    return VISIBLE_HEIGHT.getReadOnlyProperty();
}
 
Example #4
Source File: IOSKeyboardService.java    From attach with GNU General Public License v3.0 4 votes vote down vote up
@Override
public ReadOnlyFloatProperty visibleHeightProperty() {
    return VISIBLE_HEIGHT.getReadOnlyProperty();
}
 
Example #5
Source File: WorldRendererCanvas.java    From BlockMap with MIT License 4 votes vote down vote up
public ReadOnlyFloatProperty getProgress() {
	return progress.getReadOnlyProperty();
}
 
Example #6
Source File: RenderedMap.java    From BlockMap with MIT License 4 votes vote down vote up
public ReadOnlyFloatProperty getProgress() {
	return progress.getReadOnlyProperty();
}
 
Example #7
Source File: FXTimer.java    From TweetwallFX with MIT License 4 votes vote down vote up
public ReadOnlyFloatProperty deltaTimeProperty() {
    return deltaTime.getReadOnlyProperty();
}
 
Example #8
Source File: BatteryService.java    From attach with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Returns a property that will be frequently updated to reflect the current battery level.
 * @return A property containing the current battery level.
 */
ReadOnlyFloatProperty batteryLevelProperty();
 
Example #9
Source File: KeyboardService.java    From attach with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Gets the visible height of the Keyboard, so scene or views can adjusted
 * to prevent some of their content from being covered by the keyboard.
 *
 * @return A ReadOnlyFloatProperty with the height of the soft keyboard
 */
ReadOnlyFloatProperty visibleHeightProperty();