| org.openrdf.sail.SailChangedEvent
All known Subclasses: org.openrdf.sail.helpers.DefaultSailChangedEvent,
SailChangedEvent | public interface SailChangedEvent (Code) | | Event object that is send to
SailChangedListener s to indicate that
the contents of the Sail that sent the event have changed.
|
Method Summary | |
public Sail | getSail() The Sail object that sent this event. | public boolean | statementsAdded() Indicates if statements were added to the Sail. | public boolean | statementsRemoved() Indicates if statements were removed from the Sail. |
getSail | public Sail getSail()(Code) | | The Sail object that sent this event.
|
statementsAdded | public boolean statementsAdded()(Code) | | Indicates if statements were added to the Sail.
true if statements were added during a transaction,false otherwise. |
statementsRemoved | public boolean statementsRemoved()(Code) | | Indicates if statements were removed from the Sail.
true if statements were removed during a transaction,false otherwise. |
|
|