![JAR search and dependency download from the Maven repository](/logo.png)
org.datafx.controller.flow.ViewHistoryDefinition Maven / Gradle / Ivy
package org.datafx.controller.flow;
import javafx.scene.Node;
public class ViewHistoryDefinition {
private Class controllerClass;
private String viewTitle;
private Node viewGraphics;
public ViewHistoryDefinition(Class controllerClass, String viewTitle, Node viewGraphics) {
this.controllerClass = controllerClass;
this.viewTitle = viewTitle;
this.viewGraphics = viewGraphics;
}
public Class getControllerClass() {
return controllerClass;
}
public String getViewTitle() {
return viewTitle;
}
public Node getViewGraphics() {
return viewGraphics;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy