Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
freem
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Openai/691151cc-3da4-800f-9b7c-81b0e0d10369
(section)
Add languages
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
==== ### ==== <syntaxhighlight lang="java">import org.eclipse.jface.text.contentassist.ICompletionProposal; import org.eclipse.jface.text.contentassist.IContentAssistProcessor; import org.eclipse.jface.text.contentassist.IContextInformation; import org.eclipse.jface.text.ITextViewer; public class AIAssistProcessor implements IContentAssistProcessor { private String aiSuggestion; public AIAssistProcessor(String aiSuggestion) { this.aiSuggestion = aiSuggestion; } @Override public ICompletionProposal[] computeCompletionProposals(ITextViewer viewer, int offset) { // カーソル位置に AI の提案を挿入する CompletionProposal を作成 ICompletionProposal proposal = new CompletionProposal( aiSuggestion, // 挿入文字列 offset, // 挿入位置 0, // 置換する文字数 aiSuggestion.length(), // カーソルの移動位置 null, // アイコン "AI Suggestion",// 表示文字 null, null ); return new ICompletionProposal[]{ proposal }; } @Override public IContextInformation[] computeContextInformation(ITextViewer viewer, int offset) { return null; // 今回は不要 } @Override public char[] getCompletionProposalAutoActivationCharacters() { return null; } @Override public char[] getContextInformationAutoActivationCharacters() { return null; } @Override public String getErrorMessage() { return null; } @Override public org.eclipse.jface.text.contentassist.IContextInformationValidator getContextInformationValidator() { return null; } } </syntaxhighlight> ===== - エディタに対して Content Assist を有効化するには、SourceViewerConfiguration の getContentAssistProcessor をオーバーライドして、先ほどの AIAssistProcessor を返します。 ===== <syntaxhighlight lang="java">@Override public IContentAssistProcessor getContentAssistProcessor(String contentType) { return new AIAssistProcessor(aiText); } </syntaxhighlight> ===== 1. AISuggestHandler で AI にリクエスト ===== # AI が返したコードを extractCodeFromAIResponse でクリーン化 # AIAssistProcessor に渡して ICompletionProposal を生成 # Content Assist UI がポップアップ表示 # ユーザーが Tab を押すとカーソル位置に挿入 💡 注意点 * ITextViewer は Eclipse のエディタ内部で管理 されているので、ハンドラから直接ポップアップを表示するには少し工夫が必要です。 * 実務では、AISuggestHandler は AI からの提案取得まで担当し、Content Assist は別クラス(Processor)で表示、という分離設計が推奨です。 希望であれば、私は AISuggestHandler と IContentAssistProcessor を統合して Ctrl+Shift+Z でポップアップ → Tab で採用可能な完全版 のサンプルを作ることもできます。 作りますか?
Summary:
Please note that all contributions to freem are considered to be released under the Creative Commons Attribution-ShareAlike 4.0 (see
Freem:Copyrights
for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)