I want to create a Google web application project from ground up
through runtime instead of Eclipse IDE. I can create a Java project
from code like the following:

                                final IProjectDescription description
= project.getDescription();
                                description.setNatureIds(new String[] 
{JavaCore.NATURE_ID,
ProjectNature.NATURE_ID});
                                description.setLocation(null);  //default 
location
                                project.setDescription(description, monitor);

                                IJavaProject javaProject = 
JavaCore.create(project);

                                set up class path...

How do I create a Google web application project? Can I download the
Google Eclipse Plugin source code? Can I find some tutorial about
Google Eclipse Plugin?


Many thanks,

Jim

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to