1 /*2 * Copyright (c) 2001, 2002 The XDoclet team3 * All rights reserved.4 */5 package xdoclet.loader;6 7 /**8 * @author Aslak Hellesøy9 * @created 7. april 200210 */11 public class TagHandlerDefinition12 {13 public final String namespace;14 public final String className;15 16 /**17 * Describe what the TagHandlerDefinition constructor does18 *19 * @param namespace Describe what the parameter does20 * @param className Describe what the parameter does21 */22 public TagHandlerDefinition(String namespace, String className)23 {24 this.namespace = namespace;25 this.className = className;26 }27 }28