org.apache.ddlutils.alteration
Class AddPrimaryKeyChange
java.lang.Object
org.apache.ddlutils.alteration.TableChangeImplBase
org.apache.ddlutils.alteration.AddPrimaryKeyChange
- All Implemented Interfaces:
- ModelChange, TableChange
- public class AddPrimaryKeyChange
- extends TableChangeImplBase
Represents the addition of a primary key to a table which does not have one.
- Version:
- $Revision: $
Method Summary |
void |
apply(Database database,
boolean caseSensitive)
Applies this change to the given database. |
Column[] |
getPrimaryKeyColumns()
Returns the primary key columns making up the new primary key. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
AddPrimaryKeyChange
public AddPrimaryKeyChange(Table table,
Column[] primaryKeyColumns)
- Creates a new change object.
- Parameters:
table
- The table to add the primary key toprimaryKeyColumns
- The columns making up the primary key
getPrimaryKeyColumns
public Column[] getPrimaryKeyColumns()
- Returns the primary key columns making up the new primary key.
- Returns:
- The primary key columns
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.