/**
* Copyright 2013, WebGate Consulting AG
*
* Licensed 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.openntf.xpt.rss.datasource;
import java.io.Serializable;
import com.ibm.xsp.model.TabularDataModel;
public class RSSDataModel extends TabularDataModel implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
private RSSDataContainer m_rssData;
public RSSDataModel(RSSDataContainer rssData) {
super();
m_rssData = rssData;
setWrappedData(m_rssData.getRSSasList());
}
@Override
public int getRowCount() {
return m_rssData.getRSSasList().size();
}
@Override
public Object getRowData() {
return m_rssData.getRSSasList().get(getRowIndex());
}
@Override
public boolean isRowAvailable() {
if (getRowIndex() < getRowCount()) {
return true;
}
return false;
}
@Override
public String getRowId() {
return "" + getRowIndex();
}
@Override
public boolean isRowExpanded() {
return true;
}
}