blob: 3295cdd6566c10cd3ed2f5ae2f648683e65e473c [file] [log] [blame]
/*
* 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 javax.faces.component;
import org.apache.myfaces.buildtools.maven2.plugin.builder.annotation.JSFComponent;
import org.apache.myfaces.buildtools.maven2.plugin.builder.annotation.JSFProperty;
/**
*
* UIMessage is the base component class for components
* that display a multiple messages on behalf of a component.
*/
@JSFComponent
(clazz = "javax.faces.component.UIMessages",template=true,
defaultRendererType = "javax.faces.Messages"
)
abstract class _UIMessages extends UIComponentBase
{
static public final String COMPONENT_FAMILY =
"javax.faces.Messages";
static public final String COMPONENT_TYPE =
"javax.faces.Messages";
/**
* Specifies whether only messages (FacesMessage objects) not associated with a
* specific component should be displayed, ie whether messages should be ignored
* if they are attached to a particular component. Defaults to false.
*
* @return the new globalOnly value
*/
@JSFProperty
(defaultValue = "false")
public abstract boolean isGlobalOnly();
/**
* Specifies whether the detailed information from the message should be shown.
* Default to false.
*
* @return the new showDetail value
*/
@JSFProperty
(defaultValue = "false")
public abstract boolean isShowDetail();
/**
* Specifies whether the summary information from the message should be shown.
* Defaults to true.
*
* @return the new showSummary value
*/
@JSFProperty
(defaultValue = "true")
public abstract boolean isShowSummary();
}