Package org.gephi.graph.api
Interface TableDiff
-
public interface TableDiffInterface to retrieve added, removed and modified columns from the table.This interface is associated with a
TableObserverand provides an easy access to the columns added or removed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Column>getAddedColumns()Gets all added columns.List<Column>getModifiedColumns()Returns all columns that have been modified.List<Column>getRemovedColumns()Gets all removed columns.
-