Categories
- Android (47)
- Challenge of the month (16)
- Dirk Fauth (6)
- Eclipse (207)
- Java (12)
- Lars Vogel (18)
- Markus Kuppe (1)
- OSGi (5)
- Other (16)
- Papercut (14)
- Private (4)
- Servlet (2)
- Softskill Topics (5)
- Sopot Çela (3)
- vogella (25)
- Web (9)
vogella tutorial rss feed- Android application (performance and more) analysis tools - Tutorial
- Android Background Processing with Threads, Handlers and AsyncTask - Tutorial
- Debugging Android applications
- Using the Android action bar (ActionBar) - Tutorial
- Register for the Eclipse 4 application lifecycle - Tutorial
- Migrating Eclipse 3.x plug-ins and RCP applications to Eclipse 4 - Tutorial
- Android Installation
- Using FreeMarker Templates (FTL)- Tutorial
- Eclipse Fragment Projects - Tutorial
- Eclipse Products and Deployment - Tutorial
Home
Recommended
Twitter
-
Recent Posts
Monthly Archives: December 2010
Git Alias – git add -A and git commit in one command
In in 95% of my time I type “git add . -A” directly followed by “git commit -m “message” in the Git version control system. That is a lot of typing for a very common case. Fortunately git allows to … Continue reading
Build a “Management” Chat Bot in 5 steps with Google AppEngine
Google AppEngine provides very cool features. One of these features is the XMPP API, that allows you to write apps that can interact with users through XMPP clients, e.g. Jabber or GTalk. Here’s a quick description how to create a … Continue reading
Making the Android source code available in Eclipse
One of the annoying things in the Android Development Kit is that it does not include the source code for the standard Android classes. This makes it IMHO unnecessary hard to learn the Android platform. Of course there is a … Continue reading
Eclipse e4 – Creating a new part dynamically
Eclipse e4 allows to create application elements dynamically. The following is a small example how to create a part dynamically in a handler. This assumes that you have a class “de.vogella.e4.modelservice.part.NewPart” defined in plugin “de.vogella.e4.modelservice”. The nice thing of this … Continue reading
Eclipse e4 and the EModelService
One of the nicest things in my option in Eclipse e4 is that you have access to the model at runtime and can change it. To get access to the model you can use dependency injection to get the related … Continue reading