Package org.gephi.graph.api
Interface TableDiff
-
public interface TableDiff
Interface to retrieve added, removed and modified columns from the table.This interface is associated with a
TableObserver
and 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.
-