From the category archives:

Eclipse

Eclipse Europa - Features worth checking out

by venukb on July 8, 2007

Eclipse 3.3 code named Europa was released few days back and this annual released featured a simultaneous release of 21 projects. I took Europa for a test drive and it feels much faster than Callisto (Eclipse 3.2) Here are some of the new features worth making a note of: Java Perspective Changes In the default Java Perspective, the link to "New Java Project" has been added; This makes project creation faster; In 3.2, you had to select the option from the "New Project" Wizard page. europa1 Also the New project wizard now allows you to choose a host of Java Execution Environment. Previously this was available only in ...

{ 4 comments }

Europa is here !

by venukb on June 29, 2007

The annual release of Eclipse code named Europa is now available for download. Like last year’s Callisto release, the Europa release is a coordinated release of different Eclipse project teams.

This year, the annual release includes 21 projects. By releasing these projects at the same time, Eclipse aims to eliminate uncertainty about version compatibility and make it easier to incorporate multiple projects into your environment.

eclipse.org

I personally will be interested in exploring the following projects other than the standard Eclipse Platform/JDT/PDE

CDT - C/C++ Development Tools WTP - Web Tools Platform ...

{ 1 comment }

Source Control in Eclipse IDE

by venukb on June 18, 2007

Source Control also known as Revision control or source code management (SCM) is the management of multiple revisions of the same unit of information. Source Control is most commonly used in software development to manage ongoing development of documents like application source code or design documents or any electronic information which is worked on by a team of people. There are a lot of revision control software out there, the notable ones being CVS, ClearCase and Subversion. The following wikipedia page gives a complete list of the revision control software including detailed information on each of them. http://en.wikipedia.org/wiki/Comparison_of_revision_control_software Eclipse is fast becoming the default IDE among developers (Thanks to the extensible ...

{ 11 comments }

How To: Browse remote files in Eclipse IDE

by venukb on June 6, 2007

Eclipse.org always amaze me with the kind of tooling that they go on adding to the Eclipse Platform. Few months back when I was browsing the different projects in Eclipse, I stumbled on Remote System Explorer (RSE)

Remote System Explorer is part of Target Management which in turn in a subproject of Device Software Development Platform (DSDP).

The purpose of the Target Management project is to creates data models and frameworks to configure and manage remote systems, their connections, and their services.

Remote System Explorer helps in

Creating connections to remote Linux/Unix Servers Exploring the remote file system Editing and saving remote files ...

{ 6 comments }

HowTo: Tail Files in Eclipse IDE

by venukb on May 19, 2007

Unix 'tail' command is used to display the last few lines of a file. The '-f' parameter makes the utility more useful in the sense that it allows you to 'follow' the output of the file.

As and when additional lines are added to the file, they are displayed on the terminal. The follow parameter '-f' is very useful in monitoring the log files.

Tail For Win32 is a MFC based tool to accomplish the 'tail' functionality on Windows. The program is written in C++ using MFC, and uses Win32 file change notifications to monitor when a file changes.

Eclipse IDE in recent years has gained immense popularity and has become the default development

...

{ 2 comments }

Automated GUI Recorder

by venukb on April 24, 2007

Eclipse Testing and Performance Tools Platform Project project has a great write-up on using TPTP's automated GUI recorder.

TPTP's Automated GUI Recorder (AGR) works by registering listeners with the SWT's display instance to record all incoming UI events that directly correspond to user's actions. The recorder keeps track of the context of the events and generates a script that allows the tool to playback the events in the respective order that the user recorded them. The generated script corresponds to a single test case that is embedded in a test suite which users can use to run in quick mode or standard mode (

AGR gives users the ability to also insert verification hooks based on

...

{ 2 comments }

Martin Fowler : Inversion of Control

by venukb on February 27, 2007

Neil Bartlett, a Java developer and a consultant specializing in Eclipse RCP and OSGi is continuing his series of OSGi articles on Eclipsezone.

In one of his latest post, he pointed to a paper titled "IoC Containers and Dependency Injection pattern" written by Martin Fowler.

It was worth a read and the articles section has a lot of interesting stuff. Check it out.

Also the interface of Eclipsezone is little clumsy and makes it difficult to find the series of articles written by Neil. To make things simpler, Neil has created a post in his blog linking all the OSGi articles on Eclipsezone.

By the way, anybody attending EclipseCon 2007 ?

{ 0 comments }

Getting Started with OSGi

by venukb on February 16, 2007

The OSGi Alliance (formerly known as the Open Services Gateway initiative) is an open standards organization founded in March 1999. Over the past few years it has specified a Java-based service platform that can be remotely managed.

The core part of the specifications is a framework that defines an application life cycle model and a service registry.

The Framework implements a complete and dynamic component model - something that is missing in standalone Java/VM environments. Applications or components (coming in the form of bundles for deployment) can be remotely installed, started, stopped, updated and uninstalled without requiring a reboot - management of Java packages/classes is specified in great detail.

Life cycle management is done via API's which allow

...

{ 1 comment }

Learn PHP

by venukb on December 30, 2006

Paul Stamatiou has written a nice series on building a web app using MySQL and PHP.

How To: Code your First Web App

Part 1 Part 2 Part 3

I always wanted to try my hands on PHP and these articles are pretty good to get started on PHP and MySQL.

Also don't forget that there is a nice IDE for PHP which is being built on the Eclipse Platform :)

{ 3 comments }

Camel-Case Search in Eclipse

by venukb on December 26, 2006

I have extensively used Eclipse for the past 2 years and as with every other IDE, the first thing I do is to find out/use the keyboard shortcuts in the application.

Eclipse is a great IDE to work with and I should probably start a series of posts which might help me and others in becoming a Eclipse "power user" :)

R.J. Lorimer has an interesting post on how to use the Camel-Case search in Eclipse.

Many users struggle with the Search Dialog in Eclipse to find a class. In fact you can quickly lookup/Search a class using "Open Type" (Ctrl+Shift+T) dialog.

Till now the only filters I was using was the ? and the *

...

{ 3 comments }