Package edu.mit.simile.fresnel.facets

Examples of edu.mit.simile.fresnel.facets.FacetSet


      this._facets.clear();
      it = conn.getStatements((Resource) null, Facets.facets, (Value) null, false);
      while (it.hasNext()) {
        try {
          Statement facetStatement = (Statement) it.next();
          FacetSet facetset = FacetSet.parse(this._source, facetStatement.getSubject());
          if (!this._all.containsKey(facetset.getIdentifier())) addFacetSet(facetset);
        } catch (Exception e) {
          gather(e);
        }
      }
      it.close();

      // also catch even if it only has to do with hiding
      it = conn.getStatements((Resource) null, Facets.hides, (Value) null, false);
      while (it.hasNext()) {
        try {
          Statement facetStatement = (Statement) it.next();
          FacetSet facetset = FacetSet.parse(this._source, facetStatement.getSubject());
          if (!this._all.containsKey(facetset.getIdentifier())) addFacetSet(facetset);
        } catch (Exception e) {
          gather(e);
        }
      }
      it.close();
View Full Code Here

TOP

Related Classes of edu.mit.simile.fresnel.facets.FacetSet

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.