Categories
- Android (51)
- Challenge of the month (14)
- Dirk Fauth (39)
- Eclipse (314)
- Hendrik Still (1)
- Java (35)
- Jeanderson Candido (3)
- Lars Vogel (109)
- Matthias Mailänder (3)
- OSGi (30)
- Other (37)
- Papercut (15)
- Private (4)
- Servlet (2)
- Simon Scholz (6)
- Softskill Topics (5)
- vogella (34)
- Web (7)
vogella tutorial rss feed
Home
Recommended
Twitter
-
Recent Posts
Author Archives: Lars Vogel
Dependency injection for Eclipse 3.x views available for Eclipse 4.7 M3
You can now use dependency injection (di) in your Eclipse 3.x. views.You can enable this for a view via the new inject flag in the org.eclipse.ui.views extension. public class SampleView extends ViewPart { @Inject IWorkbench workbench; private TableViewer viewer; @Override … Continue reading
Posted in Eclipse, Lars Vogel
Comments Off on Dependency injection for Eclipse 3.x views available for Eclipse 4.7 M3
Eclipse 4.7 M2 is out with a focus on usability
Eclipse 4.7 M2 is out with a focus on usability. From simplified filter functionality in the Problems, Bookmark and Task view, improved color usage for popups, simplified editor assignments for file extensions, enhancements of quick access, a configurable compare direction … Continue reading
Posted in Eclipse, Lars Vogel
Comments Off on Eclipse 4.7 M2 is out with a focus on usability
Contribute to the vogella Android tutorials via Github pull requests
If you want to contribute an improvement to the vogella Android tutorials, we are providing our Android tutorials Asciidoc source code via Github. Please clone and send your Pull Requests. vogella Android tutorial at Github. Thanks for your contributions and … Continue reading
Posted in Android, Lars Vogel
Comments Off on Contribute to the vogella Android tutorials via Github pull requests
Out-of-office settings for Eclipse Bugzilla and Gerrit
As I got several requests how to show an “Out-of-office” in Gerrit and Bugzilla, I documented this in the Eclipse Platform Contribution tutorial. Have fun.
Posted in Eclipse, Lars Vogel
Tagged Eclipse
Comments Off on Out-of-office settings for Eclipse Bugzilla and Gerrit
Getting rid of ugliness in the Eclipse IDE
Continuing our work to make the Eclipse IDE nicer we also removed some “weird things of the past” in our default styling. Thanks to Patrik Suzzi for removing the yellow underline in the Mac theme (why did we have a … Continue reading
Posted in Eclipse, Lars Vogel
Comments Off on Getting rid of ugliness in the Eclipse IDE
Making the Eclipse IDE prettier on Windows
My company is starting a new customer project for which I have to the Windows OS. I noticed that the main toolbar styling looks really bad due to its inconsistent usage of colors for the perspective switcher and the main … Continue reading
Posted in Eclipse, Lars Vogel
Comments Off on Making the Eclipse IDE prettier on Windows
“Run in Background” now activated by default in Eclipse 4.7
I use Android Studio for Android development and its frequent popups for its tasks, made me realized that our Eclipse option to run jobs in the background is a real gem. After a short discussion, we decided to activate that … Continue reading
Posted in Eclipse, Lars Vogel
Comments Off on “Run in Background” now activated by default in Eclipse 4.7
Helping WindowBuilder
The WindowBuilder project had resource issues. I’m happy to announce that WB has now a working Tycho build. Simply clone the WB repo and use ‘mvn clean verify’ command to build WB. The result is afterwards located in org.eclipse.windowbuilder/org.eclipse.wb.releng.updatesite/target/repository WindowBuilder … Continue reading
Posted in Eclipse, Lars Vogel
7 Comments
No more tragedy of the commons for Platform UI
Remember than people spoke about the tragedy of the commons for the Eclipse platform? I think it save to say that these times are over for Platform UI. I think we see in Platform UI the hard work we put … Continue reading
Posted in Eclipse, Lars Vogel
Comments Off on No more tragedy of the commons for Platform UI
Using CompletableFuture in your Eclipse RCP application
If you want to update your RCP application asynchronously you can use Java 8 CompletableFutures. For example the following starts an CompletableFuture and uses the getData method to read the data and calls afterwards the updateTable method. I would be nice if … Continue reading