All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.faces.ext.component.UIFocus Maven / Gradle / Ivy

Go to download

This is the master POM file for Sun's Implementation of the JSF 1.2 Specification.

There is a newer version: 1.2-20
Show newest version
/*
 * $Id: UIFocus.java,v 1.1.2.1 2008/04/10 16:56:49 driscoll Exp $ 
 */

package com.sun.faces.ext.component;

import javax.faces.component.UIComponentBase;

/**
 * Component to set a focus on a given field.
 * 
 * @author driscoll
 */
public class UIFocus extends UIComponentBase {
    
    private static final String FAMILY = "FocusFamily";
            
    @Override
    public String getFamily() {
        return FAMILY;
    }
}  




© 2015 - 2024 Weber Informatics LLC | Privacy Policy