如何使用java图形数据结构填充动态表

时间:2015-05-22 13:26:55

标签: java jsf-2

有人可以建议如何填写下表吗?标题和第一列是动态的。如果我可以填充表数据,那么我可以在UI

中打印它

enter image description here

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吗?否则我必须循环它并填充缺少的对象来构建这个表?

0 个答案:

没有答案