Uses of Class
it.univr.wordautomata.model.Transition
Packages that use Transition
Package
Description
-
Uses of Transition in it.univr.wordautomata.backend
Methods in it.univr.wordautomata.backend that return types with arguments of type TransitionModifier and TypeMethodDescriptionstatic List
<com.brunomnsilva.smartgraph.graph.Edge<Transition, State>> Finds a path in the graph that matches the given wordstatic List
<com.brunomnsilva.smartgraph.graph.Edge<Transition, State>> PathFinder.getPath
(String word, com.brunomnsilva.smartgraph.graph.DigraphEdgeList<State, Transition> graph) Finds a path in the graph that matches the given word.static com.brunomnsilva.smartgraph.graph.DigraphEdgeList
<State, Transition> AutomataSaver.read()
Reads a DigraphEdgeList from a file.static com.brunomnsilva.smartgraph.graph.DigraphEdgeList
<State, Transition> Reads a DigraphEdgeList from a file.Method parameters in it.univr.wordautomata.backend with type arguments of type TransitionModifier and TypeMethodDescriptionstatic List
<com.brunomnsilva.smartgraph.graph.Edge<Transition, State>> PathFinder.getPath
(String word, com.brunomnsilva.smartgraph.graph.DigraphEdgeList<State, Transition> graph) Finds a path in the graph that matches the given word. -
Uses of Transition in it.univr.wordautomata.controller
Method parameters in it.univr.wordautomata.controller with type arguments of type TransitionModifier and TypeMethodDescriptionboolean
GraphPanel.queryRemoveEdge
(com.brunomnsilva.smartgraph.graph.Edge<Transition, State> e) Queries the removal of the edge.void
GraphPanel.removeEdge
(com.brunomnsilva.smartgraph.graph.Edge<Transition, State> e) Removes the edge.void
GraphPanel.showTransitionSideBar
(com.brunomnsilva.smartgraph.graphview.SmartGraphEdge<Transition, State> edge) Shows the transition side bar.Constructor parameters in it.univr.wordautomata.controller with type arguments of type TransitionModifierConstructorDescriptionTransitionModal
(atlantafx.base.controls.ModalPane modalPane, com.brunomnsilva.smartgraph.graphview.SmartGraphEdge<Transition, State> edge) Creates a new transition modal.TransitionModalBody
(atlantafx.base.layout.ModalBox dialog, com.brunomnsilva.smartgraph.graphview.SmartGraphEdge<Transition, State> edge) Creates a new transition modal body. -
Uses of Transition in it.univr.wordautomata.model
Methods in it.univr.wordautomata.model that return TransitionModifier and TypeMethodDescriptionTransitionWrapper.getTransition()
Returns the transition itself.Methods in it.univr.wordautomata.model that return types with arguments of type TransitionModifier and TypeMethodDescriptionListIterator
<com.brunomnsilva.smartgraph.graph.Edge<Transition, State>> Model.getEdgesToColor()
Returns an iterator to a list of edges to color.com.brunomnsilva.smartgraph.graph.DigraphEdgeList
<State, Transition> Model.getGraph()
Returns the current shown graph as a DigraphEdgeList.com.brunomnsilva.smartgraph.graph.DigraphEdgeList
<State, Transition> Model.initSampleGraph()
Initializes a sample graph (given in the assignment).Methods in it.univr.wordautomata.model with parameters of type TransitionModifier and TypeMethodDescriptionint
Transition.compareTo
(Transition other) Compares this transition to another transition based on their labels.Method parameters in it.univr.wordautomata.model with type arguments of type TransitionModifier and TypeMethodDescriptionvoid
Model.setEdgeToColor
(ListIterator<com.brunomnsilva.smartgraph.graph.Edge<Transition, State>> edgeToColor) Sets the iterator.void
Model.updateGraph
(com.brunomnsilva.smartgraph.graph.DigraphEdgeList<State, Transition> graph) Updates the graph by copying the given graph.Constructors in it.univr.wordautomata.model with parameters of type TransitionModifierConstructorDescriptionTransitionWrapper
(State startingState, State endingState, Transition transition) Constructs a new TransitionWrapper object.