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

javax.faces.component._UIMessages Maven / Gradle / Ivy

There is a newer version: 4.1.0
Show newest version
/*
 * 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();
  
  /**
   * Indicate this component should render already handled messages.
   * Default value is true
   * 
   * @since 2.0
   * @return
   */
  @JSFProperty
  (defaultValue = "true", tagExcluded=true)  
  public abstract boolean isRedisplay();

  /**
   * The ID of the component whose attached FacesMessage object (if present) 
   * should be diplayed by this component. It takes precedence over globalOnly.
   *
   * @since 2.0
   * @return  the new for value
   */
  @JSFProperty
  public abstract String getFor();  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy