Package org.joggito.annotations

Examples of org.joggito.annotations.RDFProperty


public class TestRDFAnnotationsHelper {
  @Test
  public void gettingURIExpressionValueAsSpecifiedValue() throws Exception {
    Field field = Person.class.getDeclaredField("familyName");
    Method getter = ReflectUtils.getGetterMethod(field);
    RDFProperty rdfProperty = getter.getAnnotation(RDFProperty.class);
   
    String uri = RdfAnnotationsHelper.getURI(field, rdfProperty);
    assertEquals("family_name", uri);
  }
View Full Code Here


  }
 
  @Test
  public void gettingURIExpressionValueAsFieldName() throws Exception {
    Field field = Person.class.getDeclaredField("firstName");
    RDFProperty rdfProperty = field.getAnnotation(RDFProperty.class);

    String uri = RdfAnnotationsHelper.getURI(field, rdfProperty);
    assertEquals(field.getName(), uri);
  }
View Full Code Here

TOP

Related Classes of org.joggito.annotations.RDFProperty

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.