KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > xdoclet > loader > TagHandlerDefinition


1 /*
2  * Copyright (c) 2001, 2002 The XDoclet team
3  * All rights reserved.
4  */

5 package xdoclet.loader;
6
7 /**
8  * @author Aslak Hellesøy
9  * @created 7. april 2002
10  */

11 public class TagHandlerDefinition
12 {
13     public final String JavaDoc namespace;
14     public final String JavaDoc className;
15
16     /**
17      * Describe what the TagHandlerDefinition constructor does
18      *
19      * @param namespace Describe what the parameter does
20      * @param className Describe what the parameter does
21      */

22     public TagHandlerDefinition(String JavaDoc namespace, String JavaDoc className)
23     {
24         this.namespace = namespace;
25         this.className = className;
26     }
27 }
28
Popular Tags