Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Check your <a href="http://wiki.eclipse.org/Build.properties" rel="nofollow noreferrer"><strong><code>build.properties</code></strong></a> section</p> <p>If it doesn't properly specify what's supposed to be in the final binary result, it will not work. Check the .class files are where the MANIFEST.MF says they will be.</p> <hr> <p>from <a href="http://www.eclipsezone.com/eclipse/forums/t99010.rhtml" rel="nofollow noreferrer">EclipseZone</a>, another reason for this error message:</p> <blockquote> <p>If you see a message in the log like</p> </blockquote> <pre><code> The activator org.example.FooActivator for bundle org.example.foo is invalid </code></pre> <blockquote> <p>, then this usually means there has been a <code>ClassNotFoundException</code> trying to load the class in the first place, before it's even got to the start() method.</p> </blockquote> <hr> <p><a href="https://stackoverflow.com/users/134263/penguru">penguru</a> adds:</p> <blockquote> <p>The error occurs when I try create a new object from any other class in the constructor of activator class. Isn't it legal to create an object in activator plugin ?</p> </blockquote> <ul> <li>If that class if from another plugin which has not yet been "activated", that could be your problem. </li> <li>If that class is not found, that would also invalidate your plugin activator.</li> </ul> <p>Basic advice: you may be better off with your initializations done in the <a href="http://www.eclipse.org/ecf/org.eclipse.ecf.docs/api/org/eclipse/ecf/call/Activator.html#start(org.osgi.framework.BundleContext)" rel="nofollow noreferrer"><code>start()</code> method</a> of <code>Activator</code> rather than its constructor.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload