IsBNode.java :  » RSS-RDF » sesame » org » openrdf » query » algebra » Java Open Source

Java Open Source » RSS RDF » sesame 
sesame » org » openrdf » query » algebra » IsBNode.java
/*
 * Copyright Aduna (http://www.aduna-software.com/) (c) 1997-2006.
 *
 * Licensed under the Aduna BSD-style license.
 */
package org.openrdf.query.algebra;

public class IsBNode extends UnaryValueOperator {

  /*--------------*
   * Constructors *
   *--------------*/

  public IsBNode() {
  }

  public IsBNode(ValueExpr arg) {
    super(arg);
  }

  /*---------*
   * Methods *
   *---------*/

  public <X extends Exception> void visit(QueryModelVisitor<X> visitor)
    throws X
  {
    visitor.meet(this);
  }

  @Override
  public IsBNode clone() {
    return (IsBNode)super.clone();
  }
}
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.