-
Notifications
You must be signed in to change notification settings - Fork 109
[Help Needed] Implement provider for sticky scrolling in JAVA/JDT #1851
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,64 @@ | ||
| /******************************************************************************* | ||
| * Copyright (c) 2024 SAP SE. | ||
| * | ||
| * This program and the accompanying materials | ||
| * are made available under the terms of the Eclipse Public License 2.0 | ||
| * which accompanies this distribution, and is available at | ||
| * https://www.eclipse.org/legal/epl-2.0/ | ||
| * | ||
| * SPDX-License-Identifier: EPL-2.0 | ||
| * | ||
| * Contributors: | ||
| * SAP SE - initial API and implementation | ||
| *******************************************************************************/ | ||
| package org.eclipse.jdt.internal.ui.javaeditor; | ||
|
|
||
| import java.util.LinkedList; | ||
| import java.util.List; | ||
|
|
||
| import org.eclipse.jface.text.BadLocationException; | ||
| import org.eclipse.jface.text.source.ISourceViewer; | ||
|
|
||
| import org.eclipse.ui.texteditor.stickyscroll.IStickyLine; | ||
| import org.eclipse.ui.texteditor.stickyscroll.IStickyLinesProvider; | ||
| import org.eclipse.ui.texteditor.stickyscroll.StickyLine; | ||
|
|
||
| import org.eclipse.jdt.core.IJavaElement; | ||
| import org.eclipse.jdt.core.ISourceRange; | ||
| import org.eclipse.jdt.core.ISourceReference; | ||
| import org.eclipse.jdt.core.JavaModelException; | ||
|
|
||
| public class StickyLinesProviderJava implements IStickyLinesProvider { | ||
|
|
||
| @Override | ||
| public List<IStickyLine> getStickyLines(ISourceViewer sourceViewer, int lineNumber, StickyLinesProperties properties) { | ||
| LinkedList<IStickyLine> stickyLines= new LinkedList<>(); | ||
| JavaEditor javaEditor= (JavaEditor) properties.editor(); | ||
|
|
||
| IJavaElement element= null; | ||
| try { | ||
| element= javaEditor.getElementAt(sourceViewer.getDocument().getLineOffset(lineNumber)); | ||
| } catch (BadLocationException e) { | ||
| // TODO Auto-generated catch block | ||
| e.printStackTrace(); | ||
|
Comment on lines
+42
to
+43
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just commenting as someone interested in this feature: I guess you plan to change the error handling to write the exception to the Error Log or similar?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Will do |
||
| } | ||
|
|
||
| while (element != null) { | ||
| if (element.getElementType() == IJavaElement.METHOD || element.getElementType() == IJavaElement.TYPE) { | ||
| try { | ||
| ISourceRange sourceRange= ((ISourceReference) element).getNameRange(); | ||
| int offset= sourceRange.getOffset(); | ||
| int stickyLineNumber= sourceViewer.getDocument().getLineOfOffset(offset); | ||
| stickyLines.addFirst(new StickyLine(stickyLineNumber, sourceViewer)); | ||
| } catch (JavaModelException | BadLocationException e) { | ||
| // TODO Auto-generated catch block | ||
| e.printStackTrace(); | ||
| } | ||
| } | ||
| element= element.getParent(); | ||
| } | ||
|
|
||
| return stickyLines; | ||
| } | ||
|
|
||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.