Class Inheritance
- java.lang.Object
-
- org.apache.torque.templates.model.Inheritance
-
public class Inheritance extends Object
The model of the inheritance tag in a Torque schema file.- Version:
- $Id: $
-
-
Field Summary
Fields Modifier and Type Field Description String
_class
The class name for the object that will inherit the record values.String
_extends
The class that the inheritor class will extend.String
key
A value found in the column marked as the inheritance key column.Column
parent
The column to which this inheritance definition belongs to.
-
Constructor Summary
Constructors Constructor Description Inheritance()
-
-
-
Field Detail
-
parent
public Column parent
The column to which this inheritance definition belongs to.
-
key
public String key
A value found in the column marked as the inheritance key column.
-
_class
public String _class
The class name for the object that will inherit the record values.
-
_extends
public String _extends
The class that the inheritor class will extend.
-
-