org.apache.ddlutils.alteration
Class RemoveForeignKeyChange
java.lang.Object
org.apache.ddlutils.alteration.TableChangeImplBase
org.apache.ddlutils.alteration.RemoveForeignKeyChange
- All Implemented Interfaces:
- ModelChange, TableChange
- public class RemoveForeignKeyChange
- extends TableChangeImplBase
Represents the removal of a foreign key from a table. Note that for
simplicity and because it fits the model, this change actually implements
table change for the table that the foreign key originates.
- Version:
- $Revision: $
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
RemoveForeignKeyChange
public RemoveForeignKeyChange(Table table,
ForeignKey foreignKey)
- Creates a new change object.
- Parameters:
table
- The table to remove the foreign key fromforeignKey
- The foreign key
getForeignKey
public ForeignKey getForeignKey()
- Returns the foreign key to be removed.
- Returns:
- The foreign key
apply
public void apply(Database database,
boolean caseSensitive)
- Applies this change to the given database.
- Parameters:
database
- The databasecaseSensitive
- Whether the case of names matters
Copyright © 2005-2006 Apache Software Foundation. All Rights Reserved.