com.vhosting.netconf.frame
Interface Node

All Known Implementing Classes:
Container, ContainerReference, List, ListReference

public interface Node

This interface defines the methods that are attributed to an element of Node type that is part of a structure PRC. For an element of Node type is possible to combine primitive elements such as leaf, leaf list or Anyxml.

Version:
1.00, 02/11/2010
Author:
Giuseppe Palmeri

Method Summary
 Anyxml linkAnyxml(Anyxml anyxml)
          Link an Anyxml to this node as part of the RPC structure.
 Leaf linkLeaf(Leaf l)
          Link a leaf to this node as part of the RPC structure.
 LeafList linkLeafList(LeafList l)
          Link a leaf list to this node as part of the RPC structure.
 

Method Detail

linkLeaf

Leaf linkLeaf(Leaf l)
Link a leaf to this node as part of the RPC structure.

Parameters:
l - The leaf element to link.
Returns:
The linked leaf element.

linkLeafList

LeafList linkLeafList(LeafList l)
Link a leaf list to this node as part of the RPC structure.

Parameters:
l - The leaf list element to link.
Returns:
The linked leaf list element.

linkAnyxml

Anyxml linkAnyxml(Anyxml anyxml)
Link an Anyxml to this node as part of the RPC structure.

Parameters:
anyxml - The Anyxml element to link.
Returns:
The linked Anyxml element.