pylucene 3.5.0-3
[pylucene.git] / lucene-java-3.4.0 / lucene / contrib / queryparser / src / java / org / apache / lucene / queryParser / core / nodes / TokenizedPhraseQueryNode.java
diff --git a/lucene-java-3.4.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/core/nodes/TokenizedPhraseQueryNode.java b/lucene-java-3.4.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/core/nodes/TokenizedPhraseQueryNode.java
deleted file mode 100644 (file)
index d90c17e..0000000
+++ /dev/null
@@ -1,106 +0,0 @@
-package org.apache.lucene.queryParser.core.nodes;
-
-/**
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-import java.util.List;
-
-import org.apache.lucene.queryParser.core.parser.EscapeQuerySyntax;
-
-/**
- * A {@link TokenizedPhraseQueryNode} represents a node created by a code that
- * tokenizes/lemmatizes/analyzes.
- */
-public class TokenizedPhraseQueryNode extends QueryNodeImpl implements
-    FieldableNode {
-
-  private static final long serialVersionUID = -7185108320787917541L;
-
-  public TokenizedPhraseQueryNode() {
-    setLeaf(false);
-    allocate();
-  }
-
-  @Override
-  public String toString() {
-    if (getChildren() == null || getChildren().size() == 0)
-      return "<tokenizedphrase/>";
-    StringBuilder sb = new StringBuilder();
-    sb.append("<tokenizedtphrase>");
-    for (QueryNode child : getChildren()) {
-      sb.append("\n");
-      sb.append(child.toString());
-    }
-    sb.append("\n</tokenizedphrase>");
-    return sb.toString();
-  }
-
-  // This text representation is not re-parseable
-  public CharSequence toQueryString(EscapeQuerySyntax escapeSyntaxParser) {
-    if (getChildren() == null || getChildren().size() == 0)
-      return "";
-
-    StringBuilder sb = new StringBuilder();
-    String filler = "";
-    for (QueryNode child : getChildren()) {
-      sb.append(filler).append(child.toQueryString(escapeSyntaxParser));
-      filler = ",";
-    }
-
-    return "[TP[" + sb.toString() + "]]";
-  }
-
-  @Override
-  public QueryNode cloneTree() throws CloneNotSupportedException {
-    TokenizedPhraseQueryNode clone = (TokenizedPhraseQueryNode) super
-        .cloneTree();
-
-    // nothing to do
-
-    return clone;
-  }
-
-  public CharSequence getField() {
-    List<QueryNode> children = getChildren();
-
-    if (children == null || children.size() == 0) {
-      return null;
-
-    } else {
-      return ((FieldableNode) children.get(0)).getField();
-    }
-
-  }
-
-  public void setField(CharSequence fieldName) {
-    List<QueryNode> children = getChildren();
-
-    if (children != null) {
-
-      for (QueryNode child : getChildren()) {
-
-        if (child instanceof FieldableNode) {
-          ((FieldableNode) child).setField(fieldName);
-        }
-
-      }
-
-    }
-
-  }
-
-} // end class MultitermQueryNode