Package org.gephi.datalab.api
Class SearchReplaceController.SearchResult
- java.lang.Object
-
- org.gephi.datalab.api.SearchReplaceController.SearchResult
-
- Enclosing interface:
- SearchReplaceController
public static class SearchReplaceController.SearchResult extends Object
Class that wraps the result of a search contaning the search options used for this result and the node or edge, row, column and start-end index of the value where ocurrence was found.
-
-
Constructor Summary
Constructors Constructor Description SearchResult(SearchReplaceController.SearchOptions searchOptions, Node foundNode, Edge foundEdge, int foundRowIndex, int foundColumnIndex, int start, int end)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetEnd()intgetFoundColumnIndex()EdgegetFoundEdge()NodegetFoundNode()intgetFoundRowIndex()SearchReplaceController.SearchOptionsgetSearchOptions()intgetStart()voidsetEnd(int end)voidsetFoundColumnIndex(int foundColumnIndex)voidsetFoundEdge(Edge foundEdge)voidsetFoundNode(Node foundNode)voidsetFoundRowIndex(int foundRowIndex)voidsetSearchOptions(SearchReplaceController.SearchOptions searchOptions)voidsetStart(int start)
-
-
-
Constructor Detail
-
SearchResult
public SearchResult(SearchReplaceController.SearchOptions searchOptions, Node foundNode, Edge foundEdge, int foundRowIndex, int foundColumnIndex, int start, int end)
-
-
Method Detail
-
getEnd
public int getEnd()
-
setEnd
public void setEnd(int end)
-
getFoundColumnIndex
public int getFoundColumnIndex()
-
setFoundColumnIndex
public void setFoundColumnIndex(int foundColumnIndex)
-
getFoundEdge
public Edge getFoundEdge()
-
setFoundEdge
public void setFoundEdge(Edge foundEdge)
-
getFoundNode
public Node getFoundNode()
-
setFoundNode
public void setFoundNode(Node foundNode)
-
getFoundRowIndex
public int getFoundRowIndex()
-
setFoundRowIndex
public void setFoundRowIndex(int foundRowIndex)
-
getSearchOptions
public SearchReplaceController.SearchOptions getSearchOptions()
-
setSearchOptions
public void setSearchOptions(SearchReplaceController.SearchOptions searchOptions)
-
getStart
public int getStart()
-
setStart
public void setStart(int start)
-
-