Package de.archivator.beans

Examples of de.archivator.beans.EditBean


   *
   * @throws java.lang.Exception
   */
  @Before
  public void setUp() throws Exception {
    proband = new EditBean();
    aktuellesArchivale = new Archivale();
    // aktuellesArchivale injizieren
    Field f = proband.getClass().getDeclaredField("aktuellesArchivale");
    f.setAccessible(true);
    f.set(proband, aktuellesArchivale);
View Full Code Here

TOP

Related Classes of de.archivator.beans.EditBean

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.