Java Generics

Generics Generics were introduced in java 5 to add stability to the code. You can add type variables to classes, interfaces and methods. Generic Class Declaration Below you see an example of generic class declaration. by writing class Box<T>, you introduce Read more…

Mongo DB Test

Installing MongoDB on Windows. Download MongoDB from its download page, and install it. I chose to install in C:\opt\MongoDB\Server\3.2. Create a folder for database and a folder for logs. Then create a mongod.cfg to represent this data. In my case, I Read more…

JSDT Development

This post is about my experience in setting up a JSDT development environment. (see also wiki.eclipse.org/JSDT/Development) Setting up JSDT There are several ways to setup JSDT development environment. A good one is having an Eclipse Installation for development (IDE) and an Eclipse Installation Read more…

Eclipse WTP development

This page holds some references to WTP (Web Tools Platform) developer resources. Main WTP references Main references Community page : https://www.eclipse.org/webtools/community/ Community info about development: www.eclipse.org/webtools/development/ project on eclipse.org site: https://projects.eclipse.org/projects/webtools WTP Contribution Resources on how to contribute to WTP project: I asked how to Read more…