Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* JBoss, Home of Professional Open Source
* Copyright ${year}, 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.renderkit;
import java.io.IOException;
import java.util.Collections;
import java.util.Map;
import javax.faces.FacesException;
import javax.faces.application.ResourceDependencies;
import javax.faces.application.ResourceDependency;
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
import javax.faces.context.ResponseWriter;
import org.ajax4jsf.model.DataVisitResult;
import org.ajax4jsf.model.DataVisitor;
import org.richfaces.component.Row;
import org.richfaces.component.UIDataTableBase;
/**
* @author Anton Belevich
*
*/@ResourceDependencies({
@ResourceDependency(library = "javax.faces", name = "jsf.js"),
@ResourceDependency(name = "jquery.js"),
@ResourceDependency(name = "richfaces.js")
})
publicabstractclassAbstractRowsRendererextendsRendererBaseimplementsDataVisitor{
privatestaticfinal Map ROW_HANDLER_ATTRIBUTES = Collections
.unmodifiableMap(ComponentAttribute.createMap(
new ComponentAttribute(HtmlConstants.ONCLICK_ATTRIBUTE).setEventNames("rowclick").
setComponentAttributeName("onrowclick"),
new ComponentAttribute(HtmlConstants.ONDBLCLICK_ATTRIBUTE).setEventNames("rowdblclick").
setComponentAttributeName("onrowdblclick"),
new ComponentAttribute(HtmlConstants.ONMOUSEDOWN_ATTRIBUTE).setEventNames("rowmousedown").
setComponentAttributeName("onrowmousedown"),
new ComponentAttribute(HtmlConstants.ONMOUSEUP_ATTRIBUTE).setEventNames("rowmouseup").
setComponentAttributeName("onrowmouseup"),
new ComponentAttribute(HtmlConstants.ONMOUSEOVER_ATTRIBUTE).setEventNames("rowmouseover").
setComponentAttributeName("onrowmouseover"),
new ComponentAttribute(HtmlConstants.ONMOUSEMOVE_ATTRIBUTE).setEventNames("rowmousemove").
setComponentAttributeName("onrowmousemove"),
new ComponentAttribute(HtmlConstants.ONMOUSEOUT_ATTRIBUTE).setEventNames("rowmouseout").
setComponentAttributeName("onrowmouseout"),
new ComponentAttribute(HtmlConstants.ONKEYPRESS_ATTRIBUTE).setEventNames("rowkeypress").
setComponentAttributeName("onrowkeypress"),
new ComponentAttribute(HtmlConstants.ONKEYDOWN_ATTRIBUTE).setEventNames("rowkeydown").
setComponentAttributeName("onrowkeydown"),
new ComponentAttribute(HtmlConstants.ONKEYUP_ATTRIBUTE).setEventNames("rowkeyup").
setComponentAttributeName("onrowkeyup")
));
publicabstractvoidencodeRow(ResponseWriter writer, FacesContext facesContext, RowHolderBase rowHolder)throws IOException;
publicabstract RowHolderBase createRowHolder(FacesContext context, UIComponent component, Object [] options);
public DataVisitResult process(FacesContext facesContext, Object rowKey, Object argument){
RowHolderBase holder = (RowHolderBase) argument;
Row row = holder.getRow();
row.setRowKey(facesContext, rowKey);
try {
ResponseWriter writer = facesContext.getResponseWriter();
holder.resetProcessCell();
encodeRow(writer, facesContext, holder);
} catch (IOException e) {
thrownew FacesException(e);
}
holder.nextRow();
return DataVisitResult.CONTINUE;
}
protectedvoidencodeRows(FacesContext facesContext, RowHolderBase rowHolder){
rowHolder.getRow().walk(facesContext, this, rowHolder);
}
publicvoidencodeFakeRow(FacesContext facesContext, RowHolderBase rowHolder)throws IOException {
}
protectedvoidrenderRowHandlers(FacesContext context, UIDataTableBase dataTable)throws IOException {
RenderKitUtils.renderPassThroughAttributesOptimized(context, dataTable, ROW_HANDLER_ATTRIBUTES);
}
publicvoidprocessRows(ResponseWriter writer, FacesContext facesContext, UIComponent component, Object[] options)throws IOException {
RowHolderBase rowHolder = createRowHolder(facesContext, component, options);
encodeRows(facesContext, rowHolder);
if(!rowHolder.hasWalkedOverRows()) {
try {
encodeFakeRow(facesContext, rowHolder);
} catch (IOException e){
thrownew FacesException(e);
}
} else {
doCleanup(facesContext, rowHolder);
}
}
protectedvoiddoCleanup(FacesContext context, RowHolderBase rowHolder)throws IOException {
//Hook method
}
protectedvoiddoEncodeChildren(ResponseWriter writer, FacesContext facesContext, UIComponent component)throws IOException {
processRows(writer, facesContext, component, null);
}
publicbooleangetRendersChildren(){
returntrue;
}
protected String get(FacesContext context, String key){
return (String)context.getAttributes().get(key);
}
protectedvoidput(FacesContext context, String key, String value){
context.getAttributes().put(key, value);
}
protected String[] getRowClasses(RowHolderBase rowHolder) {
String[] rowClasses = new String[0];
if (rowHolder.getRow() instanceof UIDataTableBase) {
String classes = ((UIDataTableBase)rowHolder.getRow()).getRowClasses();
if(null != classes){
rowClasses=classes.split(",");
}
}
return rowClasses;
}
protected String[] getColumnClasses(RowHolderBase rowHolder) {
String[] columnClasses = new String[0];
if (rowHolder.getRow() instanceof UIDataTableBase) {
String classes = ((UIDataTableBase)rowHolder.getRow()).getColumnClasses();
if(null != classes){
columnClasses=classes.split(",");
}
}
return columnClasses;
}
protected String getColumnClass(RowHolderBase rowHolder, int columnNumber){
String styleClass = "";
String[] columnClasses = getColumnClasses(rowHolder);
if (columnClasses.length > columnNumber) {
styleClass = columnClasses[columnNumber];
}
return styleClass;
}
protected String getRowClassAttribute(RowHolderBase rowHolder){
String rowClass = "";
if (rowHolder.getRow() instanceof UIDataTableBase) {
rowClass = ((UIDataTableBase)rowHolder.getRow()).getRowClass();
}
return rowClass;
}
protected String getRowClass(RowHolderBase rowHolder){
String styleClass = "";
String[] rowClasses = getRowClasses(rowHolder);
if (rowClasses.length > 0) {
int styleIndex = rowHolder.getCurrentRow() % rowClasses.length;
styleClass = rowClasses[styleIndex];
}
return concatClasses(getRowClassAttribute(rowHolder), styleClass);
}
}