All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.mosip.registration.util.common.ChangeActionHandler Maven / Gradle / Ivy

There is a newer version: 1.2.0.2
Show newest version
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