Package net.ftlines.metagen

Examples of net.ftlines.metagen.Property$SerializedProperty


  @Test
  public void test() throws Exception
  {
    assertTrue(result.isClean());

    Property property1 = result.getMetaProperty(Bean.class, "property1");
    assertNotNull(property1);
    Property property2 = result.getMetaProperty(Bean.class, "property2");
    assertNotNull(property2);
  }
View Full Code Here


  @Test
  public void test() throws Exception
  {
    assertTrue(result.isClean());

    Property property1 = result.getMetaProperty(Bean.class, "property1");
    assertNotNull(property1);
    Property inner1 = result.getMetaProperty(Bean.Inner.class, "inner1");
    assertNotNull(inner1);
  }
View Full Code Here

TOP

Related Classes of net.ftlines.metagen.Property$SerializedProperty

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.