Package lupos.owl2rl.owlToRif

Examples of lupos.owl2rl.owlToRif.TemplateRule


   * @param atts Liste der Attribute.
   */
  @Override
  public void startElement(String namespaceURI, String localName, String qName, Attributes atts) throws SAXException{
    if(qName.equals(TEMPLATESTARTEND)){
      this.tempTemplateRule= new TemplateRule();
    } else if(qName.equals(PREFIX)){
      // a prefix tag has been found
      if(atts.getQName(0).equals(NAME)){
        this.prefixnames.add(atts.getValue(0));
        this.prefixes+="Prefix("+atts.getValue(0)+" <";
View Full Code Here

TOP

Related Classes of lupos.owl2rl.owlToRif.TemplateRule

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.