Package org.databene.mad4db.cmd

Examples of org.databene.mad4db.cmd.SequenceDeletion


    if (dbObject instanceof DBConstraint)
      return (Deletion<E>) new ConstraintDeletion((DBConstraint) dbObject);
    else if (dbObject instanceof DBIndex)
      return (Deletion<E>) new IndexDeletion((DBIndex) dbObject);
    else if (dbObject instanceof DBSequence)
      return (Deletion<E>) new SequenceDeletion((DBSequence) dbObject);
    else
      return new Deletion<E>(dbObject);
  }
View Full Code Here


  public StructuralChange<DBSequence> creation(DBSequence sequence) {
    return new SequenceCreation(sequence);
  }

  public StructuralChange<DBSequence> deletion(DBSequence sequence) {
    return new SequenceDeletion(sequence);
  }
View Full Code Here

TOP

Related Classes of org.databene.mad4db.cmd.SequenceDeletion

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.