Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.jsdt.web.ui/src/org/eclipse/wst/jsdt/web/ui/internal/contentassist/JSDTContetAssistInvocationContext.java')
-rw-r--r--bundles/org.eclipse.wst.jsdt.web.ui/src/org/eclipse/wst/jsdt/web/ui/internal/contentassist/JSDTContetAssistInvocationContext.java83
1 files changed, 0 insertions, 83 deletions
diff --git a/bundles/org.eclipse.wst.jsdt.web.ui/src/org/eclipse/wst/jsdt/web/ui/internal/contentassist/JSDTContetAssistInvocationContext.java b/bundles/org.eclipse.wst.jsdt.web.ui/src/org/eclipse/wst/jsdt/web/ui/internal/contentassist/JSDTContetAssistInvocationContext.java
deleted file mode 100644
index e618ed0b44..0000000000
--- a/bundles/org.eclipse.wst.jsdt.web.ui/src/org/eclipse/wst/jsdt/web/ui/internal/contentassist/JSDTContetAssistInvocationContext.java
+++ /dev/null
@@ -1,83 +0,0 @@
-package org.eclipse.wst.jsdt.web.ui.internal.contentassist;
-
-import org.eclipse.jface.text.IDocument;
-import org.eclipse.jface.text.ITextViewer;
-import org.eclipse.wst.jsdt.ui.text.java.JavaContentAssistInvocationContext;
-import org.eclipse.wst.jsdt.web.core.internal.java.IJSPTranslation;
-import org.eclipse.wst.jsdt.web.core.internal.java.JSPTranslation;
-import org.eclipse.wst.jsdt.web.core.internal.java.JSPTranslationAdapter;
-import org.eclipse.wst.sse.core.StructuredModelManager;
-import org.eclipse.wst.xml.core.internal.provisional.document.IDOMDocument;
-import org.eclipse.wst.xml.core.internal.provisional.document.IDOMModel;
-
-public class JSDTContetAssistInvocationContext extends JavaContentAssistInvocationContext{
-
-
-
- ITextViewer viewer;
-
-
- private JSDTContetAssistInvocationContext(ITextViewer viewer, int offset, JSDTProposalCollector theCollector){
-
- super(viewer,offset,null);
- this.viewer=viewer;
- //this.offset=getJSPTranslation().getJavaOffset(offset);
- //CompletionProposalCollector theCollector = getProposalCollector();
- super.setCollector(theCollector);
-
- }
-
- public static JSDTContetAssistInvocationContext getInstance(ITextViewer viewer, int offset, JSDTProposalCollector theCollector){
- JSPTranslation tran = getJSPTranslation(viewer);
- int jsOffset = tran.getJavaOffset(offset);
- return new JSDTContetAssistInvocationContext(viewer,offset,theCollector);
- }
- public IDocument getDocument() {
- return viewer.getDocument();
-
- }
-
-// public IDocument getDocument() {
-// return ((JSPTranslationExtension)getJSPTranslation(viewer)).getJavaDocument();
-//
-// }
-
-// protected CompletionProposalCollector getProposalCollector() {
-//
-// return ((CompletionProposalCollector) ( new JSPProposalCollector( getJSPTranslation()) ));
-// }
-
- private static JSPTranslation getJSPTranslation(ITextViewer viewer){
- JSPTranslation fTranslation = null;;
-
- IDOMModel xmlModel = null;
-
- try {
- xmlModel = (IDOMModel) StructuredModelManager.getModelManager()
- .getExistingModelForRead(viewer.getDocument());
-
- IDOMDocument xmlDoc = xmlModel.getDocument();
-
-
- JSPTranslationAdapter fTranslationAdapter = (JSPTranslationAdapter) xmlDoc
- .getAdapterFor(IJSPTranslation.class);
-
- if (fTranslationAdapter != null) {
-
- fTranslation = fTranslationAdapter.getJSPTranslation();
- }
- } catch (Exception e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }finally{
- if (xmlModel != null) {
- xmlModel.releaseFromRead();
- }
- }
- return fTranslation;
- }
-
-// public ICompilationUnit getCompilationUnit() {
-// return getJSPTranslation(viewer).getCompilationUnit();
-// }
-}

Back to the top