package net.xoetrope.xui;
import java.util.Hashtable;
/**
* An interface that allows the component builders to set the attributes of a
* component without knowing the individual accessor methods.
*
* <p>Copyright (c) Xoetrope Ltd., 2002-2003</p>
* License: see license.txt
* $Revision: 1.13 $
*/
public interface XAttributedComponent
{
/**
* Set one or more attributes of the component.
* @param attribName the name of the attribute
* @param attribValue the value of the attribute
*/
public void setAttribute( String attribName, String attribValue );
}
|