org.richfaces.component.UIAjaxLog Maven / Gradle / Ivy
The newest version!
/*
* JBoss, Home of Professional Open Source
* Copyright , Red Hat, Inc. and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.richfaces.component;
import javax.annotation.Generated;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import javax.faces.context.FacesContext;
import javax.faces.component.UIComponent;
import javax.faces.component.behavior.ClientBehaviorHolder;
import javax.el.MethodExpression;
import javax.el.ValueExpression;
import javax.faces.component.StateHelper;
import org.richfaces.component.AbstractAjaxLog;
/**
*
The <a4j:log> component generates JavaScript that opens a debug window, logging application information such as
requests, responses, and DOM changes.
@author Nick Belaevski
**/
@Generated({"RichFaces CDK", "4.3.1.Final"})
public class UIAjaxLog extends AbstractAjaxLog
{
public static final String COMPONENT_TYPE="org.richfaces.AjaxLog";
public static final String COMPONENT_FAMILY="org.richfaces.AjaxLog";
@Override
public String getFamily() {
return COMPONENT_FAMILY;
}
public UIAjaxLog() {
super();
setRendererType("org.richfaces.AjaxLogRenderer");
}
protected enum Properties {
level,
mode,
style,
styleClass
}
public String getLevel() {
String value = (String) getStateHelper().eval(Properties.level);
return value;
}
public void setLevel(String level) {
getStateHelper().put(Properties.level, level);
}
public LogMode getMode() {
LogMode value = (LogMode) getStateHelper().eval(Properties.mode);
return value;
}
public void setMode(LogMode mode) {
getStateHelper().put(Properties.mode, mode);
}
public String getStyle() {
String value = (String) getStateHelper().eval(Properties.style);
return value;
}
public void setStyle(String style) {
getStateHelper().put(Properties.style, style);
}
public String getStyleClass() {
String value = (String) getStateHelper().eval(Properties.styleClass);
return value;
}
public void setStyleClass(String styleClass) {
getStateHelper().put(Properties.styleClass, styleClass);
}
}