All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class org.xmlmiddleware.xmldbms.maps.RelatedMapBase

java.lang.Object
   |
   +----org.xmlmiddleware.xmldbms.maps.MapBase
           |
           +----org.xmlmiddleware.xmldbms.maps.RelatedMapBase

public class RelatedMapBase
extends MapBase
Base class for RelatedClassMap and RelatedClassTableMap; not for general use.

RelatedMapBase provides accessors and mutators for element type name, link information, and order information. It is the base class for RelatedClassMap and RelatedClassTableMap.

RelatedMapBase is never used directly. It is only used through RelatedClassMap and RelatedClassTableMap.

Version:
2.0
Author:
Ronald Bourret, 2001
See Also:
RelatedClassMap, RelatedClassTableMap

Method Index

 o getElementTypeName()
Get the name of the related element type.
 o getLinkInfo()
Get the information used to link the tables of the parent class and the related class.
 o getOrderInfo()
Get the information used to order the child element in its parent.
 o setLinkInfo(LinkInfo)
Set the information used to link the tables of the parent class and the related class.
 o setOrderInfo(OrderInfo)
Set the information used to order the child element in its parent.

Methods

 o getElementTypeName
 public final XMLName getElementTypeName()
Get the name of the related element type.

Returns:
The name of the related element type.
 o getLinkInfo
 public final LinkInfo getLinkInfo()
Get the information used to link the tables of the parent class and the related class.

Returns:
The LinkInfo.
 o setLinkInfo
 public void setLinkInfo(LinkInfo linkInfo)
Set the information used to link the tables of the parent class and the related class.

Parameters:
linkInfo - The LinkInfo.
 o getOrderInfo
 public final OrderInfo getOrderInfo()
Get the information used to order the child element in its parent.

Returns:
The order information. Null if the child element is not ordered.
 o setOrderInfo
 public void setOrderInfo(OrderInfo orderInfo)
Set the information used to order the child element in its parent.

Parameters:
orderInfo - The order information. Null if the child element is not ordered.

All Packages  Class Hierarchy  This Package  Previous  Next  Index