com.dlsc.gemsfx.skins.SearchFieldSkinBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gemsfx Show documentation
Show all versions of gemsfx Show documentation
A collection of JavaFX controls and utils.
package com.dlsc.gemsfx.skins;
import com.dlsc.gemsfx.SearchField;
import javafx.scene.control.SkinBase;
public class SearchFieldSkinBase extends SkinBase {
public SearchFieldSkinBase(T control) {
super(control);
}
}