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

org.apache.myfaces.config.impl.digester.elements.Attribute Maven / Gradle / Ivy

Go to download

The private implementation classes of the Apache MyFaces Core JSF-2.0 Implementation

There is a newer version: 4.1.0-RC2
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 org.apache.myfaces.config.impl.digester.elements;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;

/**
 * @author Martin Marinschek
 * @version $Revision: 1039554 $ $Date: 2010-11-26 15:32:39 -0500 (Fri, 26 Nov 2010) $
 *
     The "attribute" element represents a named, typed, value associated with
     the parent UIComponent via the generic attributes mechanism.

     Attribute names must be unique within the scope of the parent (or related)
     component.

     

 *          

*/ public class Attribute extends org.apache.myfaces.config.element.Attribute implements Serializable { private List _description; private List _displayName; private List _icon; private String _attributeName; private String _attributeClass; private String _defaultValue; private String _suggestedValue; private List _attributeExtension; public void addDescription(String value) { if(_description == null) { _description = new ArrayList(); } _description.add(value); } public Collection getDescriptions() { if(_description == null) { return Collections.emptyList(); } return _description; } public void addDisplayName(String value) { if(_displayName == null) { _displayName = new ArrayList(); } _displayName.add(value); } public Collection getDisplayNames() { if(_displayName == null) { return Collections.emptyList(); } return _displayName; } public void addIcon(String value) { if(_icon == null) { _icon = new ArrayList(); } _icon.add(value); } public Collection getIcons() { if(_icon == null) { return Collections.emptyList(); } return _icon; } public void setAttributeName(String attributeName) { _attributeName = attributeName; } public String getAttributeName() { return _attributeName; } public void setAttributeClass(String attributeClass) { _attributeClass = attributeClass; } public String getAttributeClass() { return _attributeClass; } public void setDefaultValue(String defaultValue) { _defaultValue = defaultValue; } public String getDefaultValue() { return _defaultValue; } public void setSuggestedValue(String suggestedValue) { _suggestedValue = suggestedValue; } public String getSuggestedValue() { return _suggestedValue; } public void addAttributeExtension(String attributeExtension) { if(_attributeExtension == null) { _attributeExtension = new ArrayList(); } _attributeExtension.add(attributeExtension); } public Collection getAttributeExtensions() { if(_attributeExtension == null) { return Collections.emptyList(); } return _attributeExtension; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy