Package no.ugland.utransprod.gui.model

Examples of no.ugland.utransprod.gui.model.CostTypeModel


  @Test
  public void testSaveObject() throws Exception {
    costType = new CostType();
    costType.setCostTypeName("test");
    viewHandler.saveObject(new CostTypeModel(costType), null);
    assertEquals(1, viewHandler.getObjectSelectionListSize());
  }
View Full Code Here


   * @param costType
   * @param searchDialog
   */
  public EditCostTypeView(CostTypeViewHandler handler, CostType costType,
      boolean searchDialog) {
    super(searchDialog, new CostTypeModel(costType), handler);
  }
View Full Code Here

TOP

Related Classes of no.ugland.utransprod.gui.model.CostTypeModel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.