This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 198099 - annotation.IncompleteAnnotationException: java.lang.SuppressWarnings missing element value
Summary: annotation.IncompleteAnnotationException: java.lang.SuppressWarnings missing ...
Status: NEW
Alias: None
Product: third-party
Classification: Unclassified
Component: -- Other -- (show other bugs)
Version: 6.x
Hardware: All All
: P3 normal (vote)
Assignee: issues@third-party
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-04-26 17:41 UTC by voracfil
Modified: 2011-05-05 07:41 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter: 178358


Attachments
stacktrace (2.91 KB, text/plain)
2011-04-26 17:41 UTC, voracfil
Details

Note You need to log in before you can comment on or make changes to this bug.
Description voracfil 2011-04-26 17:41:37 UTC
This issue was reported manually by voracfil.
It already has 1 duplicates 


Build: NetBeans IDE 6.9.1 (Build 201011082200)
VM: Java HotSpot(TM) Client VM, 14.1-b02, Java(TM) SE Runtime Environment, 1.6.0_15-b03
OS: Windows XP

Stacktrace: 
java.lang.annotation.IncompleteAnnotationException: java.lang.SuppressWarnings missing element value
   at sun.reflect.annotation.AnnotationInvocationHandler.invoke(AnnotationInvocationHandler.java:53)
   at $Proxy33.value(.java:0)
   at eu.easyedu.netbeans.svuid.SvuidHelper.hasSuppressWarning(SvuidHelper.java:113)
   at eu.easyedu.netbeans.svuid.SvuidHelper.needsSerialVersionUID(SvuidHelper.java:85)
   at eu.easyedu.netbeans.svuid.SerialVersionUidHint.run(SerialVersionUidHint.java:72)
   at org.netbeans.modules.java.hints.infrastructure.RulesManager$WorkerImpl.createErrors(RulesManager.java:406)
Comment 1 voracfil 2011-04-26 17:41:41 UTC
Created attachment 107952 [details]
stacktrace
Comment 2 Jan Lahoda 2011-05-05 07:41:06 UTC
A bug in the "eu.easyedu.netbeans.svuid.SvuidHelper". Can be reproduced easily using this code:
package javaapplication1a;

import java.io.Serializable;

@SuppressWarnings
public class JavaApplication1a implements Serializable {
}