Java Eclipse插件:在默认代码完成弹出窗口中添加自定义建议

Java Eclipse插件:在默认代码完成弹出窗口中添加自定义建议,java,eclipse-plugin,eclipse-jdt,code-completion,content-assist,Java,Eclipse Plugin,Eclipse Jdt,Code Completion,Content Assist,我正在制作一个eclipse插件,它需要在默认的eclipse弹出窗口中添加一些自定义建议。为此,我从中了解到,我必须实现IJavaCompletionProposalComputer,才能参与内容辅助过程。因此,我尝试了在中找到的以下实现。我知道它覆盖了计算建议并返回为ICompletionProposition列表的ComputeCompletionPropositions()方法。但我无法找到如何在默认弹出窗口中添加自定义建议。 你知道我怎么做吗 package zzz.handlers;

我正在制作一个eclipse插件,它需要在默认的eclipse弹出窗口中添加一些自定义建议。为此,我从中了解到,我必须实现
IJavaCompletionProposalComputer
,才能参与内容辅助过程。因此,我尝试了在中找到的以下实现。我知道它覆盖了计算建议并返回为
ICompletionProposition
列表的
ComputeCompletionPropositions()
方法。但我无法找到如何在默认弹出窗口中添加自定义建议。

你知道我怎么做吗

package zzz.handlers;

import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.handlers.HandlerUtil;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jface.text.contentassist.CompletionProposal;
import org.eclipse.jface.text.contentassist.ICompletionProposal;
import org.eclipse.jface.text.contentassist.IContextInformation;
import org.eclipse.ui.texteditor.HippieProposalProcessor;
import org.eclipse.jdt.ui.text.java.ContentAssistInvocationContext;
import org.eclipse.jdt.ui.text.java.IJavaCompletionProposalComputer;
import java.util.*;

/**
 * Our sample handler extends AbstractHandler, an IHandler base class.
 * @see org.eclipse.core.commands.IHandler
 * @see org.eclipse.core.commands.AbstractHandler
 */
/**
 * A computer wrapper for the hippie processor.
 *
 * @since 3.2
 */
public final class HippieProposalComputer implements IJavaCompletionProposalComputer {
    /** The wrapped processor. */
    private final HippieProposalProcessor fProcessor= new HippieProposalProcessor();

    /**
     * Default ctor to make it instantiatable via the extension mechanism.
     */
    public HippieProposalComputer() {
    }

    /*
     * @see org.eclipse.jface.text.contentassist.ICompletionProposalComputer#computeCompletionProposals(org.eclipse.jface.text.contentassist.TextContentAssistInvocationContext, org.eclipse.core.runtime.IProgressMonitor)
     */
    @Override
    public List<ICompletionProposal> computeCompletionProposals(ContentAssistInvocationContext context, IProgressMonitor monitor) {
        return Arrays.asList(fProcessor.computeCompletionProposals(context.getViewer(), context.getInvocationOffset()));
    }

    /*
     * @see org.eclipse.jface.text.contentassist.ICompletionProposalComputer#computeContextInformation(org.eclipse.jface.text.contentassist.TextContentAssistInvocationContext, org.eclipse.core.runtime.IProgressMonitor)
     */
    @Override
    public List<IContextInformation> computeContextInformation(ContentAssistInvocationContext context, IProgressMonitor monitor) {
        return Arrays.asList(fProcessor.computeContextInformation(context.getViewer(), context.getInvocationOffset()));
    }

    /*
     * @see org.eclipse.jface.text.contentassist.ICompletionProposalComputer#getErrorMessage()
     */
    @Override
    public String getErrorMessage() {
        return fProcessor.getErrorMessage();
    }

    /*
     * @see org.eclipse.jdt.ui.text.java.IJavaCompletionProposalComputer#sessionStarted()
     */
    @Override
    public void sessionStarted() {
    }

    /*
     * @see org.eclipse.jdt.ui.text.java.IJavaCompletionProposalComputer#sessionEnded()
     */
    @Override
    public void sessionEnded() {
    }
}

到目前为止,主要的错误似乎是将建议提供程序限制为分区类型
\uuujava\ujavadoc

您已经在-look for
type
中查找了(几乎?)。请注意,此定义也指。简而言之,分区指的是编辑器中的文本段。链接界面列出了可能的常数以及简短的描述


如果您希望在编辑Java代码时建议完成,请尝试
IJavaPartitions.Java_PARTITIONING

您是否已将此扩展点添加到plugin.xml中?代码被调用了吗?@greg-449是的,我在
plugin.xml
中添加了
org.eclipse.jdt.ui.javaCompletionProposalComputer
扩展点。我不确定是否有人打电话来。如何检查?使用调试器或用不同的方法打印一些东西。@greg-449。。。看起来没有人叫它。测试时,它会给我以下错误@greg-449现在我已经完成了被调用的代码。你能告诉我怎样才能把我的问题说出来吗?非常感谢。
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>

 <extension point="org.eclipse.jdt.ui.javaCompletionProposalComputer"
       id="WordCompletionProposalComputer"
       name="Word Completion Proposal Computer">
       <javaCompletionProposalComputer
          class="org.eclipse.jdt.internal.ui.text.java.HippieProposalComputer"
          categoryId="org.eclipse.ui.texteditor.textual_proposals">
          <partition type="__java_javadoc"/>
       </javaCompletionProposalComputer>
     </extension>

   <extension
         point="org.eclipse.ui.commands">
      <category
            name="Sample Category"
            id="zadawdaw.commands.category">
      </category>
      <command
            name="Sample Command"
            categoryId="zadawdaw.commands.category"
            id="zadawdaw.commands.sampleCommand">
      </command>
   </extension>
   <extension
         point="org.eclipse.ui.handlers">
      <handler
            commandId="zadawdaw.commands.sampleCommand"
            class="zadawdaw.handlers.SampleHandler">
      </handler>
   </extension>

   <extension point="org.eclipse.jdt.ui.javaCompletionProposalComputer"
   id="textual_proposals"
   name="Text Proposals">
   <proposalCategory icon="icons/wordcompletions.png"/>
 </extension>

   <extension
         point="org.eclipse.ui.menus">
      <menuContribution
            locationURI="menu:org.eclipse.ui.main.menu?after=additions">
         <menu
               label="Sample Menu"
               mnemonic="M"
               id="zadawdaw.menus.sampleMenu">
            <command
                  commandId="zadawdaw.commands.sampleCommand"
                  mnemonic="S"
                  id="zadawdaw.menus.sampleCommand">
            </command>
         </menu>
      </menuContribution>
      <menuContribution
            locationURI="toolbar:org.eclipse.ui.main.toolbar?after=additions">
         <toolbar
               id="zadawdaw.toolbars.sampleToolbar">
            <command
                  commandId="zadawdaw.commands.sampleCommand"
                  icon="icons/sample.png"
                  tooltip="Say hello world"
                  id="zadawdaw.toolbars.sampleCommand">
            </command>
         </toolbar>
      </menuContribution>
   </extension>

</plugin>