Package org.openqreg.bean

Examples of org.openqreg.bean.CountryBean.removeAttribute()


      CountryBean country2 = (CountryBean)CountryFinderBase.findByPrimaryKey(con, new CountryKey(country1.getId()));
      assertEquals("Countryna skall vara lika", country1, country2);
      assertEquals("Attributen skall vara lika", country1.getAttribute("name1"), country2.getAttribute("name1"));
     
      //Radera attribut
      country2.removeAttribute("name1");
      assertNull("Attributet skall inte finnas", country2.getAttribute("name1"));
      country2.store(con);
      country1 = (CountryBean)CountryFinderBase.findByPrimaryKey(con, new CountryKey(country2.getId()));
      assertNull("Attributet skall inte finnas", country2.getAttribute("name1"));
View Full Code Here


      country2.setAttribute("name2", "value2");
      country2.setAttribute("name3", "value3");
      country2.store(con);
     
      country2.setAttribute("name1", "newvalue1");
      country2.removeAttribute("name2");
      country2.setAttribute("name3", "");
      assertEquals("Det skall finnas tv� attribut", 2, country2.getAttributes().size());
      country2.store(con);
     
      country1 = (CountryBean)CountryFinderBase.findByPrimaryKey(con, new CountryKey(country2.getId()));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.