Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Rich Client Platform (RCP) » How to use 'ASTParser' on RCP
How to use 'ASTParser' on RCP [message #760052] Thu, 01 December 2011 05:58 Go to next message
p07025 is currently offline p07025Friend
Messages: 1
Registered: December 2011
Junior Member
Hi.

I want to use 'ASTParser' on RCP.
but I happen problem on JavaCore.
I saw a success post which write using headless eclipse.
I try it, but failed.

Please give me some suggestion!

public class Application implements IApplication {

	/* (non-Javadoc)
	 * @see org.eclipse.equinox.app.IApplication#start(org.eclipse.equinox.app.IApplicationContext)
	 */
	public Object start(IApplicationContext context) throws Exception {
		ASTParser.newParser(AST.JLS3);
		return IApplication.EXIT_OK;
	}

	/* (non-Javadoc)
	 * @see org.eclipse.equinox.app.IApplication#stop()
	 */
	public void stop() {
		// nothing to do
	}
}


Exception;
java.lang.ExceptionInInitializerError
	at org.eclipse.jdt.core.JavaCore.getOptions(JavaCore.java:3019)
	at org.eclipse.jdt.core.dom.ASTParser.initializeDefaults(ASTParser.java:230)
	at org.eclipse.jdt.core.dom.ASTParser.<init>(ASTParser.java:213)
	at org.eclipse.jdt.core.dom.ASTParser.newParser(ASTParser.java:113)
	at org.hello.Application.start(Application.java:17)

Re: How to use 'ASTParser' on RCP [message #761441 is a reply to message #760052] Tue, 06 December 2011 13:33 Go to previous message
Paul Webster is currently offline Paul WebsterFriend
Messages: 6859
Registered: July 2009
Location: Ottawa
Senior Member

You might want to post in the JDT newsgroup, they might understand what you have to do to run with the AST headless.

PW


Previous Topic:I need input on serving web content to the local network from a jetty server inside an RCP.
Next Topic:Undo/Redo not working properly with multiple documents
Goto Forum:
  


Current Time: Sat Apr 27 00:05:12 GMT 2024

Powered by FUDForum. Page generated in 0.03512 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top