KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > uitags > tagutil > AttributeSupport


1 /**
2  * Jun 24, 2005
3  *
4  * Copyright 2004 uitags
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */

18 package net.sf.uitags.tagutil;
19
20 /**
21  * An interface that must be implemented by tags that support arbitrary
22  * HTML attributes.
23  *
24  * @author hgani
25  * @version $Id: AttributeSupport.java,v 1.1.1.1 2006/02/26 11:39:21 hgani Exp $
26  */

27 public interface AttributeSupport {
28   /**
29    * Adds an HTML attribute to the tag.
30    *
31    * @param name the attribute name
32    * @param value the attribute value
33    */

34   void addAttribute(String JavaDoc name, String JavaDoc value);
35 }
36
Popular Tags