You can subscribe to this list here.
2004 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
|
Feb
(1) |
Mar
(2) |
Apr
(1) |
May
|
Jun
(2) |
Jul
(2) |
Aug
(4) |
Sep
(3) |
Oct
(1) |
Nov
(2) |
Dec
|
2006 |
Jan
(2) |
Feb
(4) |
Mar
(1) |
Apr
(49) |
May
(123) |
Jun
(162) |
Jul
(96) |
Aug
(59) |
Sep
(69) |
Oct
(73) |
Nov
(71) |
Dec
(29) |
2007 |
Jan
(68) |
Feb
(97) |
Mar
(170) |
Apr
(86) |
May
(78) |
Jun
(62) |
Jul
(114) |
Aug
(71) |
Sep
(145) |
Oct
(107) |
Nov
(43) |
Dec
(41) |
2008 |
Jan
(46) |
Feb
(66) |
Mar
(70) |
Apr
(91) |
May
(119) |
Jun
(104) |
Jul
(92) |
Aug
(83) |
Sep
(68) |
Oct
(146) |
Nov
(76) |
Dec
(70) |
2009 |
Jan
(114) |
Feb
(101) |
Mar
(153) |
Apr
(203) |
May
(85) |
Jun
(100) |
Jul
(109) |
Aug
(93) |
Sep
(48) |
Oct
(2) |
Nov
(1) |
Dec
(15) |
2010 |
Jan
(9) |
Feb
(12) |
Mar
(25) |
Apr
(61) |
May
(107) |
Jun
(75) |
Jul
(76) |
Aug
(91) |
Sep
(100) |
Oct
(46) |
Nov
(47) |
Dec
(28) |
2011 |
Jan
(105) |
Feb
(88) |
Mar
(82) |
Apr
(45) |
May
(46) |
Jun
(76) |
Jul
(73) |
Aug
(77) |
Sep
(53) |
Oct
(65) |
Nov
(58) |
Dec
(57) |
2012 |
Jan
(53) |
Feb
(19) |
Mar
(4) |
Apr
(9) |
May
(2) |
Jun
(3) |
Jul
(1) |
Aug
(3) |
Sep
(3) |
Oct
(4) |
Nov
(1) |
Dec
(12) |
2013 |
Jan
(6) |
Feb
(2) |
Mar
(3) |
Apr
|
May
(2) |
Jun
(8) |
Jul
(2) |
Aug
|
Sep
(1) |
Oct
|
Nov
(2) |
Dec
(2) |
2014 |
Jan
(4) |
Feb
|
Mar
(1) |
Apr
|
May
(3) |
Jun
|
Jul
(1) |
Aug
(1) |
Sep
(4) |
Oct
(1) |
Nov
(3) |
Dec
(2) |
2015 |
Jan
(1) |
Feb
(3) |
Mar
|
Apr
(2) |
May
(4) |
Jun
(1) |
Jul
(5) |
Aug
(12) |
Sep
|
Oct
(1) |
Nov
|
Dec
(15) |
2016 |
Jan
(16) |
Feb
(7) |
Mar
|
Apr
|
May
(3) |
Jun
(8) |
Jul
|
Aug
(2) |
Sep
|
Oct
(1) |
Nov
(5) |
Dec
|
2017 |
Jan
(1) |
Feb
|
Mar
(1) |
Apr
(1) |
May
|
Jun
(2) |
Jul
|
Aug
(1) |
Sep
(3) |
Oct
|
Nov
(2) |
Dec
|
2018 |
Jan
|
Feb
(2) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
(1) |
Oct
|
Nov
(1) |
Dec
|
2019 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2020 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
(1) |
2021 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2023 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2024 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: SourceForge.net <no...@so...> - 2006-05-29 12:47:42
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3754842 By: mschorn Hi Fabio, thanks for the response. I have tried pydevd.settrace(). I seems to work, but only once? If it passes pydevd.settrace() a second time the debugger does not break. It would be much easier to break into a regular breakpoint when you see a problem in the running program - instead ot stopping the process, changing the code and navigate to the problem again. Or am I making something wrong? Regards, Marcus ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: Fabio Z. <fa...@gm...> - 2006-05-29 10:43:09
|
Hi Matthew & Toby, I'm forwarding this to the pydev-users list because I think that others may be able to take advantage of this answer... Pydev currently does no exception-handling, however, you can add your own i= f you want to do so by changing the sys.__excepthook__ E.g.: def myHook(*args, **kwargs): sys._original_excepthook(*args, **kwargs) sys._original_excepthook =3D sys.__excepthook__ sys.__excepthook__ =3D myHook And then you can put a breakpoint in the 'sys._original_excepthook(*args, **kwargs)' line, so that whenever you have an unhandled exception it will stop there. An implementation of exception-handling in the debugger is planned, but it is still not implemented, so, you can add your own in this way. Cheers, Fabio On 5/28/06, Tan, Tobias <to...@cs...> wrote: > > Dear Fabio, > > when the debug terminates because of an error, why do we not see any stac= k > variables. this makes it almost impossible to debug. also, our watched > variables report no values as well. > > Regards, > Matthew & Toby > |
From: SourceForge.net <no...@so...> - 2006-05-28 19:47:37
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3754119 By: fabioz Ok, as you're trying pydev extensions, have you tried using pydevd.settrace ? (as pointed in http://www.fabioz.com/pydev/manual_adv_remote_debugger.html) -- You need to start the remote debugger server before that call. Cheers, Fabio ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-27 15:05:25
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3753154 By: mschorn Sorry, g = pydevd.GetGlobalDebugger() works only in Debug-Mode. I initialized every cherrypy thread now in this way. CP has an callback-API for doing so. But I can still not break into any of the running threads. Any idea what to do? Thanks, Marcus ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-27 07:46:40
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3752907 By: mschorn Tried cherrypy debugging again and wanted to use your recipe. g = pydevd.GetGlobalDebugger() - returns None. Any further advice? Thank you. Marcus ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-27 00:19:55
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3752717 By: nobody I have configured Eclipse as per the Plone site on using Eclipse to run ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-26 14:36:55
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3752031 By: modelint I'm running: Version: 3.1.0 Build id: I20050627-1435 ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-26 10:32:23
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3751266 By: fabioz Actually, if your files are under the products folder, then source folder should probably be the products folder... (and if you want you can create another project that has it as a reference) There is a getting started guide at http://www.fabioz.com/pydev/manual_101_root.html that shows how to config your projects... It does not specifically treat zope, but it should be the same as any other 'regular' project. Cheers, Fabio ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-26 02:57:06
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3750872 By: treaves Yes, thanks, I didn't really expect magic. :-) I have a project, I have a source folder. Do I still need to link / copy my product into the Products directory? I have. But when I explicitly call break, the source file that is opened is the one from Products, not from my project. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-25 21:59:08
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3750611 By: fabioz Which Eclipse version are you using? ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-25 21:24:09
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3750568 By: modelint I fixed the problem by adding Pydev scope to each key command (shiftleft and right). Previously Window scope was sufficient so it seems like an inheritance rule changed somewhere. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-25 21:12:32
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3750547 By: modelint After I installed 1.0.8 I noticed that my key shortcuts for the editor shift-left/right operations stopped working. I tried changing the key associations, but that doesn't work. I tried turning code folding and smart indent on and off, but that doesn't seem to be part of the problem. Suggestions? ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-25 10:39:29
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3749671 By: fabioz Well, you must create a project that contains your files that are executed in plone, create a source folder for that files and configure it as you'd configure any other normal project... Cheers, Fabio ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-25 01:23:59
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3749169 By: treaves I have configured Eclipse as per the Plone site on using Eclipse to run & debug. I can start Zope from within Eclipse, and see the log output, and when an error is logged, I can click that error to be taken to the file where he eror occured. What I can not seem to do is debug my code. What is the corect way to do this? Do I install my project in Products as normal? When I do this, and double-click an error, a file is opened but I can not do anyhting with it. It seems it does not know that the file opened is in the eclipse project. Any help would be greatly appreciated. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-24 20:57:23
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3748962 By: fabioz Actually, you should create a project at that location instead of creating a linked folder... -- Fabio ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-24 20:38:16
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3748944 By: nobody hi- when i create a regular folder there is an advanced tab where i can link it to a local folder i.e. c:\eclipse\workspace\myPyProjName that is all i really want it to do. i am not so sure about create package or source folder but i dont really need those right now. thanks very much, jim ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-24 20:02:41
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3748898 By: nobody hi- i created a pydev project. when i go to create a new package (used to store a group of modules) or create a source folder, i keep getting prompted to create a regular module. i'd like to store my files in a directory under workspace so they are backed up. i.e. c:\eclipse\workspace\myprojfiles. i hooked up pyswt and ran a test file ok. i dont know where this src folder that is getting created is storing my files. i cant see it in the c:\eclipse directory structure. thanks for any tips, jim ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: Fabio Z. <fa...@gm...> - 2006-05-24 20:01:42
|
Hi All, Pydev and Pydev Extensions 1.0.8 have been released Check http://www.fabioz.com/pydev for details on Pydev Extensions and http://pydev.sf.net for details on Pydev This is a 'single-bugfix' release because of a major bug that could cause Pydev to hang when making a new line under certain condations. What is PyDev? --------------------------- PyDev is a plugin that enables users to use Eclipse for Python and Jython development -- making Eclipse a first class Python IDE -- It comes with man= y goodies such as code completion, syntax highlighting, syntax analysis, refactor, debug and many others. Cheers, --=20 Fabio Zadrozny ------------------------------------------------------ Software Developer ESSS - Engineering Simulation and Scientific Software http://www.esss.com.br Pydev Extensions http://www.fabioz.com/pydev Pydev - Python Development Enviroment for Eclipse http://pydev.sf.net http://pydev.blogspot.com |
From: SourceForge.net <no...@so...> - 2006-05-24 10:41:16
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3748051 By: fabioz Ok, it appears this has been reported already, so, I'll treat this as a 'high-priority' bug, and will try to release version 1.0.8 with this single bug-fix today... Cheers, Fabio ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-05-24 10:35:41
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3748043 By: hweber Hi, I'm running Pydev on Eclipse 3.1.2 under Windows XP. I updated Pydev from version 1.0.6 to version 1.0.7 and now Eclipse freezes when I try to insert a new line in some source files. Mysteriously it doesn't happen on every line. However, I can reproduce it so that a line where it hangs once will cause it to hang again when I try it again. I'm not sure about this, but lines that are inside or immediately (up to 2 or 3 lines) below a doc string seem to be afflicted more than others. Switching back to version 1.0.6 removes the problem, switching to 1.0.7 brings it back. Any ideas? Regards, Henrik ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: Fabio Z. <fa...@gm...> - 2006-05-23 19:33:46
|
Actually not... can you add a bug report? On 5/23/06, Don Taylor <nos...@gm...> wrote: > > Fabio Zadrozny wrote: > > Hi All, > > > > Pydev and Pydev Extensions 1.0.7 have been released > > > - Force code-analysis in the current editor (Ctrl+2+C) > > > > I notice that you actually have to enter (Ctrl+2, C, Enter) to force > code analysis. > > Was the requirement for hitting (Enter) was intentional? > > Don. > > > ------------------------------------------------------- > All the advantages of Linux Managed Hosting--Without the Cost and Risk! > Fully trained technicians. The highest number of Red Hat certifications i= n > the hosting industry. Fanatical Support. Click to learn more > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D107521&bid=3D248729&dat= =3D121642 > _______________________________________________ > Pydev-users mailing list > Pyd...@li... > https://lists.sourceforge.net/lists/listinfo/pydev-users > |
From: Don T. <nos...@gm...> - 2006-05-23 19:28:21
|
Fabio Zadrozny wrote: > Hi All, > > Pydev and Pydev Extensions 1.0.7 have been released > - Force code-analysis in the current editor (Ctrl+2+C) > I notice that you actually have to enter (Ctrl+2, C, Enter) to force code analysis. Was the requirement for hitting (Enter) was intentional? Don. |
From: SourceForge.net <no...@so...> - 2006-05-23 19:24:33
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3747195 By: nobody So... to give you a most complete answer, I've done some tests. I will try here to make you share of all my actions and observations. 1. I've completely reinstalled eclipse (RC5) and pydev (1.0.7). To be sure that's not an eclipse configuration problem, I've created a now workplace. 2. After configuring pydev and some eclipse reboot. I've discovered that the JVM stay launched when a python file is open in eclipse. To be able to restart eclipse (without .lock problem) I must kill the java process. To close eclipse properly, I must close all .py files, change perspective and restart eclipse twice (one by kill, one normal close). Moreover, the first time (and only the first!) I kill the JVM, I've some informations into the .log file. IMPORTANT: the file required by java is present in my system and the path is correct this is probably why I don't have problem the second time and other a kill the JVM [masked_path]/workspace/.metadata/.plugins/org.python.pydev/L3Vzci9ia W4vcHl0aG9uMi40 !ENTRY org.python.pydev 1 1 2006-05-23 20:35:49.972 !MESSAGE java.io.FileNotFoundException: [masked_path]/workspace/.metadata/.plugins/org.python.pydev/L3Vzci9iaW4vcHl0aG9uMi40 (No such file or directory) !STACK 0 java.lang.RuntimeException: java.io.FileNotFoundException: [masked_path]/workspace/.metadata/.plugins/org.python.pydev/L3Vzci9iaW4vcHl0aG9uMi40 (No such file or directory) at org.python.pydev.plugin.PydevPlugin.readFromPlatformFile(PydevPlugin.java:99 8) at org.python.pydev.ui.interpreters.AbstractInterpreterManager.getInterpretersF romPersistedString(AbstractInterpreterManager.java:244) at org.python.pydev.ui.pythonpathconf.AbstractInterpreterEditor.parseString(Abs tractInterpreterEditor.java:625) at org.python.pydev.ui.pythonpathconf.AbstractInterpreterEditor.doLoad(Abstract InterpreterEditor.java:602) at org.eclipse.jface.preference.FieldEditor.load(FieldEditor.java:496) at org.eclipse.jface.preference.FieldEditorPreferencePage.initialize(FieldEdito rPreferencePage.java:300) at org.eclipse.jface.preference.FieldEditorPreferencePage.createContents(FieldE ditorPreferencePage.java:226) at org.eclipse.jface.preference.PreferencePage.createControl(PreferencePage.jav a:233) at org.eclipse.jface.preference.PreferenceDialog.createPageControl(PreferenceDi alog.java:1403) at org.eclipse.jface.preference.PreferenceDialog$12.run(PreferenceDialog.java:1 162) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:843) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:44) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:149) at org.eclipse.jface.preference.PreferenceDialog.showPage(PreferenceDialog.java :1156) at org.eclipse.ui.internal.dialogs.FilteredPreferenceDialog.showPage ... 3. Eclipse don't freeze if I uncheck the 2 options below in the Pydev preferences: - Pydev > Code completion > Use Code completion? - Pydev > Code completion > Autocomplete on '.'? At this time, I can work without any problem; eclipse don't freeze but of course I don't have any completion! Note: I style have a problem to close properly eclise (cf point 2) 4. My PYTHONPATH sounds good. I can run and debug all my python files. Finally, I haven't created any bug report yet. Moreover I can start a new one if you want (and if you understand my frenglish ;) Best regards Pascal ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: Don T. <nos...@gm...> - 2006-05-23 19:11:21
|
I notice that the "Wrap Paragraph" Pydev script is in Pydev 1.0.7. Don. A Pydev script for rewrapping the current paragraph to fit inside the print margin preference in Eclipse (defaults to 80 columns). A paragraph is a block of lines with a common leading string such as '# ' or a number of spaces. The lines in the newly wrapped paragraph will all have the same leading string as the original paragraph. Usage: Position cursor inside paragraph to be rewrapped and hit <ctrl+2>, w Caveats: Embedded tabs are always replaced by single spaces. Does not wrap if the cursor is within the first line of a docstring. Wrap Paragraph makes simple assumptions about paragraphs. Check your results, <ctrl-Z> will undo the last rewrap. |
From: Fabio Z. <fa...@gm...> - 2006-05-23 14:33:22
|
Hi Don, On 5/23/06, Don Taylor <nos...@gm...> wrote: > > Fabio: > > I wonder what you think of the idea of being able to "Bookmark all > Occurrences" as well as "Mark all Occurrences"? > > The idea is that you want to keep markers to all occurrences of a > selection while you go through the code making modifications to the > code. "Mark all Occurrences" is 'read-only' in that as soon as you > click elsewhere in the code then it changes the thing being marked. > This is useful, but sometimes you want to keep the 'markers' around > while you are editting. > > My suggestion is to create a bookmark on every line that contains an > occurrence. The bookmark names would all be the same - the text of the > occurrence. The normal bookmarks view can be used to navigate and > delete the bookmarks. > > I thought that I could do this in a Pydev script - but your occurrence > finding code is in Pydev extensions so I don't think that I can get at > the marking code, can I? You don't actually need the code, just get the occurrences directly... You can use them through the java API getting the occurrences directly, or get them from the cache I store them (at the editor).... So to get the annotations: from com.python.pydev import PydevPlugin editor.cache.get(PydevPlugin.ANNOTATIONS_CACHE_KEY) --> will return you a List<Annotation> To get the Position of the Annotation, you can do: annotationModel =3D editor.getDocumentProvider().getAnnotationModel( editor.getEditorInput()) annotationModel.getPosition(annotation) Cheers, Fabio |