Klasse InheritanceMap

java.lang.Object
org.apache.torque.map.InheritanceMap
Alle implementierten Schnittstellen:
Serializable

public class InheritanceMap extends Object implements Serializable
InheritanceMap is used to model OM inheritance classes.
Version:
$Id: InheritanceMap.java 1448414 2013-02-20 21:06:35Z tfischer $
Autor:
Greg Monroe
Siehe auch:
  • Konstruktordetails

    • InheritanceMap

      public InheritanceMap(ColumnMap column, String key, String className, String ancestor)
      Create an inheritance map object.
      Parameter:
      column - The column this inheritance map belongs to.
      key - Key to determine which subclass applies
      className - package.Name of sub class to use for record.
      ancestor - package.Name of class that className extends.
  • Methodendetails

    • getExtends

      public String getExtends()
      Returns the ancestor class for the class described by this InheritanceMap.
      Gibt zurück:
      the ancestor class for the class described by this InheritanceMap.
    • setExtends

      public void setExtends(String ancestor)
      Sets the ancestor class for the class described by this InheritanceMap.
      Parameter:
      ancestor - The ancestor for the class described by this InheritanceMap.
    • getClassName

      public String getClassName()
      Returns the class name for this InheritanceMap.
      Gibt zurück:
      The class name for this InheritanceMap.
    • setClassName

      public void setClassName(String className)
      Sets the class name for this InheritanceMap.
      Parameter:
      className - The className for this InheritanceMap.
    • getColumn

      public ColumnMap getColumn()
      Returns the column this inheritance map belongs to.
      Gibt zurück:
      the column this inheritance map belongs to.
    • setColumn

      public void setColumn(ColumnMap column)
      Sets the column this inheritance map belongs to.
      Parameter:
      column - the column this inheritance map belongs to.
    • getKey

      public String getKey()
      Returns the key by which this inheritanceMap is activated.
      Gibt zurück:
      The key by which this inheritanceMap is activated.
    • setKey

      public void setKey(String key)
      Sets the key by which this inheritanceMap is activated.
      Parameter:
      key - The key by which this inheritanceMap is activated.