jfxtras.labs.scene.control.edittable.triple.TripleConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jfxtras-labs Show documentation
Show all versions of jfxtras-labs Show documentation
Experimental components for JavaFX 2
package jfxtras.labs.scene.control.edittable.triple;
public interface TripleConverter
{
Triple fromBeanElement(T beanElement);
T toBeanElement(Triple triple);
}