blob: 49114e051deee9cb628ee8f58b3d885143e375f2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2011 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0, which accompanies this distribution
* and is available at http://www.eclipse.org/legal/epl-v10.html.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.jpa.db.internal;
import org.eclipse.datatools.connectivity.sqm.core.rte.ICatalogObject;
import org.eclipse.jpt.jpa.db.Sequence;
/**
* Wrap a DTP Sequence
*/
final class DTPSequenceWrapper
extends DTPDatabaseObjectWrapper<DTPSchemaWrapper>
implements Sequence
{
/** the wrapped DTP sequence */
private final org.eclipse.datatools.modelbase.sql.schema.Sequence dtpSequence;
// ********** constructor **********
DTPSequenceWrapper(DTPSchemaWrapper schema, org.eclipse.datatools.modelbase.sql.schema.Sequence dtpSequence) {
super(schema);
this.dtpSequence = dtpSequence;
}
// ********** DTPDatabaseObjectWrapper implementation **********
@Override
ICatalogObject getCatalogObject() {
return (ICatalogObject) this.dtpSequence;
}
@Override
synchronized void catalogObjectChanged() {
super.catalogObjectChanged();
this.getConnectionProfile().sequenceChanged(this);
}
// ********** Sequence implementation **********
public String getName() {
return this.dtpSequence.getName();
}
public DTPSchemaWrapper getSchema() {
return this.parent;
}
// ********** internal methods **********
boolean wraps(org.eclipse.datatools.modelbase.sql.schema.Sequence sequence) {
return this.dtpSequence == sequence;
}
@Override
void clear() {
// no state to clear
}
}