Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/index/org/eclipse/cdt/internal/core/index/impl/IndexerOutput.java')
-rw-r--r--core/org.eclipse.cdt.core/index/org/eclipse/cdt/internal/core/index/impl/IndexerOutput.java77
1 files changed, 0 insertions, 77 deletions
diff --git a/core/org.eclipse.cdt.core/index/org/eclipse/cdt/internal/core/index/impl/IndexerOutput.java b/core/org.eclipse.cdt.core/index/org/eclipse/cdt/internal/core/index/impl/IndexerOutput.java
deleted file mode 100644
index 396761894ce..00000000000
--- a/core/org.eclipse.cdt.core/index/org/eclipse/cdt/internal/core/index/impl/IndexerOutput.java
+++ /dev/null
@@ -1,77 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2003 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.cdt.internal.core.index.impl;
-
-import org.eclipse.cdt.internal.core.index.IDocument;
-import org.eclipse.cdt.internal.core.index.IIndexerOutput;
-
-/**
- * An indexerOutput is used by an indexer to add documents and word references to
- * an inMemoryIndex. It keeps track of the document being indexed and add the
- * word references to this document (so you do not need to precise the document
- * each time you add a word).
- */
-
-public class IndexerOutput implements IIndexerOutput {
- protected InMemoryIndex index;
- protected IndexedFile indexedFile;
- protected IDocument document;
- /**
- * IndexerOutput constructor comment.
- */
- public IndexerOutput(InMemoryIndex index) {
- this.index= index;
- }
- /**
- * Adds the given document to the inMemoryIndex.
- */
- public void addDocument(IDocument document) {
- if (indexedFile == null) {
- indexedFile= index.addDocument(document);
- } else {
- throw new IllegalStateException();
- }
- }
- /**
- * Adds a reference to the given word to the inMemoryIndex.
- */
- public void addRef(char[] word) {
- if (indexedFile == null) {
- throw new IllegalStateException();
- }
- index.addRef(indexedFile, word);
- }
- /**
- * Adds a reference to the given word to the inMemoryIndex.
- */
- public void addRef(String word) {
- addRef(word.toCharArray());
- }
-
- public void addRelatives(String inclusion, String parent) {
- if (indexedFile == null) {
- throw new IllegalStateException();
- }
- index.addRelatives(indexedFile, inclusion, parent);
- }
-
- public void addIncludeRef(char[] word) {
- if (indexedFile == null) {
- throw new IllegalStateException();
- }
- index.addIncludeRef(indexedFile, word);
- }
-
- public void addIncludeRef(String word) {
- addIncludeRef(word.toCharArray());
- }
-
-}

Back to the top