有人可以建议如何填写下表吗?标题和第一列是动态的。如果我可以填充表数据,那么我可以在UI
从DB
检索数据并设置为Product
对象。 Product
对象包含匹配的plans
。有些产品没有plans
。因此,plan
的特定索引中应该有一个空的pricePlanList
对象。
Public class Product{
// price plans this object can have.
private ArrayList pricePlanList = new ArrayList();
public void setPricePlanList(ArrayList list){
this.pricePlanList = list;
}
public ArrayList getPricePlanList(){
returnn pricePlanList;
}
}
我可以在jsf视图中填充它,但需要正确填充数据结构。有些product
计划很少,有些product
有所有计划。因此,当填充视图表中的列时,它无法正常工作。因为某些产品列表中的plans
个对象较少,所以列数较少。也不匹配相关列。
Product 2
中的Plan 1
没有DB
。所以Product2
对象应该有第二个plan
对象但没有值。
我可以使用直接java
data structure
吗?否则我必须循环它并填充缺少的对象来构建这个表?