Package aterm

Examples of aterm.ATerm


  }

 
  public void visit(OWLObjectSomeValuesFrom restriction) {
    restriction.getProperty().accept( this );
    ATerm p = term;
    restriction.getFiller().accept( this );
    ATerm c = term;

    term = ATermUtils.makeSomeValues( p, c );
  }
View Full Code Here


  }

 
  public void visit(OWLObjectAllValuesFrom restriction) {
    restriction.getProperty().accept( this );
    ATerm p = term;
    restriction.getFiller().accept( this );
    ATerm c = term;

    term = ATermUtils.makeAllValues( p, c );
  }
View Full Code Here

  }

 
  public void visit(OWLObjectHasValue restriction) {
    restriction.getProperty().accept( this );
    ATerm p = term;
    restriction.getValue().accept( this );
    ATermAppl ind = term;

    term = ATermUtils.makeHasValue( p, ind );
  }
View Full Code Here

 
  public void visit(OWLObjectExactCardinality restriction) {
    addSimpleProperty( restriction.getProperty() );

    restriction.getProperty().accept( this );
    ATerm p = term;
    int n = restriction.getCardinality();
    restriction.getFiller().accept( this );
    ATermAppl desc = term;

    term = ATermUtils.makeCard( p, n, desc );
View Full Code Here

 
  public void visit(OWLObjectMaxCardinality restriction) {
    addSimpleProperty( restriction.getProperty() );

    restriction.getProperty().accept( this );
    ATerm p = term;
    int n = restriction.getCardinality();
    restriction.getFiller().accept( this );
    ATermAppl desc = term;

    term = ATermUtils.makeMax( p, n, desc );
View Full Code Here

 
  public void visit(OWLObjectMinCardinality restriction) {
    addSimpleProperty( restriction.getProperty() );

    restriction.getProperty().accept( this );
    ATerm p = term;
    int n = restriction.getCardinality();
    restriction.getFiller().accept( this );
    ATermAppl desc = term;

    term = ATermUtils.makeMin( p, n, desc );
View Full Code Here

  }

 
  public void visit(OWLDataExactCardinality restriction) {
    restriction.getProperty().accept( this );
    ATerm p = term;
    int n = restriction.getCardinality();
    restriction.getFiller().accept( this );
    ATermAppl desc = term;

    term = ATermUtils.makeCard( p, n, desc );
View Full Code Here

  }

 
  public void visit(OWLDataMaxCardinality restriction) {
    restriction.getProperty().accept( this );
    ATerm p = term;
    int n = restriction.getCardinality();
    restriction.getFiller().accept( this );
    ATermAppl desc = term;

    term = ATermUtils.makeMax( p, n, desc );
View Full Code Here

  }

 
  public void visit(OWLDataMinCardinality restriction) {
    restriction.getProperty().accept( this );
    ATerm p = term;
    int n = restriction.getCardinality();
    restriction.getFiller().accept( this );
    ATermAppl desc = term;

    term = ATermUtils.makeMin( p, n, desc );
View Full Code Here

  }

 
  public void visit(OWLDataAllValuesFrom restriction) {
    restriction.getProperty().accept( this );
    ATerm p = term;
    restriction.getFiller().accept( this );
    ATerm c = term;

    term = ATermUtils.makeAllValues( p, c );
  }
View Full Code Here

TOP

Related Classes of aterm.ATerm

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.