JenaReasoner.java :  » Search » cbdp » cbdp » server » contextreasoner » impl » reasoner » jena » Java Open Source

Java Open Source » Search » cbdp 
cbdp » cbdp » server » contextreasoner » impl » reasoner » jena » JenaReasoner.java
/*
 * Copyright (C) 2008-2011 CBDP Consortium
 * 
 * All rights reserved.
 *
 * This software is licensed as described in the file COPYING, which
 * you should have received as part of this distribution.
 * 
 * This software consists of contributions made by many individuals, 
 * listed below:
 *
 * Author:   Xabier Laiseca <xabier.laiseca@deusto.es>
 *       David Ausn <david.ausin@deusto.es>
 */
package cbdp.server.contextreasoner.impl.reasoner.jena;

import cbdp.server.contextreasoner.Reasoner;
import cbdp.server.contextreasoner.impl.reasoner.GenericReasoner;
import cbdp.server.contextreasoner.impl.reasoner.RuleSet;

import com.hp.hpl.jena.ontology.OntModelSpec;


/**
 * 
 * @author Xabier Laiseca (University of Deusto)
 *
 */
public class JenaReasoner extends GenericReasoner implements Reasoner
{
  @Override
  protected RuleSet createEmptyRuleSet()
  {
    return new JenaRuleSet();
  }

  @Override
  public OntModelSpec getOntModelSpec()
  {
    return OntModelSpec.OWL_MEM_MINI_RULE_INF;
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.