org.primefaces.extensions.component.legend.Legend Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of primefaces-extensions Show documentation
Show all versions of primefaces-extensions Show documentation
PrimeFaces Extensions components and utilities for PrimeFaces.
The newest version!
/*
* Copyright (c) 2011-2024 PrimeFaces Extensions
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package org.primefaces.extensions.component.legend;
import java.util.Map;
import javax.faces.application.ResourceDependency;
import javax.faces.component.UIComponentBase;
import org.primefaces.component.api.Widget;
/**
* Legend
component.
*
* @author Melloware [email protected]
* @since 7.1
*/
@ResourceDependency(library = "primefaces", name = "components.css")
@ResourceDependency(library = "primefaces", name = "jquery/jquery.js")
@ResourceDependency(library = "primefaces", name = "jquery/jquery-plugins.js")
@ResourceDependency(library = "primefaces", name = "core.js")
@ResourceDependency(library = "primefaces-extensions", name = "legend/legend.css")
@ResourceDependency(library = "primefaces-extensions", name = "legend/legend.js")
public class Legend extends UIComponentBase implements Widget {
public static final String COMPONENT_TYPE = "org.primefaces.extensions.component.Legend";
public static final String COMPONENT_FAMILY = "org.primefaces.extensions.component";
public static final String STYLE_CLASS_VERTICAL = "ui-legend-vertical ";
public static final String STYLE_CLASS_HORIZONTAL = "ui-legend-horizontal ";
public static final String SCALE_STYLE = "ui-legend-scale";
public static final String LABELS_STYLE = "ui-legend-labels";
public static final String TITLE_STYLE = "ui-legend-title";
public static final String FOOTER_STYLE = "ui-legend-footer";
private static final String DEFAULT_RENDERER = "org.primefaces.extensions.component.LegendRenderer";
@SuppressWarnings("java:S115")
protected enum PropertyKeys {
// @formatter:off
widgetVar,
style,
styleClass,
title,
footer,
values,
layout
// @formatter:on
}
/**
* Default constructor
*/
public Legend() {
setRendererType(DEFAULT_RENDERER);
}
/**
* {@inheritDoc}
*/
@Override
public String getFamily() {
return COMPONENT_FAMILY;
}
public String getLayout() {
return (String) getStateHelper().eval(PropertyKeys.layout, "vertical");
}
public void setLayout(final String layout) {
getStateHelper().put(PropertyKeys.layout, layout);
}
public String getTitle() {
return (String) getStateHelper().eval(PropertyKeys.title, null);
}
public void setTitle(final String title) {
getStateHelper().put(PropertyKeys.title, title);
}
public String getFooter() {
return (String) getStateHelper().eval(PropertyKeys.footer, null);
}
public void setFooter(final String footer) {
getStateHelper().put(PropertyKeys.footer, footer);
}
public String getStyle() {
return (String) getStateHelper().eval(PropertyKeys.style, null);
}
public void setStyle(final String _style) {
getStateHelper().put(PropertyKeys.style, _style);
}
public String getStyleClass() {
return (String) getStateHelper().eval(PropertyKeys.styleClass, null);
}
public void setStyleClass(final String _styleClass) {
getStateHelper().put(PropertyKeys.styleClass, _styleClass);
}
public Map getValues() {
return (Map) getStateHelper().eval(PropertyKeys.values, null);
}
public void setValues(final Map map) {
getStateHelper().put(PropertyKeys.values, map);
}
}