KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sapia > archie > impl > AttributeNodeFactory


1 package org.sapia.archie.impl;
2
3 import java.util.HashMap JavaDoc;
4
5 import org.sapia.archie.Node;
6 import org.sapia.archie.NodeFactory;
7 import org.sapia.archie.ProcessingException;
8
9 /**
10  * @author Yanick Duchesne
11  * <dl>
12  * <dt><b>Copyright:</b><dd>Copyright &#169; 2002-2003 <a HREF="http://www.sapia-oss.org">Sapia Open Source Software</a>. All Rights Reserved.</dd></dt>
13  * <dt><b>License:</b><dd>Read the license.txt file of the jar or visit the
14  * <a HREF="http://www.sapia-oss.org/license.html">license page</a> at the Sapia OSS web site</dd></dt>
15  * </dl>
16  */

17 public class AttributeNodeFactory implements NodeFactory{
18   
19   /**
20    * @see org.sapia.archie.NodeFactory#newNode()
21    */

22   public Node newNode() throws ProcessingException {
23     return new AttributeNode(new HashMap JavaDoc(), new HashMap JavaDoc(), this);
24   }
25   
26   
27 }
28
Popular Tags