| ADJT Plugin Loading / Build Errors [message #7147] | 
Wed, 23 October 2002 15:20   | 
 
Eclipse User  | 
 | 
 | 
   | 
 
Originally posted by: john_daly.hp.com 
 
Hello all, 
 
I'm looking to see if others have had problems building relatively large 
(800+ classes) AspectJ projects.  In short I have created an AspectJ 
project containing some 800+ classes and although I was successful in 
doing so Eclipse is now producing two errors: 
 
1) Upon opening this project I get:  
     Problems while opening projects Reason: Problems while opening 
projects 
     Details:  
     Attempt to load lass "org.eclipse.ajdt.internal.builder.Builder"from 
     deactivated plugin "org.eclipse.ajdt.ui". 
2)Upon building this project I get:  
     Build problems. 
     Errors during build.  
     Details: 
     Attempt to load lass "org.eclipse.ajdt.internal.builder.Builder"from 
     deactivated plugin "org.eclipse.ajdt.ui". 
 
The latter problem occured in concert with a lack of memory error for the 
Eclipse VM. I'm now firing up Eclipse with the following args: eclipse 
-vmargs -Xmx256MB 
 
Any help or insights would be much appreciated. 
 
Thanks.
 |  
 |  
  | 
 | 
 | 
 | 
| Re: ADJT Plugin Loading / Build Errors [message #7301 is a reply to message #7286] | 
Thu, 24 October 2002 17:40   | 
 
Eclipse User  | 
 | 
 | 
   | 
 
Originally posted by: john_daly.hp.com 
 
Mik Kersten wrote: 
 
> "John Daly" <john_daly@hp.com> wrote in message 
> news:ap6sp9$7fv$1@rogue.oti.com... 
> > Hello all, 
> > 
> > I'm looking to see if others have had problems building relatively large 
> > (800+ classes) AspectJ projects.  In short I have created an AspectJ 
> > project containing some 800+ classes and although I was successful in 
> > doing so Eclipse is now producing two errors: 
> > 
> > 1) Upon opening this project I get: 
> >      Problems while opening projects Reason: Problems while opening 
> > projects 
> >      Details: 
> >      Attempt to load lass "org.eclipse.ajdt.internal.builder.Builder"from 
> >      deactivated plugin "org.eclipse.ajdt.ui". 
> > 2)Upon building this project I get: 
> >      Build problems. 
> >      Errors during build. 
> >      Details: 
> >      Attempt to load lass "org.eclipse.ajdt.internal.builder.Builder"from 
> >      deactivated plugin "org.eclipse.ajdt.ui". 
> > 
> > The latter problem occured in concert with a lack of memory error for the 
> > Eclipse VM. I'm now firing up Eclipse with the following args: eclipse 
> > -vmargs -Xmx256MB 
> > 
> > Any help or insights would be much appreciated. 
> > 
> > Thanks. 
 
> John, 
 
> My reply to Ron's "Out of Memory" post should address this issue in a way 
> that's more convenient than re-installing.  Let me know if that doesn't work 
> for you. 
 
 
Mark, 
 
I tried you magic solution but got no magic.  I did notice though that I 
am now getting the following error inside of Eclipse: 
 
Problems while opening projects 
 
"Plug-in "org.eclipse.ajdt.ui" activation failed while loading class 
"org.eclipse.ajdt.internal.builder.Builder". 
 
The Eclipse (.log) file contained the following data: 
 
!MESSAGE "Plug-in "org.eclipse.ajdt.ui" activation failed while loading 
class "org.eclipse.ajdt.internal.builder.Build 
er". 
!STACK 0 
org.eclipse.core.internal.boot.DelegatingLoaderException: 
org.eclipse.core.runtime.CoreException[2]: java.lang.reflect 
InvocationTargetException: java.lang.NullPointerException 
        at org.eclipse.ajdt.ui.AspectJPlugin.<init>(AspectJPlugin.java:383) 
        at java.lang.reflect.Constructor.newInstance(Native Method) 
        at 
 org.eclipse.core.internal.plugins.PluginDescriptor.internalD oPluginActivation(PluginDescriptor.java:677) 
        at 
 org.eclipse.core.internal.plugins.PluginDescriptor.doPluginA ctivation(PluginDescriptor.java:183) 
        at 
 org.eclipse.core.internal.plugins.PluginClassLoader.activate Plugin(PluginClassLoader.java:58) 
        at 
 org.eclipse.core.internal.plugins.PluginClassLoader.findClas sParentsSelf(PluginClassLoader.java:136) 
        at 
 org.eclipse.core.internal.boot.DelegatingURLClassLoader.load Class(DelegatingURLClassLoader.java:750) 
        at 
 org.eclipse.core.internal.boot.DelegatingURLClassLoader.load Class(DelegatingURLClassLoader.java:730) 
        at java.lang.ClassLoader.loadClass(ClassLoader.java:250) 
        at 
 org.eclipse.core.internal.plugins.PluginDescriptor.createExe cutableExtension(PluginDescriptor.java:127) 
        at 
 org.eclipse.core.internal.plugins.PluginDescriptor.createExe cutableExtension(PluginDescriptor.java:164) 
        at 
 org.eclipse.core.internal.plugins.ConfigurationElement.creat eExecutableExtension(ConfigurationElement.java: 
102) 
        at 
 org.eclipse.core.internal.events.BuildManager.instantiateBui lder(BuildManager.java:486) 
        at 
 org.eclipse.core.internal.events.BuildManager.initializeBuil der(BuildManager.java:441) 
        at 
 org.eclipse.core.internal.events.BuildManager.getBuilder(Bui ldManager.java:327) 
        at 
 org.eclipse.core.internal.events.BuildManager.basicBuild(Bui ldManager.java:165) 
        at 
 org.eclipse.core.internal.events.BuildManager.basicBuild(Bui ldManager.java:186) 
        at 
 org.eclipse.core.internal.events.BuildManager$1.run(BuildMan ager.java:146) 
        at 
 org.eclipse.core.internal.runtime.InternalPlatform.run(Inter nalPlatform.java:839) 
        at org.eclipse.core.runtime.Platform.run(Platform.java:416) 
        at 
 org.eclipse.core.internal.events.BuildManager.basicBuild(Bui ldManager.java:160) 
        at 
 org.eclipse.core.internal.events.BuildManager.build(BuildMan ager.java:211) 
        at 
 org.eclipse.core.internal.resources.Workspace.endOperation(W orkspace.java:745) 
        at 
 org.eclipse.core.internal.resources.Project.open(Project.jav a:620) 
        at 
 org.eclipse.jdt.ui.actions.OpenProjectAction$1.run(OpenProje ctAction.java:130) 
        at 
 org.eclipse.jface.operation.ModalContext$ModalContextThread. run(ModalContext.java:98)
 |  
 |  
  | 
| Re: ADJT Plugin Loading / Build Errors [message #562190 is a reply to message #7147] | 
Thu, 24 October 2002 10:57   | 
 
Eclipse User  | 
 | 
 | 
   | 
 
John Daly wrote: 
 
> Hello all, 
 
> I'm looking to see if others have had problems building relatively large 
> (800+ classes) AspectJ projects.  In short I have created an AspectJ 
> project containing some 800+ classes and although I was successful in 
> doing so Eclipse is now producing two errors: 
 
> 1) Upon opening this project I get:  
>      Problems while opening projects Reason: Problems while opening 
> projects 
>      Details:  
>      Attempt to load lass "org.eclipse.ajdt.internal.builder.Builder"from 
>      deactivated plugin "org.eclipse.ajdt.ui". 
> 2)Upon building this project I get:  
>      Build problems. 
>      Errors during build.  
>      Details: 
>      Attempt to load lass "org.eclipse.ajdt.internal.builder.Builder"from 
>      deactivated plugin "org.eclipse.ajdt.ui". 
 
> The latter problem occured in concert with a lack of memory error for the 
> Eclipse VM. I'm now firing up Eclipse with the following args: eclipse 
> -vmargs -Xmx256MB 
 
> Any help or insights would be much appreciated. 
 
> Thanks. 
 
I got the same error here!  Actually, I have another post to the same 
effect (24.10),
 |  
 |  
  | 
| Re: ADJT Plugin Loading / Build Errors [message #562214 is a reply to message #7147] | 
Thu, 24 October 2002 13:54   | 
 
Eclipse User  | 
 | 
 | 
   | 
 
John Daly wrote: 
 
> Hello all, 
 
> I'm looking to see if others have had problems building relatively large 
> (800+ classes) AspectJ projects.  In short I have created an AspectJ 
> project containing some 800+ classes and although I was successful in 
> doing so Eclipse is now producing two errors: 
 
> 1) Upon opening this project I get:  
>      Problems while opening projects Reason: Problems while opening 
> projects 
>      Details:  
>      Attempt to load lass "org.eclipse.ajdt.internal.builder.Builder"from 
>      deactivated plugin "org.eclipse.ajdt.ui". 
> 2)Upon building this project I get:  
>      Build problems. 
>      Errors during build.  
>      Details: 
>      Attempt to load lass "org.eclipse.ajdt.internal.builder.Builder"from 
>      deactivated plugin "org.eclipse.ajdt.ui". 
 
> The latter problem occured in concert with a lack of memory error for the 
> Eclipse VM. I'm now firing up Eclipse with the following args: eclipse 
> -vmargs -Xmx256MB 
 
> Any help or insights would be much appreciated. 
 
> Thanks. 
 
 
The only way I got it to work was to re-instal, making sure to make your 
change above form the -vmargs. 
 
Later, 
 
Ron
 |  
 |  
  | 
| Re: ADJT Plugin Loading / Build Errors [message #562264 is a reply to message #7147] | 
Thu, 24 October 2002 14:32   | 
 
Eclipse User  | 
 | 
 | 
   | 
 
"John Daly" <john_daly@hp.com> wrote in message 
news:ap6sp9$7fv$1@rogue.oti.com... 
> Hello all, 
> 
> I'm looking to see if others have had problems building relatively large 
> (800+ classes) AspectJ projects.  In short I have created an AspectJ 
> project containing some 800+ classes and although I was successful in 
> doing so Eclipse is now producing two errors: 
> 
> 1) Upon opening this project I get: 
>      Problems while opening projects Reason: Problems while opening 
> projects 
>      Details: 
>      Attempt to load lass "org.eclipse.ajdt.internal.builder.Builder"from 
>      deactivated plugin "org.eclipse.ajdt.ui". 
> 2)Upon building this project I get: 
>      Build problems. 
>      Errors during build. 
>      Details: 
>      Attempt to load lass "org.eclipse.ajdt.internal.builder.Builder"from 
>      deactivated plugin "org.eclipse.ajdt.ui". 
> 
> The latter problem occured in concert with a lack of memory error for the 
> Eclipse VM. I'm now firing up Eclipse with the following args: eclipse 
> -vmargs -Xmx256MB 
> 
> Any help or insights would be much appreciated. 
> 
> Thanks. 
 
John, 
 
My reply to Ron's "Out of Memory" post should address this issue in a way 
that's more convenient than re-installing.  Let me know if that doesn't work 
for you. 
 
Regards, 
 
Mik 
 
-- 
Mik Kersten 
Development Tools Lead 
AspectJ Team, Palo Alto Research Center 
http://www.parc.com/mkersten 
> 
>
 |  
 |  
  | 
| Re: ADJT Plugin Loading / Build Errors [message #562292 is a reply to message #7286] | 
Thu, 24 October 2002 17:40   | 
 
Eclipse User  | 
 | 
 | 
   | 
 
Originally posted by: john_daly.hp.com 
 
Mik Kersten wrote: 
 
> "John Daly" <john_daly@hp.com> wrote in message 
> news:ap6sp9$7fv$1@rogue.oti.com... 
> > Hello all, 
> > 
> > I'm looking to see if others have had problems building relatively large 
> > (800+ classes) AspectJ projects.  In short I have created an AspectJ 
> > project containing some 800+ classes and although I was successful in 
> > doing so Eclipse is now producing two errors: 
> > 
> > 1) Upon opening this project I get: 
> >      Problems while opening projects Reason: Problems while opening 
> > projects 
> >      Details: 
> >      Attempt to load lass "org.eclipse.ajdt.internal.builder.Builder"from 
> >      deactivated plugin "org.eclipse.ajdt.ui". 
> > 2)Upon building this project I get: 
> >      Build problems. 
> >      Errors during build. 
> >      Details: 
> >      Attempt to load lass "org.eclipse.ajdt.internal.builder.Builder"from 
> >      deactivated plugin "org.eclipse.ajdt.ui". 
> > 
> > The latter problem occured in concert with a lack of memory error for the 
> > Eclipse VM. I'm now firing up Eclipse with the following args: eclipse 
> > -vmargs -Xmx256MB 
> > 
> > Any help or insights would be much appreciated. 
> > 
> > Thanks. 
 
> John, 
 
> My reply to Ron's "Out of Memory" post should address this issue in a way 
> that's more convenient than re-installing.  Let me know if that doesn't work 
> for you. 
 
 
Mark, 
 
I tried you magic solution but got no magic.  I did notice though that I 
am now getting the following error inside of Eclipse: 
 
Problems while opening projects 
 
"Plug-in "org.eclipse.ajdt.ui" activation failed while loading class 
"org.eclipse.ajdt.internal.builder.Builder". 
 
The Eclipse (.log) file contained the following data: 
 
!MESSAGE "Plug-in "org.eclipse.ajdt.ui" activation failed while loading 
class "org.eclipse.ajdt.internal.builder.Build 
er". 
!STACK 0 
org.eclipse.core.internal.boot.DelegatingLoaderException: 
org.eclipse.core.runtime.CoreException[2]: java.lang.reflect 
InvocationTargetException: java.lang.NullPointerException 
        at org.eclipse.ajdt.ui.AspectJPlugin.<init>(AspectJPlugin.java:383) 
        at java.lang.reflect.Constructor.newInstance(Native Method) 
        at 
 org.eclipse.core.internal.plugins.PluginDescriptor.internalD oPluginActivation(PluginDescriptor.java:677) 
        at 
 org.eclipse.core.internal.plugins.PluginDescriptor.doPluginA ctivation(PluginDescriptor.java:183) 
        at 
 org.eclipse.core.internal.plugins.PluginClassLoader.activate Plugin(PluginClassLoader.java:58) 
        at 
 org.eclipse.core.internal.plugins.PluginClassLoader.findClas sParentsSelf(PluginClassLoader.java:136) 
        at 
 org.eclipse.core.internal.boot.DelegatingURLClassLoader.load Class(DelegatingURLClassLoader.java:750) 
        at 
 org.eclipse.core.internal.boot.DelegatingURLClassLoader.load Class(DelegatingURLClassLoader.java:730) 
        at java.lang.ClassLoader.loadClass(ClassLoader.java:250) 
        at 
 org.eclipse.core.internal.plugins.PluginDescriptor.createExe cutableExtension(PluginDescriptor.java:127) 
        at 
 org.eclipse.core.internal.plugins.PluginDescriptor.createExe cutableExtension(PluginDescriptor.java:164) 
        at 
 org.eclipse.core.internal.plugins.ConfigurationElement.creat eExecutableExtension(ConfigurationElement.java: 
102) 
        at 
 org.eclipse.core.internal.events.BuildManager.instantiateBui lder(BuildManager.java:486) 
        at 
 org.eclipse.core.internal.events.BuildManager.initializeBuil der(BuildManager.java:441) 
        at 
 org.eclipse.core.internal.events.BuildManager.getBuilder(Bui ldManager.java:327) 
        at 
 org.eclipse.core.internal.events.BuildManager.basicBuild(Bui ldManager.java:165) 
        at 
 org.eclipse.core.internal.events.BuildManager.basicBuild(Bui ldManager.java:186) 
        at 
 org.eclipse.core.internal.events.BuildManager$1.run(BuildMan ager.java:146) 
        at 
 org.eclipse.core.internal.runtime.InternalPlatform.run(Inter nalPlatform.java:839) 
        at org.eclipse.core.runtime.Platform.run(Platform.java:416) 
        at 
 org.eclipse.core.internal.events.BuildManager.basicBuild(Bui ldManager.java:160) 
        at 
 org.eclipse.core.internal.events.BuildManager.build(BuildMan ager.java:211) 
        at 
 org.eclipse.core.internal.resources.Workspace.endOperation(W orkspace.java:745) 
        at 
 org.eclipse.core.internal.resources.Project.open(Project.jav a:620) 
        at 
 org.eclipse.jdt.ui.actions.OpenProjectAction$1.run(OpenProje ctAction.java:130) 
        at 
 org.eclipse.jface.operation.ModalContext$ModalContextThread. run(ModalContext.java:98)
 |  
 |  
  | 
Powered by 
FUDForum. Page generated in 0.57597 seconds