org.eclipse.jpt.db
Class ConnectionAdapter

java.lang.Object
  extended by org.eclipse.jpt.db.ConnectionAdapter
All Implemented Interfaces:
ConnectionListener

public class ConnectionAdapter
extends java.lang.Object
implements ConnectionListener

An empty implementation of ConnectionListener. Provisional API: This class is part of an interim API that is still under development and expected to change significantly before reaching stability. It is available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.


Constructor Summary
ConnectionAdapter()
           
 
Method Summary
 void aboutToClose(ConnectionProfile profile)
           
 void catalogChanged(ConnectionProfile profile, Catalog catalog)
           
 void closed(ConnectionProfile profile)
           
 void columnChanged(ConnectionProfile profile, Column column)
           
 void databaseChanged(ConnectionProfile profile, Database database)
           
 void foreignKeyChanged(ConnectionProfile profile, ForeignKey foreignKey)
           
 void modified(ConnectionProfile profile)
           
 boolean okToClose(ConnectionProfile profile)
           
 void opened(ConnectionProfile profile)
           
 void schemaChanged(ConnectionProfile profile, Schema schema)
           
 void sequenceChanged(ConnectionProfile profile, Sequence sequence)
           
 void tableChanged(ConnectionProfile profile, Table table)
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ConnectionAdapter

public ConnectionAdapter()
Method Detail

aboutToClose

public void aboutToClose(ConnectionProfile profile)
Specified by:
aboutToClose in interface ConnectionListener

closed

public void closed(ConnectionProfile profile)
Specified by:
closed in interface ConnectionListener

databaseChanged

public void databaseChanged(ConnectionProfile profile,
                            Database database)
Specified by:
databaseChanged in interface ConnectionListener

modified

public void modified(ConnectionProfile profile)
Specified by:
modified in interface ConnectionListener

okToClose

public boolean okToClose(ConnectionProfile profile)
Specified by:
okToClose in interface ConnectionListener

opened

public void opened(ConnectionProfile profile)
Specified by:
opened in interface ConnectionListener

catalogChanged

public void catalogChanged(ConnectionProfile profile,
                           Catalog catalog)
Specified by:
catalogChanged in interface ConnectionListener

schemaChanged

public void schemaChanged(ConnectionProfile profile,
                          Schema schema)
Specified by:
schemaChanged in interface ConnectionListener

sequenceChanged

public void sequenceChanged(ConnectionProfile profile,
                            Sequence sequence)
Specified by:
sequenceChanged in interface ConnectionListener

tableChanged

public void tableChanged(ConnectionProfile profile,
                         Table table)
Specified by:
tableChanged in interface ConnectionListener

columnChanged

public void columnChanged(ConnectionProfile profile,
                          Column column)
Specified by:
columnChanged in interface ConnectionListener

foreignKeyChanged

public void foreignKeyChanged(ConnectionProfile profile,
                              ForeignKey foreignKey)
Specified by:
foreignKeyChanged in interface ConnectionListener