Package org.gephi.filters.spi
Interface FilterLibraryMask
-
public interface FilterLibraryMask
Classes that implements this interface can be registered to the filter library to programmatically enable or disable categories, i.e. filters container. That is useful for instance to disable filters working on undirected graphs if the current graph is directed.When registered, masks are asked whether the category is valid.
- Author:
- Mathieu Bastian
- See Also:
FilterLibrary
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Category
getCategory()
Returns theCategory
this masks is associated.boolean
isValid()
Returnstrue
if this masks' category is valid.
-
-
-
Method Detail
-
getCategory
Category getCategory()
Returns theCategory
this masks is associated.- Returns:
- the
Category
this filter is describing
-
isValid
boolean isValid()
Returnstrue
if this masks' category is valid.- Returns:
true
if the category is valid,false
otherwise
-
-