23242526272829
* @author Antoine Mischler <antoine@dooapp.com> */ public class ReadOnlyFXForm<T> extends FXForm<T> { public ReadOnlyFXForm() { super(new ReadOnlyFactory()); }
27282930313233
public ReadOnlyFXForm() { super(new ReadOnlyFactory()); } public ReadOnlyFXForm(FormatProvider formatProvider) { super(new ReadOnlyFactory(formatProvider)); }
31323334353637
public ReadOnlyFXForm(FormatProvider formatProvider) { super(new ReadOnlyFactory(formatProvider)); } public ReadOnlyFXForm(T source) { super(source, new ReadOnlyFactory()); }
35363738394041
public ReadOnlyFXForm(T source) { super(source, new ReadOnlyFactory()); } public ReadOnlyFXForm(T source, FormatProvider formatProvider) { super(source, new ReadOnlyFactory(formatProvider)); }