Package implementation.gui.controller
Class NeighborsController
- java.lang.Object
-
- implementation.gui.controller.NeighborsController
-
- All Implemented Interfaces:
javafx.fxml.Initializable
public class NeighborsController extends java.lang.Object implements javafx.fxml.Initializable
Main controller- Author:
- nk-fouque
-
-
Field Summary
Fields Modifier and Type Field Description CollectionsModel
colMd
-
Constructor Summary
Constructors Constructor Description NeighborsController()
-
Method Summary
Modifier and Type Method Description javafx.scene.layout.BorderPane
bNodeVisual(java.lang.String id)
javafx.scene.layout.BorderPane
candidateVisual(java.lang.String uri)
static void
click(javafx.scene.control.Button button)
void
cutActivate()
Changes everything that needs to be changed when the algorithm stopper is activatedvoid
cutDeactivate()
Changes everything that needs to be changed when the algorithm stopper is deactivatedvoid
initialize(java.net.URL url, java.util.ResourceBundle resourceBundle)
void
safePrompt(java.util.List<org.apache.jena.rdf.model.Resource> subjectsList)
Prompts candidates for partitioning respecting the safe mode limitprotected void
search(java.lang.String filter)
-
-
-
Field Detail
-
colMd
public CollectionsModel colMd
-
-
Method Detail
-
initialize
public void initialize(java.net.URL url, java.util.ResourceBundle resourceBundle)
- Specified by:
initialize
in interfacejavafx.fxml.Initializable
-
search
protected void search(java.lang.String filter)
-
candidateVisual
public javafx.scene.layout.BorderPane candidateVisual(java.lang.String uri)
- Parameters:
uri
- The uri of the Node we want to represent in the CandidateVisual- Returns:
- A Border pane with the uri on the left and a button on the right
-
bNodeVisual
public javafx.scene.layout.BorderPane bNodeVisual(java.lang.String id)
- Parameters:
id
- The AnonID of the Node we want to represent in the CandidateVisual- Returns:
- A Border pane with the uri on the left and a button on the right
-
cutActivate
public void cutActivate()
Changes everything that needs to be changed when the algorithm stopper is activated
-
cutDeactivate
public void cutDeactivate()
Changes everything that needs to be changed when the algorithm stopper is deactivated
-
safePrompt
public void safePrompt(java.util.List<org.apache.jena.rdf.model.Resource> subjectsList)
Prompts candidates for partitioning respecting the safe mode limit- Parameters:
subjectsList
-
-
click
public static void click(javafx.scene.control.Button button)
-
-