JavaFx Property Getter & Setter Generator - plugin detail
Automatically generates getter and setter methods for JavaFX Properties in a POJO.

Plugin owner: |
rterp |
Website: |
https://github.com/rterp/JavaFxPropertyHelperNBPlugin |
Added: |
2015-12-03 |
License: |
MIT |
Category: |
Code Generation |
Downloaded: |
3,883 times |
Rating: |
|
Plugin Log |
Show log
2015-12-11 16:35:58 | rterp | Plugin edited, id:61878, pubid:61878 | 2015-12-11 16:35:58 | rterp | Plugin edit initiated | 2015-12-11 16:35:09 | rterp | Binary successfully saved 1449869709_JavaFxPropertyHelperNBPlugin-1.1.2.nbm, binary_id: 4278, version: 8.0 | 2015-12-11 16:35:09 | rterp | Binary uploaded successfully - /space/pluginportal-v2/public/data/nbms/JavaFxPropertyHelperNBPlugin-1.1.2.nbm | 2015-12-11 16:35:09 | rterp | Uploading new binary for version 8.0 | 2015-12-11 16:34:48 | rterp | Binary successfully saved 1449869688_JavaFxPropertyHelperNBPlugin-1.1.2.nbm, binary_id: 4277, version: 8.1 | 2015-12-11 16:34:48 | rterp | Binary uploaded successfully - /space/pluginportal-v2/public/data/nbms/JavaFxPropertyHelperNBPlugin-1.1.2.nbm | 2015-12-11 16:34:48 | rterp | Uploading new binary for version 8.1 | 2015-12-07 13:10:14 | rterp | Plugin edited, id:61878, pubid:61878 | 2015-12-07 13:10:14 | rterp | Plugin edit initiated | 2015-12-07 13:09:26 | rterp | Plugin edited, id:61878, pubid:61878 | 2015-12-07 13:09:26 | rterp | Plugin edit initiated | 2015-12-07 13:08:17 | rterp | Binary successfully saved 1449511697_JavaFxPropertyHelperNBPlugin-1.1.1.nbm, binary_id: 4267, version: 8.1 | 2015-12-07 13:08:17 | rterp | Binary uploaded successfully - /space/pluginportal-v2/public/data/nbms/JavaFxPropertyHelperNBPlugin-1.1.1.nbm | 2015-12-07 13:08:17 | rterp | Uploading new binary for version 8.1 | 2015-12-07 03:17:56 | jkovalsky | Plugin published | 2015-12-04 13:50:34 | rterp | Plugin edited, id:61878, pubid:61878 | 2015-12-04 13:50:34 | rterp | New full image added | 2015-12-04 13:50:34 | rterp | New thumbnail image added | 2015-12-04 13:50:34 | rterp | Plugin edit initiated | 2015-12-03 19:00:33 | rterp | Plugin saved with .nbm/zip file; id: 61878 |
|
|
Versions available
|
Download size: 0.02 MB
|
Last Update: 2015-12-11
|
What's new in this version
Updated plugin so that the methods that it generates are marked as final.
Verifications for NetBeans versions
Plugin is not subject to any verification
|
Download size: 0.02 MB
|
Last Update: 2015-12-11
|
What's new in this version
Updated plugin so that the methods that it generates are marked as final.
Verifications for NetBeans versions
Plugin is not subject to any verification
Introduction
Automatically generates getter and setter methods for JavaFx Properties in a POJO. This NetBeans plugin will help to generate get/set methods for JavaFx properties that are contained within a POJO.
The standard get/set code generator creates the following get/set methods for a JavaFX property which is not ideal:
private StringProperty name;
public StringProperty getName() {
return name;
}
public void setName( StringProperty name ) {
this.name = name;
}
This plugin would create the following methods:
public final String getName() {
return name.get();
}
public final void setName( String value ) {
name.set(value);
}
public final StringProperty nameProperty() {
return name;
}
|
[ You have to be logged in to be able to comment. ]
User Comments
There are no comments yet.
|