Articles about Java’

Oct 8, 2008

Writing your first Android Application.

Posted by Anandhan Subbiah in Java, Programming Concepts, Technical Articles 3 comments

Setting Up Your Development Environment
Android applications, like most mobile phone applications, are developed in a host-target development environment. In other words, you develop your application on a host computer (where resources are abundant), and download it to a target mobile phone for testing and ultimate use.
To write your own Android mobile phone applications, you’ll first [...]


Mar 20, 2008

Hibernate Events

Posted by Anandhan Subbiah in Java, Programming Concepts, Technical Articles No comments

Hibernate 3 actually implements most of its functionality as event listeners. Event listeners are always registered globally for the event that they handle. You can register them in the configuration file or programmatic ally. Either way, you will need to map your implementation of one of the interfaces to the associated types.Here is the different [...]