Package org.corrib.s3b.sscf.changelog

Examples of org.corrib.s3b.sscf.changelog.ChangeBean


      List<ChangeBean> addedTriples = new ArrayList<ChangeBean>();
      for(Statement st:this.finalResult)
      {
        try
        {
          ChangeBean ch = new ChangeBean();
          ch.setChangedUri(st.getObject().toString());
          ch.setChangeType(ChangeTypes.SUG_ADDED.getChangeType());
          ch.setChangeUri(st.getSubject().toString());
          //get label of the change...
          XfoafSscfResource xf = XfoafSscfResource.getXfoafSscfResource(st.getSubject().toString());
          String label = xf.getLabel();
          if(label!=null)
            ch.setChangeValue(label);
         
          addedTriples.add(ch);
        }
        catch (Exception e)
        {
View Full Code Here

TOP

Related Classes of org.corrib.s3b.sscf.changelog.ChangeBean

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.