![JAR search and dependency download from the Maven repository](/logo.png)
org.opendolphin.binding.JFXBindOfAble Maven / Gradle / Ivy
package org.opendolphin.binding;
import javafx.scene.Node;
import org.opendolphin.core.PresentationModel;
import org.opendolphin.core.Tag;
import org.opendolphin.core.client.ClientAttribute;
import org.opendolphin.core.client.ClientPresentationModel;
public class JFXBindOfAble {
public JFXBindToAble of(Node source) {
return new JFXBindToAble(source, sourcePropertyName);
}
public BindToAble of(PresentationModel source) {
return Binder.bind(sourcePropertyName, tag).of(source);
}
public BindClientToAble of(ClientPresentationModel source) {
return new BindClientToAble((ClientAttribute) source.findAttributeByPropertyNameAndTag(sourcePropertyName, tag));
}
public BindPojoToAble of(Object source) {
return Binder.bind(sourcePropertyName, tag).of(source);
}
public JFXBindOfAble(String sourcePropertyName, Tag tag) {
this.sourcePropertyName = sourcePropertyName;
this.tag = tag;
}
private final String sourcePropertyName;
private final Tag tag;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy