Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Code Block
languagejava
themeConfluence
ProductsDAO daoProduct = new ProductsDAO();
List<Products> productList = daoProduct.findAll();

 

 

 

 

Code Block
languagejava
themeConfluence
this.comboBox.setContainerDataSource(Products.class, DAOs.get(ProductsDAO.class).findAll());
Code Block
languagejava
themeConfluence
ProductsDAO daoProduct = new ProductsDAO();
List<Products> productList = daoProduct.findAll();

XdevBeanItemContainer<Products> productsContainer = new XdevBeanItemContainer<Products>(Products.class); 
productsContainer.addAll(productList);