blob: e4716c4cc4eeb92621807d3e66cfab4539a3f93a [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 org.apache.myfaces.config.impl.element;
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$ $Date$
*/
public class AttributeImpl extends org.apache.myfaces.config.element.Attribute implements Serializable
{
private List<String> description;
private List<String> displayName;
private List<String> icon;
private String attributeName;
private String attributeClass;
private String defaultValue;
private String suggestedValue;
private List<String> attributeExtensions;
public void addDescription(String value)
{
if (description == null)
{
description = new ArrayList<>(1);
}
description.add(value);
}
@Override
public Collection<? extends String> getDescriptions()
{
if (description == null)
{
return Collections.emptyList();
}
return description;
}
public void addDisplayName(String value)
{
if (displayName == null)
{
displayName = new ArrayList<>(1);
}
displayName.add(value);
}
@Override
public Collection<? extends String> getDisplayNames()
{
if (displayName == null)
{
return Collections.emptyList();
}
return displayName;
}
public void addIcon(String value)
{
if (icon == null)
{
icon = new ArrayList<>(1);
}
icon.add(value);
}
@Override
public Collection<? extends String> getIcons()
{
if (icon == null)
{
return Collections.emptyList();
}
return icon;
}
public void setAttributeName(String attributeName)
{
this.attributeName = attributeName;
}
@Override
public String getAttributeName()
{
return attributeName;
}
public void setAttributeClass(String attributeClass)
{
this.attributeClass = attributeClass;
}
@Override
public String getAttributeClass()
{
return attributeClass;
}
public void setDefaultValue(String defaultValue)
{
this.defaultValue = defaultValue;
}
@Override
public String getDefaultValue()
{
return defaultValue;
}
public void setSuggestedValue(String suggestedValue)
{
this.suggestedValue = suggestedValue;
}
@Override
public String getSuggestedValue()
{
return suggestedValue;
}
public void addAttributeExtension(String attributeExtension)
{
if (attributeExtension == null)
{
attributeExtensions = new ArrayList<>(1);
}
attributeExtensions.add(attributeExtension);
}
@Override
public Collection<? extends String> getAttributeExtensions()
{
if (attributeExtensions == null)
{
return Collections.emptyList();
}
return attributeExtensions;
}
}