Package jcckit.data
Interface DataElement
public interface DataElement
Interface for all kinds of data elements.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the container containing this element.void
setContainer
(DataContainer container) Sets the container which should contain this element.
-
Method Details
-
getContainer
DataContainer getContainer()Returns the container containing this element.- Returns:
- null if this element is not an element of a container.
-
setContainer
Sets the container which should contain this element. This method should not used outsideDataContainer
..- Parameters:
container
- Container which should contains this element. Cann be null if this element does not belong to a container.
-