All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cdc.util.rdb.RdbProcedureColumn Maven / Gradle / Ivy

package cdc.util.rdb;

/**
 * Procedure column description.
 * 

* Its parent is a Procedure.
* Its name must be unique. (? A duplicate has been found in PostgreSQL)
* Its is a leaf. * * @author Damien Carbonne * */ public final class RdbProcedureColumn extends RdbElement { // TODO attributes protected RdbProcedureColumn(String name, RdbProcedure parent) { super(name, parent, false); } @Override public RdbElementKind getKind() { return RdbElementKind.PROCEDURE_COLUMN; } @Override public RdbProcedure getParent() { return (RdbProcedure) super.getParent(); } public RdbProcedure getProcedure() { return getParent(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy