Saturday, March 31, 2012

Contents

Eclipse :

   Eclipse 4 Basic Concepts

    How to create a Plug-in Project
    How to create a new Perspective using Extension Point
    How to add Perspective Shortcut or View Shortcut using extension point
    How to create a new View
    How to create Sticky View
    Adding functionality in Sample View - Show all projects in Sample View
    Adding Action in Menu or Toolbar of Sample View programmatically
    How to add Action and Menu in Eclipse Toolbar and Menu bar respectively
    How to hide or show action set in eclipse workbench when eclipse related part (like: Editor, View etc.) will be (de)activated
    How to enabled/disabled the View action depending on the File selection in View? How to open file in eclipse using View Action?
    How to create an Eclipse Extension Point and Implement in another Plug-in Project


Git Hub:

   How to use Git and Git Tutorial 



UML & Design Pattern:
   UML - Basic concepts
   Java Design Pattern

JNI (Java Native Interface):
  Basic of JNI with Eclipse 4 and Visual C++ in Windows


Thursday, March 29, 2012

How to create a Plug-in Project

  1. Open the “Plug-in Development” perspective.
  2. Go to File -> New -> Project… and then select “Plug-in Project” under “Plug-in Development” category from “New Project” wizard.
New Project wizard

  1. Click Next.
  2. Give the project name properly and keep other setting as it is (as of now).
Create New Plug-in Project wizard


  1. Click Next
  2. Keep all the setting as it is (as of now). Make sure that, under section “Rich Client Application” the radio button “No” is selected.

Plug-in project setting


  1. Click “Finish” to close the wizard. A new Plug-in project is created in eclipse workspace and it will be visible in “Package Explorer” view.
Created new plug-in Project