blob: e274677a6700f6a01e3248eaad8a4879d7b71322 [file] [log] [blame]
package org.apache.maven.continuum.web.view.buildresults;
/*
* 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.
*/
import org.apache.maven.continuum.web.util.StateGenerator;
import org.extremecomponents.table.bean.Column;
import org.extremecomponents.table.cell.DisplayCell;
import org.extremecomponents.table.core.TableModel;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.jsp.PageContext;
/**
* Used in BuildResults
*
* @author <a href="mailto:evenisse@apache.org">Emmanuel Venisse</a>
* @version $Id$
* @deprecated use of cells is discouraged due to lack of i18n and design in java code.
* Use jsp:include instead.
*/
public class StateCell
extends DisplayCell
{
protected String getCellValue( TableModel tableModel, Column column )
{
PageContext pageContext = (PageContext) tableModel.getContext().getContextObject();
HttpServletRequest request = (HttpServletRequest) pageContext.getRequest();
Object value = column.getPropertyValue();
int state = -1;
if ( value instanceof Integer )
{
state = ( (Integer) value ).intValue();
}
value = StateGenerator.generate( state, request.getContextPath() );
column.setPropertyValue( value );
return value.toString();
}
}