org.apache.myfaces.trinidad.component.UIXSelectBoolean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trinidad-api Show documentation
Show all versions of trinidad-api Show documentation
Public API for the Apache MyFaces Trinidad project
The newest version!
// WARNING: This file was automatically generated. Do not edit it directly,
// or you will lose your changes.
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.myfaces.trinidad.component;
import org.apache.myfaces.trinidad.bean.FacesBean;
import org.apache.myfaces.trinidad.bean.PropertyKey;
import org.apache.myfaces.trinidad.util.ComponentUtils;
/**
*
* Events:
*
*
* Type
* Phases
* Description
*
*
* javax.faces.event.ValueChangeEvent
* Process
Validations
Apply
Request
Values
* The valueChange event is delivered when the value
attribute is changed.
*
*
* org.apache.myfaces.trinidad.event.AttributeChangeEvent
* Invoke
Application
Apply
Request
Values
* Event delivered to describe an attribute change. Attribute change events are not delivered for any programmatic change to a property. They are only delivered when a renderer changes a property without the application's specific request. An example of an attribute change event might include the width of a column that supported client-side resizing.
*
*
*/
public class UIXSelectBoolean extends UIXEditableValue
{
static public final FacesBean.Type TYPE = new FacesBean.Type(
UIXEditableValue.TYPE);
static public final PropertyKey SELECTED_KEY =
TYPE.registerAlias(VALUE_KEY, "selected");
static public final String COMPONENT_FAMILY =
"org.apache.myfaces.trinidad.SelectBoolean";
static public final String COMPONENT_TYPE =
"org.apache.myfaces.trinidad.SelectBoolean";
/**
* Construct an instance of the UIXSelectBoolean.
*/
public UIXSelectBoolean()
{
super("org.apache.myfaces.trinidad.SelectBoolean");
}
/**
* Gets whether or not the component is
* currently selected. This is a typesafe alias for the "value"
* attribute. Note that "selected" and "value" attributes should not be used at the same time to avoid conflict.
*
* @return the new selected value
*/
final public boolean isSelected()
{
return ComponentUtils.resolveBoolean(getProperty(SELECTED_KEY), false);
}
/**
* Sets whether or not the component is
* currently selected. This is a typesafe alias for the "value"
* attribute. Note that "selected" and "value" attributes should not be used at the same time to avoid conflict.
*
* @param selected the new selected value
*/
final public void setSelected(boolean selected)
{
setProperty(SELECTED_KEY, selected ? Boolean.TRUE : Boolean.FALSE);
}
@Override
public String getFamily()
{
return COMPONENT_FAMILY;
}
@Override
protected FacesBean.Type getBeanType()
{
return TYPE;
}
/**
* Construct an instance of the UIXSelectBoolean.
*/
protected UIXSelectBoolean(
String rendererType
)
{
super(rendererType);
}
static
{
TYPE.lockAndRegister("org.apache.myfaces.trinidad.SelectBoolean","org.apache.myfaces.trinidad.SelectBoolean");
}
}