Package org.xwiki.extension.tree
Interface ExtensionNode<E extends Extension>
-
- Type Parameters:
E
- the type of extension (installed, core, etc.) the node contains
public interface ExtensionNode<E extends Extension>
A node in the extension tree.- Since:
- 11.10
- Version:
- $Id: 4814933b5b56429c2716034adfe06699601c3e81 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ExtensionNode<E>>
getChildren()
E
getExtension()
Namespace
getNamespace()
-
-
-
Method Detail
-
getNamespace
Namespace getNamespace()
- Returns:
- the namespace of the extension
-
getExtension
E getExtension()
- Returns:
- the extension
-
getChildren
List<ExtensionNode<E>> getChildren()
- Returns:
- the children of this node
-
-