View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   /***
4    * Prototype to create {@link GB_NodeWriter}.
5    *
6    * @author Grégory Borelli
7    * @version 2003/11/19 - 16:16:59 - gen 7.12
8    */
9   public interface GB_NodeWriterPrototype
10  {
11  
12      /***
13       * Build a new {@link GB_NodeWriter}.
14       *
15       * @return GB_NodeWriter
16       */
17      GB_NodeWriter newNodeWriter();
18  
19  }