Package no.ugland.utransprod.model

Examples of no.ugland.utransprod.model.Attribute


   * @see no.ugland.utransprod.gui.model.AbstractModel#getBufferedObjectModel(com.jgoodies.binding.PresentationModel)
   */
  @Override
  public AttributeModel getBufferedObjectModel(
      PresentationModel presentationModel) {
    AttributeModel attributeModel = new AttributeModel(new Attribute());
    attributeModel.setAttributeId((Integer) presentationModel
        .getBufferedValue(PROPERTY_ATTRIBUTE_ID));
    attributeModel.setName((String) presentationModel
        .getBufferedValue(PROPERTY_NAME));
    attributeModel.setDescription((String) presentationModel
View Full Code Here


  }

  @Test
  public void testSaveObject() throws Exception {
    attribute = new Attribute();
    attribute.setName("testatt");
    viewHandler.saveObject(new AttributeModel(attribute), null);
    assertEquals(1, viewHandler.getObjectSelectionListSize());
  }
View Full Code Here

  public void tearDown() throws Exception {
    if (attribute != null && attribute.getAttributeId() != null) {
      attributeManager.removeAttribute(attribute);
      attribute = null;
    }
    Attribute att = attributeManager.findByName("testatle");
    if (att != null) {
      attributeManager.removeAttribute(att);
    }
  }
View Full Code Here

    }
  }

  @Test
  public void testInsertNoValuesSet() {
    Attribute att = new Attribute();
    try {
      attributeManager.saveAttribute(att);
      assertEquals(false, true); // skal ikke kunne lagre uten navn
    } catch (RuntimeException e) {
      e.printStackTrace();
View Full Code Here

    }
  }

  @Test
  public void testInsert() {
    attribute = new Attribute();
    attribute.setName("testatle");
    attributeManager.saveAttribute(attribute);
    Attribute findAttribute = attributeManager.findByName("testatle");
    assertNotNull(findAttribute);
    assertEquals("testatle", findAttribute.getName());
  }
View Full Code Here

    assertEquals("testatle", findAttribute.getName());
  }

  @Test
  public void testEdit() {
    attribute = new Attribute();
    attribute.setName("testatle");
    attributeManager.saveAttribute(attribute);
    Attribute findAttribute = attributeManager.findByName("testatle");
    assertNotNull(findAttribute);
    assertEquals("testatle", findAttribute.getName());
    findAttribute.setName("test2");
    findAttribute.setDescription("kommentar");
    attributeManager.saveAttribute(findAttribute);
    findAttribute = attributeManager.findByName("test2");
    assertNotNull(findAttribute);
    assertEquals("test2", findAttribute.getName());
    assertEquals("kommentar", findAttribute.getDescription());

  }
View Full Code Here

  }

  @Test
  public void testRemove() {
    attribute = new Attribute();
    attribute.setName("testatle");
    attributeManager.saveAttribute(attribute);
    Attribute findAttribute = attributeManager.findByName("testatle");
    assertNotNull(findAttribute);
    assertEquals("testatle", findAttribute.getName());
    attributeManager.removeAttribute(attribute);
    attribute = attributeManager.findByName("test2");
    assertNull(attribute);

  }
View Full Code Here

  }

  @Test
  public void testAddChoice() {
    attribute = new Attribute();
    attribute.setName("testatle");
    attributeManager.saveAttribute(attribute);
    Attribute findAttribute = attributeManager.findByName("testatle");
    assertNotNull(findAttribute);
    assertEquals("testatle", findAttribute.getName());

    Set<AttributeChoice> attributeChoices = new HashSet<AttributeChoice>();
    AttributeChoice attributeChoice = new AttributeChoice(null, "valg",
        findAttribute, null, null, null);
    attributeChoices.add(attributeChoice);
    findAttribute.setAttributeChoices(attributeChoices);

    attributeManager.saveAttribute(findAttribute);
    findAttribute = attributeManager.findByName("testatle");
    assertEquals(true, findAttribute.getAttributeChoices().size() != 0);
  }
View Full Code Here

    OrderLine orderLine = new OrderLine();
    orderLine.setArticlePath("Garasjetype");
   
    ConstructionTypeArticleAttribute constructionTypeArticleAttribute=new ConstructionTypeArticleAttribute();
    ArticleTypeAttribute articleTypeAttribute=new ArticleTypeAttribute();
    Attribute attribute=new Attribute();
    attribute.setName("Veggh�yde");
    articleTypeAttribute.setAttribute(attribute);
   
    constructionTypeArticleAttribute.setArticleTypeAttribute(articleTypeAttribute);
   
    OrderLineAttribute orderLineAttribute = new OrderLineAttribute();
    orderLineAttribute.setConstructionTypeArticleAttribute(constructionTypeArticleAttribute);
    orderLine.addAttribute(orderLineAttribute);
   
    constructionTypeArticleAttribute=new ConstructionTypeArticleAttribute();
    articleTypeAttribute=new ArticleTypeAttribute();
    attribute=new Attribute();
    attribute.setName("Murh�yde");
    articleTypeAttribute.setAttribute(attribute);
   
    orderLineAttribute = new OrderLineAttribute();
    orderLineAttribute.setConstructionTypeArticleAttribute(constructionTypeArticleAttribute);
    orderLine.addAttribute(orderLineAttribute);
   
    constructionTypeArticleAttribute.setArticleTypeAttribute(articleTypeAttribute);
   
    constructionTypeArticleAttribute=new ConstructionTypeArticleAttribute();
    articleTypeAttribute=new ArticleTypeAttribute();
    attribute=new Attribute();
    attribute.setName("Bredde");
    articleTypeAttribute.setAttribute(attribute);
   
    orderLineAttribute = new OrderLineAttribute();
    orderLineAttribute.setConstructionTypeArticleAttribute(constructionTypeArticleAttribute);
    orderLine.addAttribute(orderLineAttribute);
   
    constructionTypeArticleAttribute.setArticleTypeAttribute(articleTypeAttribute);
   
    constructionTypeArticleAttribute=new ConstructionTypeArticleAttribute();
    articleTypeAttribute=new ArticleTypeAttribute();
    attribute=new Attribute();
    attribute.setName("Lengde");
    articleTypeAttribute.setAttribute(attribute);
   
    orderLineAttribute = new OrderLineAttribute();
    orderLineAttribute.setConstructionTypeArticleAttribute(constructionTypeArticleAttribute);
    orderLine.addAttribute(orderLineAttribute);
View Full Code Here

      OrdlnManager ordlnManager) {
    Set<OrderLineAttribute> attributes = orderLine.getOrderLineAttributes() != null ? orderLine
        .getOrderLineAttributes()
        : new HashSet<OrderLineAttribute>();
    for (OrderLineAttribute orderLineAttribute : attributes) {
      Attribute attribute = orderLineAttribute.getAttribute();
      if (!setChoices(orderLine, attribute, orderLineAttribute)) {
        setAttributeBoolValue(orderLine, ordlnManager,
            orderLineAttribute, attribute);
      }
    }
View Full Code Here

TOP

Related Classes of no.ugland.utransprod.model.Attribute

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.