Ignore:
Timestamp:
02/03/16 23:24:10 (8 years ago)
Author:
Oliver Schonefeld
Message:
  • update/add copyright
  • fix typo in class name
  • minor changes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • FCSSimpleEndpoint/trunk/src/main/java/eu/clarin/sru/server/fcs/parser/ExpressionNot.java

    r6882 r6935  
     1/**
     2 * This software is copyright (c) 2013-2016 by
     3 *  - Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
     4 * This is free software. You can redistribute it
     5 * and/or modify it under the terms described in
     6 * the GNU General Public License v3 of which you
     7 * should have received a copy. Otherwise you can download
     8 * it from
     9 *
     10 *   http://www.gnu.org/licenses/gpl-3.0.txt
     11 *
     12 * @copyright Institut fuer Deutsche Sprache (http://www.ids-mannheim.de)
     13 *
     14 * @license http://www.gnu.org/licenses/gpl-3.0.txt
     15 *  GNU General Public License v3
     16 */
    117package eu.clarin.sru.server.fcs.parser;
    218
    319
     20/**
     21 * A FCS-QL expression tree NOT expression node.
     22 */
    423public class ExpressionNot extends QueryNode {
    524
     25    /**
     26     * Constructor.
     27     *
     28     * @param child
     29     *            the child expression
     30     */
    631    ExpressionNot(QueryNode child) {
    732        super(QueryNodeType.EXPRESSION_NOT, child);
     
    1944    }
    2045
    21    
     46
    2247    @Override
    2348    public void accept(QueryVisitor visitor) {
     
    2651    }
    2752
    28 }
     53} // class ExpressionNot
Note: See TracChangeset for help on using the changeset viewer.