* User: Antoine Mischler <antoine@dooapp.com> Date: 26/08/11 Time: 11:50
*/
public class AutoHidableLabelFactory implements Callback<Void, FXFormNode> {
public FXFormNode call(Void aVoid) {
final Label label = new AutoHidableLabel();
label.setWrapText(true);
return new FXFormNodeWrapper(label, label.textProperty());
}