Interface Node<N extends Node>
-
- Type Parameters:
N- a node
- All Superinterfaces:
Identifiable
- All Known Subinterfaces:
Collection,ContentNode<N>,Webpage<W>
- All Known Implementing Classes:
CollectionImpl,ContentNodeImpl,NodeImpl,WebpageImpl
public interface Node<N extends Node> extends Identifiable
Node is used to structure cultural content hierarchically.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default voidaddChild(N child)List<N>getChildren()NgetParent()voidsetChildren(List<N> children)voidsetParent(N parent)-
Methods inherited from interface de.digitalcollections.model.api.identifiable.Identifiable
addIdentifier, getCreated, getDescription, getIdentifierByNamespace, getIdentifiers, getLabel, getLastModified, getPreviewImage, getType, getUuid, setCreated, setDescription, setIdentifiers, setLabel, setLastModified, setPreviewImage, setType, setUuid
-
-