io.mosip.registration.util.common.ChangeActionHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of registration-client Show documentation
Show all versions of registration-client Show documentation
Maven project of MOSIP Registration UI
package io.mosip.registration.util.common;
import javafx.scene.Node;
import javafx.scene.layout.Pane;
public abstract class ChangeActionHandler {
public static final String HASH = "#";
public abstract String getActionClassName();
public abstract void handle(Pane parentPane, String source, String[] args);
public boolean isValidNode(Node node) {
return (node != null && node.isVisible()) ? true : false;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy