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
-
getElementTypeName()
- Get the name of the related element type.
-
getLinkInfo()
- Get the information used to link the tables of the parent class and
the related class.
-
getOrderInfo()
- Get the information used to order the child element in its parent.
-
setLinkInfo(LinkInfo)
- Set the information used to link the tables of the parent class and
the related class.
-
setOrderInfo(OrderInfo)
- Set the information used to order the child element in its parent.
getElementTypeName
public final XMLName getElementTypeName()
- Get the name of the related element type.
- Returns:
- The name of the related element type.
getLinkInfo
public final LinkInfo getLinkInfo()
- Get the information used to link the tables of the parent class and
the related class.
- Returns:
- The LinkInfo.
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.
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.
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