Google Web Toolkit is a great tool kit for developing Ajax based applications.
Inheritance : Creating a new class from the base or existing class.
I have created two separate project and now i want to inherit the one project source to another project so that i can reuse the class i.e, the concept of Object Oriented Programming Language.
To Inherit the One Project code to another Project simply follow the below steps.
1.Export the first project as a jar but make sure to comment on the Entry Point of first Project i.e, the filename.gwt.xml.
2.Copy the Exported Java archive (jar) to the second project and add it in property build path.
3.Now Inherit first project module in the Second Project Entry Point.
4.Now Drive the new class from first project class.
5.Compile And Run It.
Inheritance : Creating a new class from the base or existing class.
I have created two separate project and now i want to inherit the one project source to another project so that i can reuse the class i.e, the concept of Object Oriented Programming Language.
To Inherit the One Project code to another Project simply follow the below steps.
1.Export the first project as a jar but make sure to comment on the Entry Point of first Project i.e, the filename.gwt.xml.
2.Copy the Exported Java archive (jar) to the second project and add it in property build path.
3.Now Inherit first project module in the Second Project Entry Point.
4.Now Drive the new class from first project class.
5.Compile And Run It.
Comments
Post a Comment