Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/text/javadoc/JavadocContentAssistInvocationContext.java')
-rw-r--r--bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/text/javadoc/JavadocContentAssistInvocationContext.java73
1 files changed, 0 insertions, 73 deletions
diff --git a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/text/javadoc/JavadocContentAssistInvocationContext.java b/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/text/javadoc/JavadocContentAssistInvocationContext.java
deleted file mode 100644
index 09ba30c2..00000000
--- a/bundles/org.eclipse.wst.jsdt.ui/src/org/eclipse/wst/jsdt/internal/ui/text/javadoc/JavadocContentAssistInvocationContext.java
+++ /dev/null
@@ -1,73 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2005, 2007 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.wst.jsdt.internal.ui.text.javadoc;
-
-import org.eclipse.jface.text.ITextViewer;
-import org.eclipse.ui.IEditorPart;
-import org.eclipse.wst.jsdt.ui.text.java.JavaContentAssistInvocationContext;
-
-
-/**
- *
- *
- */
-public final class JavadocContentAssistInvocationContext extends JavaContentAssistInvocationContext {
-
- private final int fFlags;
-
- /**
- * @param viewer
- * @param offset
- * @param editor
- * @param flags see {@link org.eclipse.wst.jsdt.ui.text.java.IJavadocCompletionProcessor#RESTRICT_TO_MATCHING_CASE}
- */
- public JavadocContentAssistInvocationContext(ITextViewer viewer, int offset, IEditorPart editor, int flags) {
- super(viewer, offset, editor);
- fFlags= flags;
- }
-
- /**
- * Returns the flags for this content assist invocation.
- *
- * @return the flags for this content assist invocation
- * @see org.eclipse.wst.jsdt.ui.text.java.IJavadocCompletionProcessor#RESTRICT_TO_MATCHING_CASE
- */
- public int getFlags() {
- return fFlags;
- }
-
- /**
- * Returns the selection length of the viewer.
- *
- * @return the selection length of the viewer
- */
- public int getSelectionLength() {
- return getViewer().getSelectedRange().y;
- }
-
- /*
- * @see org.eclipse.jface.text.contentassist.TextContentAssistInvocationContext#equals(java.lang.Object)
- */
- public boolean equals(Object obj) {
- if (!super.equals(obj))
- return false;
-
- return fFlags == ((JavadocContentAssistInvocationContext) obj).fFlags;
- }
-
- /*
- * @see org.eclipse.jface.text.contentassist.TextContentAssistInvocationContext#hashCode()
- */
- public int hashCode() {
- return super.hashCode() << 2 | fFlags;
- }
-
-}

Back to the top