blob: 9b6c04d50bdc517f120e6475d63eebf6a1fc9b0e [file] [log] [blame]
package testpkg;
/**
* An interface that defines component properties.
* <p>
* This is an interface component.
*
* @JSFComponent
* type="iface"
* family="iface"
* defaultRendererType="BaseRenderer"
*/
public interface ComponentInterface
{
/**
* The ifaceProp property.
* <p>
* Some dummy ifaceProp documentation.
*
* @JSFProperty
*/
String getIfaceProp();
void setIfaceProp(String val);
}