|
|
||
Manfred Riem's BlogTemperature SPOT - Part 4Posted by mriem on August 24, 2007 at 08:00 PM | Comments (0)The code below is the component part for the Temperature JSF library.
package com.manorrock.jsf.sunspot.temperature;
import javax.faces.component.UIComponentBase;
/**
* A JSF SunSPOT temperature component.
*
* @author Manfred Riem (mriem@manorrock.org)
*/
public class TemperatureComponent extends UIComponentBase {
/**
* Stores the family.
*/
private static String FAMILY = "com.manorrock.jsf.sunspot.temperature.TemperatureFamily";
/**
* Get the family.
*/
public String getFamily() {
return FAMILY;
}
}
The next entry will be about the TemperatureTag.
Bookmark blog post: CommentsComments are listed in date ascending order (oldest first) | Post Comment | ||
|
|