KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > mlw > vlh > web > tag > support > Attributeable


1 /**
2  * Copyright (c) 2003 held jointly by the individual authors.
3  *
4  * This library is free software; you can redistribute it and/or modify it under
5  * the terms of the GNU Lesser General Public License as published by the Free
6  * Software Foundation; either version 2.1 of the License, or (at your option)
7  * any later version.
8  *
9  * This library is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; with out even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
12  * for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public License
15  * along with this library; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17  * > http://www.gnu.org/copyleft/lesser.html >
18  * http://www.opensource.org/licenses/lgpl-license.php
19  */

20 package net.mlw.vlh.web.tag.support;
21
22 /**
23  * Defines an tag that has attributes that can be set. Such as a tr tag has
24  * align and onclick attributes.
25  *
26  * @author Matthew L. Wilson, Andrej Zachar
27  * @version $Revision: 1.3 $ $Date: 2005/03/16 11:07:42 $
28  */

29 public interface Attributeable
30 {
31     /**
32      * Sets the attrabute on the Attributeable object.
33      *
34      * @param name The name of the attribute.
35      * @param value The value of the attribute.
36      */

37     void setCellAttribute(String JavaDoc name, String JavaDoc value);
38 }
39
Popular Tags