Eclipse outline view and Spring Roo - eclipse

When using spring-roo within STS I do not see AspectJ generated functions in the outline view.
Is this possible at all?
Update: it seams that this is an issue with my STS installation or with my project since this feature is working at a colleages machine. So I have to find out why it is not working on my machine (current STS installed, Java 7).

Yes.
Find a triangle in the top right of the package explorer, click it and a contextual menu will appear. Select "Filters..." and you'll see a window that allows you to select filters for Java elements.
Find in the central pane the option "Hide generated Spring Roo ITDs"
The next time the selection will appear directly under the triangle, so you can switch the filter faster.

In new versions: Project Explore > Working Set Menu (triangle in the top right of the package explorer) -> Customize View , find for "Hide generated Spring Roo ITDs" unselect it.
good luck

Related

Eclipse, "add to working set"

Since Eclipse Mars? there has been always a context menu on projects, to add the current selection to a working set. This option seems to have disappeared in Eclipse Oxygen.
How can I add one or more selected projects to a working set?
This is how I access the working sets:
It seems like this is now called "Assign Working Sets..." and is found in the same group as "Refresh" and "Close" in the projects' context menu.
Alternatively, you can just drag & drop the selected projects into the desired working set, provided that you are showing working sets as "Top Level Elements".
(Assuming this is about the "Package Explorer" view; the "Project Navigator" seems not to have that feature, but here you can still use drag & drop.)
This menu item is still present in Package Explorer (JDT).
No such item is available in Project Explorer (Core).
Please leave a vote for the bug: Assign Working Sets in Project Explorer, Navigator

not only show eclipse plugin popup within package explorer

I'm pretty new to eclipse plugin development but it's working fine so far except the part that my plugin does only show in java or plugin development perspective.
this is related to the following locationURI:
locationURI="popup:org.eclipse.jdt.ui.PackageExplorer?after=additions"
an other perspective uses "Navigator" for example therefore my plugin does not show.
how am I able to make it visible in Navigator (don't know the locationURI for it) and Project Explorer too (popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu) ?
Use
locationURI="popup:org.eclipse.ui.popup.any?after=additions">
to contribute to any popup menu which has an 'additions' position.

Eclipse comes with windowbuilder, which wizard should I start with?

I just find out that windowbuilder comes with the original Eclipse package. There are project palette, application window, japplet, jdialog, jdialog, jframe, jinternalframe, jpanel, swing automatic databinding. Which one should I start with and how to learn more?
For Eclipse IDE, Window Builder is one more Editor for handling java source files.
So you should be able to open all java classes with it. Right click on any java class and select open with menu option. You should see "WindowBuilder Editor" as an option there.
Note that this editor may not show any content in Design or Bindings tab for any non-GUI classes (e.g. interfaces).

IntelliJ IDEA equivalent of Eclipse "Link with Editor"

In Eclipse you can check the "Link with Editor" option and whatever source file you are viewing in the current tab will be highlighted and have its package expanded in the Package Explorer view.
Is there something equivalent to this in IntelliJ IDEA 8.1?
At IntelliJ IDEA 12 (13, 14 and 15 from comments), it is located at the gear icon into the "Project" Tool Window, called as our mate said, Autoscroll from source
check the image
I hope this can helps someone else :)
Update (2020, eleven years later): see "Source code navigation / Locate a file in the Project tool window"
In the Project tool window, right-click the Project toolbar and, from the context menu, select Always Select Opened File.
After that IntelliJ IDEA will track the file that is currently opened in the active editor tab and locate it in the Project tool window automatically.
Original answer (2009)
That would be : Autoscroll from Source.
Navigate from a file in the Editor that gets the focus, to the corresponding node in the Project Tool Window.
Fried Hoeben comments that
you get there from the config of the project tool window.
It is not present in the general IDE settings (at least in version 12)
In version 2016.3, it's a little icon on the Project Tool Window called Scroll from Source. It's the first icon on the right see screen shot
Right click on the Project Title bar (Project view). Then select the Option "Autoscroll from Resource".
In Intellij 2019.3 community editor, it is to right-click on the Project view and check the item "Always select opened file.
Solution to IntelliJ IDEA 2022.2.4 (Community Edition)
Click on Show Options Menu and select Always Select Opened File

How can I get Eclipse to show .* files?

By default, Eclipse won't show my .htaccess file that I maintain in my project. It just shows an empty folder in the Package Viewer tree. How can I get it to show up? No obvious preferences.
In the package explorer, in the upper right corner of the view, there is a little down arrow. Tool tip will say view menu. From that menu, select filters
From there, uncheck .* resources.
So Package Explorer -> View Menu -> Filters -> uncheck .* resources.
With Eclipse Kepler and OS X this is a bit different:
Package Explorer -> Customize View -> Filters -> uncheck .* resources
For Project Explorer View:
1. Click on arrow(View Menu) in right corner
2. Select Customize View... item from menu
3. Uncheck *.resources checkbox under Filters tab
4. Click OK
--
Eclipse Juno
Cory is correct
# If you're using Eclipse PDT, this is done by opening up the PHP explorer view
I just spent about half an hour looking for the little arrow, until I actually looked up what the 'PHP Explorer' view is. Here is a screenshot:
I'm using 64 bit Eclipse for PHP Devleopers
Version: Helios Service Release 2
It cam with RSE..
None of the above solutions worked for me... What I did was similar to scubabble's answer, but after clicking the down arrow (view menu) in the top of the RSE package explorer I had to mouseover "Preferences" and click on "Remote Systems"
I then opened the "Remote Systems" nav tree in the left of the preferences window that came u and went to "Files"
Underneath a list of File types is a checkbox that was unchecked: "Show hidden files"
CHECK IT!
1. From Package Explorer open the Filters... dialog:
2. Then uncheck .* resources option:
On Mac:
Eclipse -> Preferences -> Remote Systems -> Files -> click Show Hidden Files.
In your package explorer, pull down the menu and select "Filters ...". You can adjust what types of files are shown/hidden there.
Looking at my Red Hat Developer Studio (approximately Eclipse 3.2), I see that the top item in the list is ".* resources" and it is excluded by default.
Spring Tool Suite 4
Version: 4.9.0.RELEASE
Build Id: 202012132054
For Mac:
In my case, I wanted to see .htaccess files, but not all the other .* resources.
In Zend Studio for Eclipse, in PHP Explorer (not Remote System Explorer), click the downward facing arrow (next to the left/right arrows).
Choose Filters.
Uncheck .* resources
In the "Name filter patterns" area, type the filenames you want to ignore.
I used:
.svn, .cvs, .DS_Store, .buildpath, .project
If using Zend Studio, same arrow, go to RSE view, click on the downward facing arrow, hit preferences, and then check show hidden files.
That did the trick for me.
If you're using Eclipse PDT, this is done by opening up the PHP explorer view, then clicking the upside-down triangle in the top-right of that window. A context window appears, and the filters option is available there. Clicking the Filters menu option opens a new window, where .* files can be unchecked, thus allowing the editing of .htaccess files.
I searched forever for this, so I'm sorta answering my own question here. I'm sure someone else will have the same problem too, so I hope this helps someone else as well.
Eclipse shows hidden files in the "Navigator" view. You can add that via Window->Show View->Navigator.
Preferences -> Remote Systems -> Files -> Show hidden files
(make sure this is checked)
Follow steps 1, 2, and 3 in the figure below: