June 7, 2011  
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30

[00:00:18] *** kthomas_vh_ has quit IRC
[00:01:22] <shurane> I guess a regular eclipse3.6 install --> more particularly, whatever that's in eclipse/src, I guess?
[00:01:56] <ronr_> you can always download the sources.
[00:01:58] <shurane> i'm not sure how to go about figuring this out without downloading the source (which I'm kinda feeling lazy about...)
[00:02:02] <shurane> Drat.
[00:02:17] <shurane> Was kind of hoping there was like an eclipse blog for this stuff (like in http://www.eclipse.org/eclipse/development/eclipse_3_0_stats.html)
[00:03:34] *** ExtraSpice has quit IRC
[00:05:34] *** acron17 has joined #eclipse
[00:05:49] *** nsando has quit IRC
[00:06:13] *** EricInBNE has joined #eclipse
[00:06:54] <acron17> hi there! can someone tell me how to write to errors and notices to the eclipse error view from a plugin or point me to some docs? i didn't find much on this on google...
[00:10:12] *** briandealwis has joined #eclipse
[00:14:43] *** briandealwis has quit IRC
[00:16:58] *** dirk_77_ has quit IRC
[00:17:56] <lisak> cbeust, man I don't how many hours I'm solving this... but I gotta give up ... though I don't know how to run my tests now
[00:19:25] <cbeust> So you're still having this problem but only with your project, you can't reproduce it on a smaller test case?
[00:20:52] <lisak> no, the one I send you, it works there
[00:21:03] <lisak> all my other tests in project works
[00:21:18] <lisak> and I narrowed this class down to this http://pastie.org/2029533
[00:21:28] <lisak> which works
[00:21:45] <cbeust> You keep giving me examples that work :)
[00:22:16] *** cgb has quit IRC
[00:22:19] <kril> acron17: Try using IResource#createMarker with argument IMarker.PROBLEM
[00:22:36] <cbeust> All I need is a project that I can run and I can most likely fix it for you
[00:22:39] *** Kamaran has quit IRC
[00:22:44] <kril> and the marker should just show up in the problems window
[00:22:46] *** elbeardmorez has quit IRC
[00:22:56] *** jesmon has quit IRC
[00:23:19] <acron17> kril: thanks will look for IMarker.
[00:23:50] <acron17> i found on something on a webpage: getDefault().getLog().log(new Status(status, getPluginID( ), message,null) );
[00:23:51] <lisak> cbeust, and how does it work internally ? resolving the methods
[00:23:59] *** kril has quit IRC
[00:24:14] <lisak> I noticed that if there is a compilation error, testNG don't see any methods in the Class
[00:24:26] <acron17> that prints something (the IStatus i guess) to the console but the error view remains empty
[00:25:22] <ronr_> you mean testNG can't test classes that don't compile? how odd.
[00:25:48] *** tewecske has quit IRC
[00:26:28] <cbeust> lisak: The code that detects test method is here:   https://github.com/cbeust/testng-eclipse/blob/master/src/main/org/testng/eclipse/launch/components/AnnotationVisitor.java  There is potential for a few corner cases
[00:26:48] <cbeust> I tried switching the ordering of @Test and the custom annotation but it's still working so far
[00:27:38] <cbeust> Again, I don't want you to go debug this, I can do it myself quickly, but I need a project showing the problem
[00:34:18] <acron17> found out that the log is written, but the view is not updated. isn't the error view supposed to refresh itself automatically?
[00:34:56] <lisak> cbeust, got one
[00:35:21] *** ronr_ has quit IRC
[00:35:54] <lisak> cbeust, sent, but I'm not sure it is free of misconfiguration, I barely see the keyboard now
[00:36:18] <cbeust> lisak: That might be a problem to write code.
[00:37:01] <lisak> I was writing code 3 hours ago last time, since the context menu was methodless :-)
[00:37:24] <nbf> yes
[00:38:25] <cbeust> lisak: Confirmed, I see the problem. Debugging.
[00:38:51] <lisak> omg this is the happiest moment of last days
[00:38:54] <lisak> :)
[00:39:03] <cbeust> Wait to see if I can figure it out first
[00:41:48] *** evil_gordita has joined #eclipse
[00:42:34] <julianor> evil_gordita: hola gordita
[00:42:46] <evil_gordita> Good evening.
[00:43:10] *** FalsAlarm has quit IRC
[00:44:03] *** kthomas has quit IRC
[00:49:57] *** FalsAlarm has joined #eclipse
[00:56:48] *** hex` has quit IRC
[00:57:12] *** kthomas has joined #eclipse
[01:01:00] <lisak>  cbeust, wow, that's an awful bug ... would you please fill a ticket ? I've never done any plugin dev, so I would hardly describe that
[01:01:53] <lisak> that's why I was so desperately trying to reproduce without success, I was always clicking on the methods with the Generics map in it
[01:02:36] *** DroidAgent has quit IRC
[01:05:15] <cbeust> lisak: I stand corrected, the bug was in my code. Pushing a new plug-in now
[01:05:27] *** HD|Laptop has joined #eclipse
[01:06:40] <cbeust> lisak: Update your plug-in
[01:07:50] *** HardDisk_WP has quit IRC
[01:07:50] *** pombreda1 has joined #eclipse
[01:07:51] <lisak> thanks man, you saved the day
[01:08:43] *** pombreda has quit IRC
[01:10:12] <cbeust> Logging off for a few hours, let me know by email if the fix worked.
[01:10:49] <lisak> I'm glad it's resolved ... I will
[01:12:16] *** cbeust has quit IRC
[01:13:13] *** fahadsadah has quit IRC
[01:17:56] <acron17> another problem. in my plugin i want to edit an item. i have an simple dialog to add items and now want to edit an existing item by loading its value to the input fields of the dialog
[01:17:58] *** Dessimat0r has quit IRC
[01:18:45] <acron17> the problem is, the input fields are not created before Dialog#open() is called leading to a nullpointer....
[01:19:49] <acron17> is there a way to create the whole dialog without disaplaying it immediately. is there a better way to achieve what i want?
[01:24:39] *** Dessimat0r has joined #eclipse
[01:30:53] *** kthomas has quit IRC
[01:39:15] *** binary_crayon has quit IRC
[01:46:14] *** cbeust has joined #eclipse
[01:47:07] *** kthomas has joined #eclipse
[01:49:07] <EricInBNE> eclipse package explorer is empty for me
[01:49:11] <EricInBNE> how do I fix it?
[01:51:33] *** Echidna has quit IRC
[01:52:33] <nitind> Why should it be showing?
[01:52:49] *** Bass10 has quit IRC
[01:54:16] *** Bass10 has joined #eclipse
[01:54:35] <EricInBNE> my projects?
[01:55:10] <EricInBNE> nitind, every other day for the last 5 months it showed all the projects in my workspace, today it's empty
[01:55:16] <EricInBNE> projects are still there
[01:55:26] <nitind> Check the view's Filters from its menu.
[01:56:32] <EricInBNE> nitind, it's a bug. This doesn't fix it: http://www.eclipsezone.com/eclipse/forums/t77738.rhtml
[01:57:24] *** Echidna has joined #eclipse
[01:58:28] *** acron17 has quit IRC
[02:00:22] <EricInBNE> if i switch to another workspace it shows that other workspace.
[02:00:23] <EricInBNE> this has been caused because i have been switching workspaces a bit lately.
[02:00:56] <EricInBNE> I think one of my workspaces has some stateful bug that is preventing package explorer from working correctly
[02:10:49] *** pombreda1 has quit IRC
[02:10:55] *** pombreda has joined #eclipse
[02:13:58] *** mne7 has quit IRC
[02:18:12] *** mne7 has joined #eclipse
[02:24:50] *** heinz has quit IRC
[02:30:06] *** sr__ has quit IRC
[02:33:07] *** uncreative has joined #eclipse
[02:35:47] <uncreative> i'm on os x and i have eclipse Version: 3.6.2.r362_v20110210? i have eclipse running and i'm trying to open a file that is in my workspace from the command line: /Applications/eclipse/eclipse --launcher.openFile myfile.php this opens a new eclipse and doesn't open the file. any ideas on what i'm doing wrong?
[02:36:50] *** mne7 has quit IRC
[02:37:46] *** nitrospectide has quit IRC
[02:38:22] <paulweb515_> uncreative: that sounds decent ... hmmm, maybe in OSX problem
[02:39:08] <uncreative> paulweb515_: the weird thing is that all the blogs i saw about it said that it was simplest on osx .. :/ but i have no idea how to make it work
[02:39:23] <paulweb515_> uncreative: does your eclipse.ini already have "--launcher.defaultAction
[02:39:23] <paulweb515_> openFile" in it?
[02:39:44] <uncreative> paulweb515_: yep
[02:39:58] <paulweb515_> uncreative: maybe you need the absolute path to the resource ?
[02:40:13] <paulweb515_> /Applications/eclipse/eclipse --launcher.openFile $(pwd)/myfile.php
[02:40:23] <paulweb515_> or well, the OSX equivalent
[02:40:54] *** mne7 has joined #eclipse
[02:40:56] <uncreative> paulweb515_: i tried absolute path, and relative to dir i'm in , and relative to dir currently open workspace is
[02:41:48] <lisak> cbeust, it works, you saved me, thanks
[02:42:26] <paulweb515_> uncreative: hmmm, it says relative paths should work anyway: http://help.eclipse.org/helios/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/misc/runtime-options.html
[02:42:59] <uncreative> paulweb515_: weird :/
[02:43:28] *** xxen has quit IRC
[02:45:33] <paulweb515_> uncreative: bah, you're not alone ... I can't get this to work either: eclipse/eclipse --launcher.openFile $(pwd)/async-v01.txt
[02:46:57] * paulweb515_ sighs
[02:47:01] <paulweb515_> it does work in 3.7
[02:47:04] <paulweb515_> just not in 4.1
[02:48:33] <uncreative> paulweb515_: hmm perhaps i'll download 3.7 then :)
[02:48:50] <paulweb515_> uncreative: it should work in 3.6.2 if it works at all :-)
[02:48:52] <paulweb515_> uncreative: http://aniefer.blogspot.com/2010/05/opening-files-in-eclipse-from-command.html
[02:49:35] <uncreative> paulweb515_: yeah i saw that one - but it explained that it was mostly not talking about the mac
[02:49:50] <uncreative> paulweb515_:  supposedly on the mac things should "just work" :p
[02:50:12] <paulweb515_> uncreative: unfortunately the guy that that I could ask ... just left on his honeymoon :-)
[02:51:36] <uncreative> paulweb515_: ooo wouldn't want to interrupt that ;) downloading eclipse indigo RC3!
[02:53:31] <paulweb515_> uncreative: what build do you use?
[02:53:37] <paulweb515_> cocoa 64 bit?
[02:53:46] <uncreative> paulweb515_: yep
[02:54:17] <paulweb515_> :-)  "On Mac Cocoa, the feature works without having to tweak anything. You   can right-click (or Ctrl-click) on a file and pick "Open With", then   select Eclipse."
[02:55:35] <paulweb515_> uncreative: in theory (as long as you only start up one eclipse) then any subsequent open with eclipse requests should go there
[02:55:45] <paulweb515_> uncreative: well, let us know how Indigo goes :-)
[02:56:48] <uncreative> paulweb515_: will do
[03:00:36] *** ksawicki has quit IRC
[03:00:42] *** SimonP86__ has quit IRC
[03:01:08] *** Echidna has quit IRC
[03:05:32] *** Echidna has joined #eclipse
[03:07:03] *** kthomas has quit IRC
[03:07:27] *** kthomas has joined #eclipse
[03:10:06] *** Seta00 has quit IRC
[03:10:11] *** Seta00 has joined #eclipse
[03:20:07] *** winegoddess has joined #eclipse
[03:20:28] <winegoddess> im trying to create a new workspace with projects, and am only copying src an the build.xml
[03:20:41] <winegoddess> however, an old pom.xml is being picked up. any ideas?
[03:22:24] *** mfladischer has quit IRC
[03:26:26] *** HD|Laptop has quit IRC
[03:35:18] *** mfladischer has joined #eclipse
[03:39:33] *** HardDisk_WP has joined #eclipse
[03:39:33] *** HardDisk_WP has joined #eclipse
[03:42:53] *** dark3n has quit IRC
[03:42:58] *** multi_io has quit IRC
[03:43:40] *** lisak has quit IRC
[03:43:56] *** bdamos has quit IRC
[03:44:49] *** Aniar has left #eclipse
[03:52:26] *** multi_io has joined #eclipse
[04:01:48] *** onekenthomas has quit IRC
[04:02:11] *** kthomas_vh_ has joined #eclipse
[04:02:17] *** GhostBear has quit IRC
[04:03:12] *** uncreative has quit IRC
[04:04:13] *** drei has joined #eclipse
[04:07:53] *** GhostBear has joined #eclipse
[04:08:50] *** dmiles_afk has quit IRC
[04:11:01] *** evil_gordita has quit IRC
[04:12:43] *** okulus has joined #eclipse
[04:14:03] *** klausk has joined #eclipse
[04:16:27] *** dijonyummy123 has quit IRC
[04:22:40] *** mne7 has quit IRC
[04:23:27] *** mne7 has joined #eclipse
[04:28:56] *** d_a_carver has quit IRC
[04:30:29] *** d_a_carver has joined #eclipse
[04:50:35] *** kthomas has quit IRC
[04:52:37] *** klausk has quit IRC
[04:58:12] *** mne7 has quit IRC
[05:02:51] *** drei has quit IRC
[05:05:39] *** kthomas has joined #eclipse
[05:05:56] *** kthomas_vh_ has quit IRC
[05:24:50] *** rcjsuen has quit IRC
[05:26:19] *** kgilmer has quit IRC
[05:26:57] *** Dessimat0r has quit IRC
[05:31:00] *** d_a_carver has quit IRC
[05:31:11] *** kgilmer has joined #eclipse
[05:31:30] *** winegoddess has quit IRC
[05:37:51] *** kthomas_vh has joined #eclipse
[05:39:15] *** kthomas_vh has quit IRC
[05:39:20] *** kgilmer has quit IRC
[05:48:36] *** Bass10 has quit IRC
[05:52:29] *** monk14 has quit IRC
[05:52:35] *** monk14 has joined #eclipse
[05:55:40] *** kgilmer has joined #eclipse
[05:57:18] *** ramenmeal has joined #eclipse
[05:57:37] *** rawbdor has quit IRC
[06:01:44] *** ronr_ has joined #eclipse
[06:16:37] *** ronr_ has quit IRC
[06:21:41] *** BlaDe^ has quit IRC
[06:24:35] *** ramenmeal has quit IRC
[06:30:04] *** BlaDe^ has joined #eclipse
[06:31:48] *** ronr_ has joined #eclipse
[06:32:28] *** ExtraSpice has joined #eclipse
[06:38:38] *** deuterium has quit IRC
[06:39:05] *** deuterium has joined #eclipse
[06:40:00] *** nicoulaj has quit IRC
[06:40:56] *** Seta00 has quit IRC
[06:41:14] *** nicoulaj has joined #eclipse
[06:41:28] *** Zenopus_ has joined #eclipse
[06:41:31] *** Zenopus has quit IRC
[06:41:36] *** Zenopus_ is now known as Zenopus
[06:43:07] *** Seta00 has joined #eclipse
[06:43:38] *** Seta00 has joined #eclipse
[07:00:19] *** ronr_ has quit IRC
[07:00:30] *** aminpy has joined #eclipse
[07:04:53] *** tewecske has joined #eclipse
[07:14:31] *** rhk has joined #eclipse
[07:32:48] *** patricx has joined #eclipse
[07:33:08] <patricx> hi  to  you all
[07:33:14] *** TomTom has joined #eclipse
[07:33:27] <patricx>  please i have some  problem with eclipse
[07:33:53] <patricx> when  i  extract  th zip  file  that i downloaded
[07:34:08] <patricx>  and  launch eclipse  i have  errors
[07:34:19] <patricx>  please how to  fix  them
[07:34:21] <patricx> ?
[07:35:18] 
[07:36:15] <TomTom> as a developer you should know that your description of the problem is not sufficient. nobody will help you
[07:37:33] <patricx> i  have  log errors
[07:40:31] <patricx> TomTom this  is part  of the errors  that i have  when i  launch eclipse http://pastebin.com/9PzFr2xx
[07:40:46] *** Rodtusker has joined #eclipse
[07:41:09] *** rhk has quit IRC
[07:41:25] *** Rodtusker has quit IRC
[07:41:42] <patricx> http://pastebin.com/aT1tfAEL
[07:43:06] *** kthomas_vh has joined #eclipse
[07:43:48] *** kgilmer has quit IRC
[07:44:30] *** kthomas_vh has quit IRC
[07:45:19] *** kgilmer has joined #eclipse
[07:45:34] <patricx> TomTom  please any  idea?
[07:47:20] *** LongBeach has joined #eclipse
[07:49:56] *** kgilmer has quit IRC
[07:50:45] <TomTom> are you using only the JRE?
[07:51:05] *** Kamaran has joined #eclipse
[07:51:59] <patricx> yes
[07:52:02] <TomTom> bad
[07:52:07] <TomTom> JDK
[07:52:17] *** NiteRain has quit IRC
[07:52:21] <patricx> yeah
[07:53:06] <patricx> i have  two versions  of eclipse on  my  lap
[07:53:48] <patricx> one  works well  (and can't chechk updates) and the  other can't  even launch
[07:53:56] *** rawbdor has joined #eclipse
[07:55:34] <patricx> when i  check  update  i  have this  message  Cannot complete the request. This installation has not been configured properly for Software Updates.
[07:55:50] *** hex` has joined #eclipse
[07:56:43] *** hex`` has quit IRC
[07:56:49] *** mluser-home has quit IRC
[07:57:08] *** moraes has quit IRC
[07:58:14] *** KolakCC has joined #eclipse
[07:59:36] *** patricx has quit IRC
[08:00:49] *** moraes has joined #eclipse
[08:02:01] *** rkrul has joined #eclipse
[08:02:49] *** rkrul has quit IRC
[08:06:28] *** kgilmer has joined #eclipse
[08:08:11] *** kottlett has joined #eclipse
[08:22:55] *** jcp has quit IRC
[08:27:01] *** paissad has quit IRC
[08:30:35] *** jcp has joined #eclipse
[08:36:08] *** Kamaran has quit IRC
[08:36:12] *** Zenopus_ has joined #eclipse
[08:36:23] *** Zenopus has quit IRC
[08:36:28] *** Zenopus_ is now known as Zenopus
[08:38:15] *** aminpy has quit IRC
[08:50:00] *** aminpy has joined #eclipse
[08:50:07] *** ramenmeal has joined #eclipse
[08:54:43] *** dijonyummy has quit IRC
[08:56:52] *** dijonyummy has joined #eclipse
[09:05:59] *** Pasqualle has joined #eclipse
[09:08:23] *** SzymonB has joined #eclipse
[09:10:35] *** DroidAgent has joined #eclipse
[09:11:12] *** bobbyz has joined #eclipse
[09:12:12] *** kgilmer has quit IRC
[09:17:14] *** cbeust has quit IRC
[09:21:22] *** ronr_ has joined #eclipse
[09:25:50] *** kgilmer has joined #eclipse
[09:27:08] *** Zenopus_ has joined #eclipse
[09:28:38] *** Zenopus has quit IRC
[09:28:43] *** Zenopus_ is now known as Zenopus
[09:32:33] *** scorphus has quit IRC
[09:35:47] <ronr_> When I ask a candidate which version of Java they worked with, and they answer 'Helios', I know it's time to move on.
[09:43:52] <deSilva> hehehe
[09:47:55] *** hyppias has joined #eclipse
[09:50:41] *** adac has joined #eclipse
[09:52:12] <adac> Hi! I tried to refactor a java package name but now I run into trouble with the main classes: "Could not find the main class: at.ac.uibk.myproject.SegmentSwitch.  Program will exit." Any ideas how to resolve this again?
[09:52:46] <ronr_> how did you refactor?
[09:53:24] <adac> ronr_, right click on refactor -> rename
[09:53:46] <ronr_> okay, you
[09:53:47] <adac> *slect ackage name -> right click on refactor -> rename
[09:53:48] *** Zenopus_ has joined #eclipse
[09:53:58] <ronr_> when do you get ther
[09:54:02] <ronr_> argh
[09:54:04] <ronr_> wait
[09:54:19] <ronr_> when do you get the error you specified?
[09:54:37] <adac> when I try to start the main method
[09:54:52] <ronr_> and how do you try starting it?
[09:55:26] *** Zenopus has quit IRC
[09:55:33] *** Zenopus has joined #eclipse
[09:56:07] <adac> ronr_, right click on the .java fiel i'd like to run and slesct run as java apllication
[09:57:24] <ronr_> can you pastebin the class perhaps?
[09:57:50] *** Zenopus_ has quit IRC
[10:01:17] *** pombreda has quit IRC
[10:01:41] *** pombreda has joined #eclipse
[10:01:42] <adac> ronr_, It runs fine with the old package name, but renaming the package does break it. the class itself looks fine
[10:02:03] <adac> I cannot really pastbein it at this point sorry
[10:02:11] <ronr_> oh, it's okay.
[10:02:24] <ronr_> is your build automatically option enabled?
[10:02:35] <ronr_> did you try running clean on the project?
[10:02:45] <adac> ronr_, where can I find this coption?
[10:02:48] <adac> option
[10:03:03] <ronr_> under the Project menu.
[10:03:56] <adac> build automatically is enabled
[10:04:07] <adac> clean didn't change anything unfortunately
[10:04:34] <ronr_> I imagine the problem is with the SegmentSwitch class?
[10:05:04] <adac> ronr_, I have many main methods for testing isssues in several classes of the apckage
[10:05:10] <adac> they all seem briken
[10:05:13] <adac> broken
[10:05:33] <ronr_> you can't pastebin any sample?
[10:06:32] <adac> what exactly would you need?
[10:06:59] <ronr_> class declaration (including the package line) and the main method.
[10:07:45] *** z4z4 has joined #eclipse
[10:10:03] <adac> http://pastie.org/2031298 ronr_
[10:10:55] <ronr_> I need the actual class declaration too... 'public Class whatever...'. can you add that from the code?
[10:12:51] *** dmiles_afk has joined #eclipse
[10:12:52] <adac> http://pastie.org/2031298 ronr_
[10:14:25] <ronr_> you're not using ANT, right?
[10:14:51] <adac> ronr_, no
[10:15:21] *** malo_nj has joined #eclipse
[10:17:04] <ronr_> do you see a 'J' in the file icon?
[10:17:08] *** HardDisk_WP has quit IRC
[10:18:35] <ronr_> adac: ^
[10:18:39] *** aminpy has quit IRC
[10:18:43] *** ljc has joined #eclipse
[10:19:32] <adac> ronr_, jepp its tehre
[10:19:55] <ljc> Hello, I have added my axis libraries to my project, althouth my code doesnt compile? I think that i sould import also the file log4j.properties
[10:20:00] <adac> but when i renamed the apckage it gave me some warning already that main probabaly could break
[10:20:00] *** nicoulaj has quit IRC
[10:20:05] <ljc> But how can i do this?
[10:20:13] <ronr_> adac: okay, is it a 'full' J or do you see the outline of the letter with clear color?
[10:20:30] <ronr_> adac: can you show the warning?
[10:21:08] <ronr_> ljc: lack of log4j.properties file shouldn't affect compilation.
[10:21:30] <ljc> so whit is the problelm
[10:21:32] <ljc> ?
[10:21:33] *** nicoulaj has joined #eclipse
[10:21:40] <ronr_> ljc: I don't know?
[10:22:23] *** dirk_77_ has joined #eclipse
[10:25:15] <adac> ronr_, looks like a full J to me
[10:25:19] <adac> http://pastie.org/2031298 ronr_
[10:27:24] <ronr_> looking at the error.. in the meantime, if you can post a screenshot of eclipse, it may help, but if you can't that's okay.
[10:27:25] <ronr_> ~image
[10:27:26] <Arbalest> Please upload your screenshots online and then paste the link back to the channel - http://imagebin.org/index.php?page=add - http://www.freeimagehosting.net/ - http://imagebin.ca/upload.php - http://imageshack.us/
[10:27:43] <ronr_> btw, what's the previous package name?
[10:29:32] *** HardDisk_WP has joined #eclipse
[10:29:32] *** HardDisk_WP has joined #eclipse
[10:31:02] <adac> at.ac.uibk.myproject
[10:31:08] *** aminpy has joined #eclipse
[10:33:17] <ronr_> umm, what's the difference?
[10:34:21] *** ddk has joined #eclipse
[10:34:23] <adac> ronr_, ah sorry it was only "at.ac.uibk"
[10:34:24] *** ljc has left #eclipse
[10:35:07] <ronr_> no chance for a screenshot? don't need to see the code.
[10:36:00] <adac> ronr_, a screenshot of what?
[10:36:33] <ronr_> of eclipse.. the project explorer, expanded to show the class giving you the problem.
[10:40:37] <adac> ronr_, I have to move forward now. I will use th old version for now before the refactoring and try to solve this later
[10:40:41] <adac> thank you for your support
[10:41:45] <ronr_> adac: np. I'd also sugest trying to load your code in a new workspace.
[10:43:01] <adac> ronr_, kk thank you
[10:44:29] *** dijonyummy123 has joined #eclipse
[10:51:20] *** DroidAgent has quit IRC
[10:55:44] *** hyppias has quit IRC
[10:57:31] *** tvo has joined #eclipse
[10:59:31] *** DroidAgent has joined #eclipse
[11:00:52] *** rp2 has joined #eclipse
[11:03:46] <rp2> hi ... can anyone point me to instructions for installing Subversive on Helios SR2 that actually make sense?
[11:05:34] <ronr_> Subversive comes preinstalled with Helios.
[11:06:43] <rp2> really?
[11:06:52] <ronr_> yup.
[11:07:00] <rp2> it is not in the installed plugins list
[11:07:18] <ronr_> which eclipse package did you install?
[11:07:45] <ronr_> sorry, I gotta run.bbl.
[11:07:47] <rp2> what is an 'eclipse package'?
[11:07:49] <rp2> oh wait.
[11:08:13] <rp2> it's called 'Java EE IDE for Web Developers'
[11:08:20] <rp2> not that i know what that means
[11:10:35] <rp2> it does list a CVS client ...
[11:11:47] *** xxen has joined #eclipse
[11:11:55] *** ronr_ has quit IRC
[11:15:23] <rp2> *shrug*
[11:21:19] *** HardDisk_WP has quit IRC
[11:25:20] <rp2> whoops, I've found it. UI glitch
[11:29:19] *** ronr_ has joined #eclipse
[11:30:30] <ronr_> rp2: did you manage to solve things?
[11:33:11] *** HardDisk_WP has joined #eclipse
[11:33:12] *** HardDisk_WP has joined #eclipse
[11:33:35] *** Lhunar has quit IRC
[11:33:52] *** Lhunar has joined #eclipse
[11:42:24] *** dirk_77_ has quit IRC
[11:43:59] *** rawbdor has quit IRC
[11:45:54] *** HardDisk_WP has quit IRC
[11:48:27] *** ddk has quit IRC
[11:48:43] *** ddk has joined #eclipse
[12:04:51] *** apheff has quit IRC
[12:07:40] *** xxen has quit IRC
[12:09:21] *** lolmatic has joined #eclipse
[12:09:56] *** adac has quit IRC
[12:10:35] <rp2> yes, thanks
[12:10:44] <rp2> i was being stupid (as usual)
[12:11:04] <ronr_> hehe
[12:11:08] <ronr_> what was wrong?
[12:11:15] <rp2> I don't think Subversive was already installed though, I've installed it now
[12:11:48] <ronr_> that's great.
[12:12:00] <rp2> well, you know when installing software you first have to select a site to install from. somehow i overlooked that
[12:12:12] <rp2> it's not like I haven't done it before
[12:12:17] <ronr_> I see.
[12:15:59] *** HardDisk_WP has joined #eclipse
[12:16:49] <rp2> it feels a lot like the old Windows days ... rebooting umpteen times
[12:17:43] *** fornext has joined #eclipse
[12:25:54] *** tewecske has quit IRC
[12:26:42] *** Seta00 has quit IRC
[12:27:02] *** fornext has quit IRC
[12:27:06] *** Seta00 has joined #eclipse
[12:32:04] *** rcjsuen has joined #eclipse
[12:36:11] *** malo_nj has quit IRC
[12:50:08] *** lisak has joined #eclipse
[12:59:01] *** EricInBNE has quit IRC
[12:59:24] *** EricInBNE has joined #eclipse
[13:02:07] *** collad has joined #eclipse
[13:07:15] *** ramenmeal has quit IRC
[13:09:52] *** okulus has left #eclipse
[13:10:15] *** klausk has joined #eclipse
[13:26:44] *** Zenopus_ has joined #eclipse
[13:27:54] *** Zenopus has quit IRC
[13:27:59] *** Zenopus_ is now known as Zenopus
[13:28:37] *** taps has quit IRC
[13:28:55] *** taps has joined #eclipse
[13:29:01] *** Milyardo has quit IRC
[13:29:18] *** Milyardo has joined #eclipse
[13:39:46] *** rcjsuen has quit IRC
[13:42:51] *** dirk_77_ has joined #eclipse
[13:43:18] *** deSilva has quit IRC
[13:50:03] *** dirk_77_ has quit IRC
[13:50:26] *** klausk has quit IRC
[13:53:30] *** mfladischer has quit IRC
[13:57:45] *** deSilva has joined #eclipse
[13:59:00] *** mfladischer has joined #eclipse
[13:59:58] *** lolmatic has quit IRC
[14:01:12] *** UrsoBranco has joined #eclipse
[14:03:02] *** otaviobp has joined #eclipse
[14:05:40] *** kgilmer has quit IRC
[14:07:10] *** wainersm has joined #eclipse
[14:12:16] *** dirk_77_ has joined #eclipse
[14:14:25] *** aminpy has quit IRC
[14:17:28] *** anubis has joined #eclipse
[14:17:53] <anubis> Hello, where can the path be set where eclipse looks for code-completion?
[14:20:25] *** jerboaa has joined #eclipse
[14:22:14] *** kgilmer has joined #eclipse
[14:25:38] *** anubis has quit IRC
[14:29:51] *** SimonP86 has joined #eclipse
[14:33:04] *** lolmatic has joined #eclipse
[14:36:25] *** imeikas has joined #eclipse
[14:37:40] *** shurane has quit IRC
[14:49:03] *** nicoulaj has quit IRC
[14:49:13] *** deuterium has quit IRC
[14:49:53] *** Robbster has joined #eclipse
[14:50:10] <Robbster> hi all, is there a BIRT room?
[14:50:31] * Robbster goes pink
[14:50:41] *** dsugar100 has quit IRC
[14:50:51] <Robbster> sorry - just scrolled further down on the wiki page (http://wiki.eclipse.org/IRC)
[14:51:15] *** klausk has joined #eclipse
[14:51:16] *** DrSlony has joined #eclipse
[14:51:45] <DrSlony> Hey, I have a php file with mostly html in it and I'm using aptana, is there a feature to clean the code up, fix indentation, etc?
[14:54:15] *** mziaei has joined #eclipse
[14:56:22] *** mne7 has joined #eclipse
[14:56:27] *** sr__ has joined #eclipse
[14:56:47] <Robbster> I'm new to BIRT and looking for some guidance on deployment. My report runs off a webservice. For testing we use a static file. How do I deploy this in a 'production' environment with a different url for the webservice data source?
[14:57:41] *** Zenopus_ has joined #eclipse
[14:58:19] *** Zenopus has quit IRC
[14:58:25] *** Zenopus_ is now known as Zenopus
[15:00:36] <DrSlony> ah, got it
[15:00:38] *** DrSlony has left #eclipse
[15:01:05] <lisak> does anybody have a recipe for this http://stackoverflow.com/q/6265506/306488
[15:01:16] <lisak> Hard return (carriage return) in Eclipse code style formatter
[15:01:42] *** oldtopman has joined #eclipse
[15:04:00] <sr__> am I the only one to be very annoyed by the redirection from an eclipse mailing list to the index of a forum?
[15:04:34] <sr__> there is a lots of useful knowledge on those MLs
[15:04:55] <sr__> kind of a pity to just wipe it out :(
[15:07:52] <paulweb515_> sr__: which MLs?
[15:09:40] <sr__> say I search for http://www.google.com/search?hl=en&safe=off&q=swt+composition+editor&aq=f&aqi=m1&aql=t&oq=
[15:09:59] <sr__> here on 2nd link there is a link to a news.eclipse.tools
[15:10:04] <sr__> (at least in my google)
[15:10:11] <sr__> the problem is that this link
[15:10:20] <sr__> dev.eclipse.org/newslists/news.eclipse.tools/msg02958.html
[15:10:30] <sr__> actually redirects to http://www.eclipse.org/forums/eclipse.tools
[15:10:49] <sr__> right now it does not even work
[15:10:59] <sr__> but most of the time I just get at the index of a phpbb forum
[15:11:05] *** aminpy has joined #eclipse
[15:11:07] <sr__> ehich I am assuming is the new system
[15:11:09] <sr__> which
[15:11:31] <sr__> but you just loose the actual message
[15:11:41] <sr__> alternatively i use the google cache
[15:12:04] <sr__> but then clicking on the thread responses causes the same issue eventually: redirection to forum home
[15:12:13] <sr__> this is just an example
[15:12:22] *** oldtopman has left #eclipse
[15:12:29] <sr__> it happened many times
[15:12:44] <sr__> on all kind of info I was looking for (around eclipse)
[15:13:07] <paulweb515_> sr__: oh, if it says news.eclipse.tools it is not a mail list,
[15:13:39] <paulweb515_> sr__: however, if they're gonna re-direct to the forum, they should then open the message ... right?
[15:13:56] <sr__> paulweb515, they redirect to the home of the forum
[15:14:18] <sr__> paulweb515, this is what google cache gives for this link: http://webcache.googleusercontent.com/search?q=cache:364ZxPN3Dy0J:dev.eclipse.org/newslists/news.eclipse.tools/msg02958.html+swt+composition+editor&cd=2&hl=en&ct=clnk&source=www.google.com
[15:14:22] <paulweb515_> sr__: yes, that's the part that's broken
[15:14:36] <paulweb515_> sr__: if they're gonna re-direct to the forum, they need to pick the right message
[15:14:48] <sr__> paulweb515, exactly
[15:15:08] <sr__> I would not bitch then :p
[15:20:15] *** rawbdor has joined #eclipse
[15:20:49] *** rcjsuen_ is now known as rcjsuen
[15:23:34] *** mpiggott has joined #eclipse
[15:29:32] *** abhatnag has joined #eclipse
[15:30:19] *** jesmon has joined #eclipse
[15:30:41] *** dpy2 has joined #eclipse
[15:31:15] *** dpy2 has left #eclipse
[15:33:05] *** lolmatic has quit IRC
[15:34:52] *** Bass10 has joined #eclipse
[15:36:06] *** Bass10 has quit IRC
[15:36:34] *** Bass10 has joined #eclipse
[15:40:40] *** TomTom has quit IRC
[15:44:33] *** d_a_carver has joined #eclipse
[15:50:51] *** dirk_77_ has quit IRC
[15:50:57] *** amitev has quit IRC
[15:51:37] *** EricInBNE has quit IRC
[15:51:40] *** mfladischer has quit IRC
[15:53:07] *** Pasqualle has quit IRC
[15:55:56] *** amitev has joined #eclipse
[15:57:08] *** moraes_ has joined #eclipse
[15:58:15] *** moraes has quit IRC
[16:12:29] *** amitev has quit IRC
[16:13:45] *** amitev has joined #eclipse
[16:13:48] *** Metrol has joined #eclipse
[16:16:33] *** aminpy has quit IRC
[16:18:48] *** floe has joined #eclipse
[16:18:54] <floe> hi all
[16:19:25] <floe> when I try to refactor I get an error: Caused by: java.lang.ClassNotFoundException: org.eclipse.wst.sse.core.indexing.AbstractIndexManager
[16:19:40] <FauxFaux> Did you uninstall webtools?
[16:21:45] <floe> I'm using pulse for plugin installation. Does someone maybe know what's going on here? I tried to remove JBossTools plugins but still get the same error (sometimes it's JSPIndexManager which is missing)
[16:23:11] *** floe has quit IRC
[16:24:26] *** floe has joined #eclipse
[16:28:16] *** s0x has left #eclipse
[16:31:19] *** amitev has quit IRC
[16:31:26] *** acron17 has joined #eclipse
[16:32:21] <acron17> hi there! how can i send an command with a commandparameter from button?
[16:32:33] <nbf> Refresh on action!
[16:32:36] *** aminpy has joined #eclipse
[16:32:42] <nbf> s/action/access/
[16:32:45] *** oquidave has quit IRC
[16:33:00] <rcjsuen> "send a command"?
[16:33:36] <acron17> i found that: a website about it doesn't cover parameters (http://www.vogella.de/articles/EclipseCommandsAdvanced/article.html#commmands_button)
[16:34:08] <acron17> rcjsuen: call a command? i don't know the proper term...
[16:34:10] *** aminpy has quit IRC
[16:34:39] <rcjsuen> use the handler service
[16:34:41] *** aminpy has joined #eclipse
[16:34:41] *** xuc has joined #eclipse
[16:35:08] *** ilyak has quit IRC
[16:36:02] *** ilyak has joined #eclipse
[16:38:12] <acron17> rcjsuen: executeCommand with a ParametrizedCommand? is there a factory or something to create IParameter objects?
[16:38:18] *** Robbster has left #eclipse
[16:40:35] *** aminpy has quit IRC
[16:41:32] <acron17> the parameters are created through plugin.xml, so they are static within the application. do i still have to create a new Parameter with the same values in the code?
[16:42:59] *** mluser-home has joined #eclipse
[16:44:10] <rcjsuen> well, unless you want to start reading the registry
[16:44:27] <rcjsuen> but i guess that wouldn't changea  thing in this case
[16:45:16] <acron17> rcjsuen: thanks. i think i found it in CommandService
[16:46:41] *** briandealwis has joined #eclipse
[16:46:55] *** aminpy has joined #eclipse
[16:46:55] *** Kamaran has joined #eclipse
[16:47:24] *** ilyak has quit IRC
[16:48:25] *** ilyak has joined #eclipse
[16:49:51] <acron17> another question about commands: must the command id be duplicated in the plugin.xml and the code? maybe plugin.xml would be able to fetch the value from a const value of a class?
[16:50:13] <rcjsuen> No, it needs to be in the plugin.xml.
[16:55:06] *** lolmatic has joined #eclipse
[16:55:06] *** lolmatic has joined #eclipse
[16:58:50] *** Metrol has quit IRC
[17:01:48] <acron17> rcjsuen: ok
[17:03:14] *** ShooterMG has joined #eclipse
[17:10:05] *** Multiply has joined #eclipse
[17:10:22] *** Zenopus_ has joined #eclipse
[17:11:34] *** Zenopus has quit IRC
[17:11:39] *** Zenopus_ is now known as Zenopus
[17:13:20] *** SimonP86_ has joined #eclipse
[17:14:26] *** SimonP86__ has joined #eclipse
[17:16:38] *** SimonP86 has quit IRC
[17:18:18] *** SimonP86_ has quit IRC
[17:19:06] *** vipaca has joined #eclipse
[17:19:06] *** vipaca has joined #eclipse
[17:34:48] *** briandealwis has quit IRC
[17:35:06] *** briandealwis has joined #eclipse
[17:36:38] *** dirk_77_ has joined #eclipse
[17:37:23] *** cbeust has joined #eclipse
[17:39:10] *** kottlett has quit IRC
[17:40:28] *** moraes_ has quit IRC
[17:43:29] *** soulreaper has joined #eclipse
[17:45:24] *** rcjsuen has quit IRC
[17:46:36] *** rcjsuen has joined #eclipse
[17:50:28] *** ronr_ has quit IRC
[17:57:34] <sr__> is it possible to have eclipse plugins with both java and scala code co-living together?
[17:59:37] *** shurane has joined #eclipse
[18:02:40] *** wietze has quit IRC
[18:02:44] *** wietze has joined #eclipse
[18:04:57] *** pombreda has quit IRC
[18:08:02] *** pombreda has joined #eclipse
[18:08:57] *** kril has joined #eclipse
[18:10:17] *** z4z4 has quit IRC
[18:15:48] *** cbeust has quit IRC
[18:16:23] *** Echidna has quit IRC
[18:18:17] *** floe has quit IRC
[18:19:29] *** floe has joined #eclipse
[18:20:30] <acron17> i've the problem that my plugin causes an SWTException: Invalid thread access
[18:20:57] <acron17> i think i found the source of the problem, but don't really know how to avoid it
[18:21:14] <paulweb515> acron17: you cannot touch an SWT widget outside of the UI thread
[18:21:31] <nbf> see Display.asyncExec and Display.syncExec
[18:21:35] <paulweb515> you need to use display.asyncExec(*) (or in rare cases, display.syncExec(*))
[18:23:34] <rcjsuen> ~uithread
[18:23:34] <Arbalest> Getting "Invalid thread access" errors? See here - http://www.eclipse.org/swt/faq.php#uithread
[18:23:39] <rcjsuen> UIJob/WorkbenchJob
[18:23:54] <rcjsuen> And please don't use Display.getCurrent()
[18:24:31] <acron17> yeah, you're all right. what i wanted to ask is how to change my design
[18:25:14] <nbf> instead of passing the runnable to another thread, pass it to asyncExec
[18:26:11] <acron17> i've a treeviewer which contains items which can be updated over the network, if an item gets updated the exception is thrown because the item then fires an event which changes the gui
[18:26:48] <acron17> so i'm looking for advices for a more clever approach :-)
[18:26:59] *** SzymonB has quit IRC
[18:29:48] <nbf> well when a network event comes in, you pass the gui functionality to SWT's Display.asyncExec method
[18:31:01] *** Tashtego has joined #eclipse
[18:38:33] *** xxen has joined #eclipse
[18:39:29] *** kaje has joined #eclipse
[18:39:47] *** Echidna has joined #eclipse
[18:41:11] <acron17> nbf: i now changed listener method of the viewpart containing the treeviewer to not call viewer.refresh directly but through asyncExec
[18:42:32] <acron17> nbf: that seems to work. is it okay to use async even when not called from another thread?
[18:44:15] *** cbeust has joined #eclipse
[18:47:17] *** pombreda has left #eclipse
[18:51:02] <rcjsuen> acron17: It is safe to call a/syncExec from another thread, yes.
[18:52:20] *** floe has quit IRC
[18:52:36] *** floe has joined #eclipse
[18:57:14] *** uncreative has joined #eclipse
[19:00:24] *** floe_ has joined #eclipse
[19:00:35] *** floe has quit IRC
[19:06:44] *** SzymonB has joined #eclipse
[19:07:32] *** sumit has joined #eclipse
[19:12:18] *** deSilva has quit IRC
[19:18:35] *** ddk has quit IRC
[19:20:12] *** kril has quit IRC
[19:22:21] *** eli_f has joined #eclipse
[19:23:06] <eli_f> how can I set the default width of the preferences window? (I'm using Ubuntu)
[19:23:45] <rcjsuen> That dialog? You can't.
[19:23:51] <rcjsuen> after you resize the next time it opens it's that size tho i think
[19:24:00] <eli_f> thanks rcjsuen.
[19:24:02] <rcjsuen> or maybe not lol
[19:24:15] <LimitedAtonement> rcjsuen: I think that's my experience.
[19:24:21] <LimitedAtonement> rcjsuen: How do I pronounce your nickname?
[19:24:25] <eli_f> lol. I don't think it does. I have to resize it each time I open. (even in the same workspace)
[19:24:29] <rcjsuen> Doesn't seem to remember anything for me
[19:24:39] <rcjsuen> well it remembers the starting x/y
[19:25:01] *** kril has joined #eclipse
[19:25:15] <eli_f> ok. I guess the width doesn't expand as I like it. I have the font-size increased for the dialogs, so this may aggravate the issue
[19:26:17] <rcjsuen> LimitedAtonement: r c j soon
[19:26:30] <eli_f> thanks for the feedback rcjsuen, LimitedAtonement
[19:26:52] <LimitedAtonement> eli_f: Big font sizes aggravate everything :)
[19:27:13] <LimitedAtonement> eli_f: ProggyClean is the winner of all programming fonts.
[19:27:23] *** floe_ has quit IRC
[19:28:47] *** ramenmeal has joined #eclipse
[19:29:44] <eli_f> LimitedAtonement: I agree. gui madness. I'll check out ProggyClean.
[19:29:59] <LimitedAtonement> :)
[19:31:27] <nbf> I rock consolas
[19:31:31] <nbf> on ubuntu :)
[19:32:12] <eli_f> nbf: more options :). thanks
[19:32:41] <nbf> http://en.wikipedia.org/wiki/Consolas
[19:33:09] *** aminpy has quit IRC
[19:33:17] *** PW-toXic__ has joined #eclipse
[19:34:10] <acron17> i meant is it ok to call asyncExec frome the SAME thread. it is save i assume, but maybe it is not the prettiest thing to do, what do you think?
[19:34:42] <nitind> I prefer the kerning on Inconsolata.
[19:35:31] <nitind> acron17: Just as you said, but remember, you have no guarantee on when it will be executed.
[19:36:09] <acron17> nitind: ok. maybe i should rework the design than, thanks
[19:36:14] *** PW-toXic_ has quit IRC
[19:36:37] *** nicoulaj has joined #eclipse
[19:40:03] <nbf> if you call syncExec it will block the UI thread until processing is complete
[19:40:06] <nbf> so you get control with that one
[19:40:09] <nbf> that's the only different
[19:40:12] <nbf> *difference
[19:43:02] *** lolmatic has quit IRC
[19:43:23] *** tewecske has joined #eclipse
[19:44:01] <acron17> nbf: so syncExec might it better in my situation, because the processing is just a call to Treeviewer.refresh()
[19:45:06] *** Hanumaan has joined #eclipse
[19:45:38] <rcjsuen> nbf: Actually, any long running call will block the UI thread.
[19:45:46] <rcjsuen> nbf: I think you meant to say syncExec will block the _calling_ thread. :)
[19:45:51] *** nitrospectide has joined #eclipse
[19:46:01] <nbf> right sorry :)
[19:46:12] <nbf> yeah async stuff will block but in the display update call
[19:46:26] <rcjsuen> acron17: You should pretty much always use asyncExec.
[19:47:07] *** moraes has joined #eclipse
[19:47:07] *** tvo has quit IRC
[19:47:57] *** SzymonB has quit IRC
[19:48:12] <acron17> i have to log out. thanks for the help so far, guys. cu
[19:48:13] <nbf> implementing async and sync was annoying
[19:48:38] <nbf> or at least debugging it
[19:48:42] <nbf> for my ue
[19:48:43] <nbf> *use
[19:49:14] *** rawbdor has quit IRC
[19:50:06] *** kril has joined #eclipse
[19:53:26] *** oldtopman has joined #eclipse
[19:53:44] <oldtopman> How many questions do you get here about android development?
[19:55:30] <rcjsuen> oldtopman: Maybe once or twice a day. Why do you ask?
[19:56:05] <oldtopman> I can't figure out if this is an android or an eclipse problem
[19:56:40] <oldtopman> In making a new android project, the "Build Target" field is greyed out
[19:56:48] <oldtopman> Ask there or here?
[19:56:57] <rcjsuen> Ask Android.
[19:57:19] <oldtopman> thanks
[19:57:44] *** dijonyummy123 has quit IRC
[19:58:00] *** a0sle has quit IRC
[19:59:22] *** imeikas has quit IRC
[19:59:44] *** SimonP86 has joined #eclipse
[20:01:34] *** SimonP86_ has joined #eclipse
[20:01:39] *** myusuf3_ has joined #eclipse
[20:02:39] *** acron17 has quit IRC
[20:02:59] *** SimonP86__ has quit IRC
[20:04:05] *** andre has joined #eclipse
[20:04:14] *** vipaca has quit IRC
[20:05:03] *** SimonP86 has quit IRC
[20:05:22] *** sumit has quit IRC
[20:08:59] *** uebera|| has quit IRC
[20:09:36] *** uebera|| has joined #eclipse
[20:10:44] *** ramenmeal has quit IRC
[20:18:36] *** klausk has quit IRC
[20:21:19] *** Rodtusker has joined #eclipse
[20:24:28] *** eli_f has left #eclipse
[20:30:11] *** nsando has joined #eclipse
[20:31:53] *** soee has joined #eclipse
[20:42:35] *** skotisis has joined #eclipse
[20:46:16] *** nitrospectide has quit IRC
[20:48:04] *** ronr_ has joined #eclipse
[20:49:36] *** Tutrikil has joined #eclipse
[20:50:32] *** dijonyummy123 has joined #eclipse
[20:50:39] <Tutrikil> hello, does anybody have a good tutorial site for the EMF? (a good one)
[20:51:12] <ronr_> a good one?
[20:51:49] *** ramenmeal has joined #eclipse
[20:51:57] <Tutrikil> yes...detailed, but divided into categories
[20:52:13] <ronr_> nope.
[20:52:22] <Tutrikil> :-/
[20:52:26] *** nitrospectide has joined #eclipse
[20:52:40] *** winegoddess has joined #eclipse
[20:53:11] <ronr_> don't even know what EMF is :p
[20:53:23] <Tutrikil> eclipse modeling framework
[20:53:32] *** kassah has quit IRC
[20:53:45] <ronr_> nah, I don't use that stuff.
[20:54:06] *** bobbyz has quit IRC
[20:54:27] <LimitedAtonement> http://www.foddy.net/athletics.swf
[20:54:28] <Tutrikil> for example: i've made this diagram...and then i wanted to open that ecorediag file in another eclispe environment on my mac...but i only get the xml code. :(
[20:54:30] <LimitedAtonement> Can you get it to go?
[20:55:48] <ronr_> LimitedAtonement: huh?
[20:56:16] <LimitedAtonement> ronr_: Did you play the game?
[20:57:35] *** dirk_77_ has quit IRC
[20:57:51] <ronr_> what does that have to do with #eclipse?
[20:57:57] <ronr_> Tutrikil: http://www.vogella.de/articles/EclipseEMF/article.html
[20:58:12] <ronr_> Tutrikil: http://www.eclipse.org/articles/Article-Using%20EMF/using-emf.html
[20:58:30] <ronr_> Tutrikil: http://www.eclipsecon.org/2010/sessions/?page=sessions&id=1463
[20:58:42] <ronr_> Tutrikil: http://robot.dataslab.com/index.php5/EMF_Tutorial
[20:59:07] <Tutrikil> thx!
[21:01:35] *** Rodtusker has quit IRC
[21:04:15] *** codeon has joined #eclipse
[21:04:38] *** KolakCC has quit IRC
[21:13:51] *** codeon has quit IRC
[21:17:41] *** scorphus has joined #eclipse
[21:17:51] *** deSilva has joined #eclipse
[21:18:00] <private_meta> hey, how can I send a ctrl+z to an app currently debugging/running in eclipse?
[21:25:54] <abhatnag> private_meta: does the app not have a gui that's visible?
[21:26:14] *** uncreative has quit IRC
[21:27:09] <private_meta> abhatnag: console
[21:27:44] *** heinz has joined #eclipse
[21:27:51] <abhatnag> private_meta: then the app would have to have an equivalent command built into it, to the best of my knowledge
[21:29:43] <paulweb515_> private_meta: what's CTRL+Z?  You mean suspend?
[21:29:48] <paulweb515_> or EOF?
[21:29:49] <private_meta> yes
[21:29:51] <private_meta> suspend
[21:29:54] *** mattt_ has joined #eclipse
[21:30:03] <paulweb515_> private_meta: you go to the Debug view and use the pause button
[21:30:34] <private_meta> pause sends that very signal?
[21:30:57] *** museek has joined #eclipse
[21:30:59] <museek> Hello
[21:31:07] *** tewecske has quit IRC
[21:31:15] <museek> i have a problem
[21:31:17] <museek> :(
[21:31:49] *** tewecske has joined #eclipse
[21:32:03] <museek> every time when i try to autocomplete code
[21:32:19] <museek> fatal error eccures
[21:32:39] <paulweb515_> private_meta: nope, pause will cause the JVM to paise
[21:32:39] <museek> here you can see logs:
[21:32:43] <paulweb515_> uh, pause
[21:32:52] <museek> http://pastebin.com/FMx0u53s
[21:33:04] *** nitrospectide has quit IRC
[21:33:39] <mattt_> When updating eclipse helios I get javaHL errors despite the fact that I've got libsvn-java installed and the java.library.path configured in eclipse.ini.  I also tried running the javaHL test suite and all 50 passed.
[21:34:06] <mattt_> I can use svn in eclipse, I just get errors when I check for updates.
[21:34:19] <paulweb515_> private_meta: what are you trying to do exactly?  put a program in the background?  A java app?  Or send some kind of signal, like SIGTERM ?
[21:34:40] <nitind> mattt_: Someone's got to say it, "what kind of errors?"
[21:34:40] *** Zenopus has quit IRC
[21:35:03] <mattt_> Missing requirement: Subversive SVN 1.6 JavaHL Connector 2.2.2.I20110523-1700
[21:35:06] <ronr_> what kind of errors?
[21:35:07] <private_meta> paulweb515_: the program I have is terminated by an exception when ctrl+z is sent, but only on redhat, I need to check out that closer in the debugger
[21:35:37] <nitind> mattt_: Are you also searching the update site that provides that?
[21:36:31] <mattt_> Not sure what's being searched - I'm just going to Help->Check for Updates
[21:37:13] <paulweb515_> private_meta: the matching signal is SIGTSTP.  In theory you can try kill -20 <pid> (or kill -19)
[21:37:46] *** Zenopus has joined #eclipse
[21:39:03] *** aksn has joined #eclipse
[21:39:06] *** nitrospectide has joined #eclipse
[21:39:58] *** acron17 has joined #eclipse
[21:41:09] <private_meta> isn't sigtstp 18, 20, 24?
[21:41:13] *** ronr__ has joined #eclipse
[21:41:24] *** klausk has joined #eclipse
[21:41:35] <paulweb515_>  20) SIGTSTP
[21:42:59] <private_meta> afair 19 is cont
[21:44:07] *** ronr_ has quit IRC
[21:44:15] *** ronr__ is now known as ronr_
[21:54:14] *** dirk_77_ has joined #eclipse
[21:54:21] *** mattt_ has quit IRC
[21:57:09] *** hex` has quit IRC
[22:06:56] *** _arjen_ has joined #eclipse
[22:11:59] *** cgb has joined #eclipse
[22:15:15] *** bois has quit IRC
[22:16:28] *** acron17 has quit IRC
[22:29:37] *** rcjsuen has quit IRC
[22:30:01] *** z4z4 has joined #eclipse
[22:31:06] *** tewecske has quit IRC
[22:31:24] *** tewecske has joined #eclipse
[22:38:21] *** vipaca has joined #eclipse
[22:38:21] *** vipaca has joined #eclipse
[22:39:10] *** UrsoBranco has quit IRC
[22:42:40] *** rrodriguez has joined #eclipse
[22:42:53] *** vipaca has quit IRC
[22:43:00] *** elbeardmorez has joined #eclipse
[22:43:16] *** nicoulaj has quit IRC
[22:46:23] *** tewecske has quit IRC
[22:48:38] *** otaviobp has quit IRC
[22:49:17] *** aksn has quit IRC
[22:49:38] *** ShooterMG has quit IRC
[22:49:43] *** vipaca has joined #eclipse
[22:49:43] *** vipaca has joined #eclipse
[22:59:34] *** shurane has quit IRC
[23:01:59] *** shurane has joined #eclipse
[23:03:28] *** rcjsuen has joined #eclipse
[23:04:18] *** ExtraSpice has quit IRC
[23:04:40] *** Multiply has quit IRC
[23:06:28] *** jerboaa has quit IRC
[23:08:22] *** jamespat has joined #eclipse
[23:08:59] *** xmux has quit IRC
[23:10:56] *** LongBeach has quit IRC
[23:11:35] *** werdan7 has quit IRC
[23:16:29] *** Hanumaan has quit IRC
[23:21:44] *** wainersm has quit IRC
[23:21:45] *** Tashtego has quit IRC
[23:21:47] *** elbeardmorez has quit IRC
[23:24:54] *** nsando_ has joined #eclipse
[23:28:12] *** nsando has quit IRC
[23:29:11] *** nsando_ has quit IRC
[23:34:00] *** wainersm has joined #eclipse
[23:34:38] *** joeytwiddle has quit IRC
[23:35:35] *** Kamaran has quit IRC
[23:36:14] *** soee has quit IRC
[23:44:37] *** kaje has left #eclipse
[23:44:41] *** mziaei has quit IRC
[23:45:26] *** mpiggott has quit IRC
[23:47:16] *** dirk_77_ has quit IRC
[23:49:17] *** klausk has quit IRC
[23:51:56] *** cgb has quit IRC
[23:52:45] *** mwolf9 has joined #eclipse
[23:53:07] *** mwolf9 has quit IRC
[23:53:12] *** mwolf9 has joined #eclipse
[23:54:12] *** Dessimat0r has joined #eclipse
[23:54:17] *** michaely has joined #eclipse
[23:57:17] <michaely> Hello. I am doing some testing with equinox. I have two bundles. One that exports a package and another that has a dependency on the 1st plugin. When I load and run both bundles the secod bundle spits out a NoClassDefFoundError on a calss from the exported package despite the fact that my bundles are resolved. Does anyone know why this would happen?
[23:57:24] *** rrodriguez has quit IRC

top