Eclipse Platform

Pavan Kumar Gorakavi

Subscribe to Pavan Kumar Gorakavi: eMailAlertsEmail Alerts
Get Pavan Kumar Gorakavi: homepageHomepage mobileMobile rssRSS facebookFacebook twitterTwitter linkedinLinkedIn


Top Stories by Pavan Kumar Gorakavi

Subversion is a stellar open source version control system initiated by CollabNet Inc. It is used to maintain source code.  There are many clients that support subversion, of which I want to introduce a simple eclipse plugin, Subclipse.  Subclipse (http://subversion.tigris.org/) is an Eclipse plugin that was released under the Eclipse Public License 1.0 open source license. Subclipse provides an easy and clear technique to perform subversion repository operations. This article illustrates different features supported by subclipse. Downloading and Installing Subclipse As Subclipse is a subversion client,  the Subclipse version is tied up with the version of the subversion being used. Subclipse 1.6.5 is currently available for Eclipse 3.2+. Subclipse can be downloaded from http://subclipse.tigris.org/servlets/ProjectProcess?pageID=p4wYuA [Site accessed on 12/29/09] ... (more)

Using Eclipse Memory Analyzers

Eclipse Session at Cloud Expo The garbage collector is primarily responsible as a collector to reclaim objects that are no longer used by the application. This is an automatic memory management invented by McCarthy. The garbage collector collects unreferenced objects, objects that are not reached by the reference chain. The starting point of the analysis is the Garbage Collection Root (GCR), which are objects that are reachable by the VM. Objects that are nonreachable are garbage collected, whereas objects that are reachable are sustained in memory. GCR is very useful in identif... (more)