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 270759 - Netbeans fails to import Java class after update
Summary: Netbeans fails to import Java class after update
Status: NEW
Alias: None
Product: ide
Classification: Unclassified
Component: Code (show other bugs)
Version: 8.2
Hardware: PC Windows 10 x64
: P3 normal (vote)
Assignee: issues@ide
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-05-29 13:09 UTC by ievgiienko
Modified: 2017-05-29 13:09 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
Problematic JAR (902.99 KB, application/octet-stream)
2017-05-29 13:09 UTC, ievgiienko
Details

Note You need to log in before you can comment on or make changes to this bug.
Description ievgiienko 2017-05-29 13:09:57 UTC
Created attachment 164428 [details]
Problematic JAR

Attached JAR contains SecureBlackbox.PKI.TElCMSSignature class that is a part of SecureBlackbox framework. It was possible to import and use this class in Netbeans 8.1, but we (and our client) get "cannot find symbol" in Netbeans 8.2 for the same JAR. Other classes are imported correctly.

Code is simple:

import SecureBlackbox.PKI.TElCMSSignature;

public class JavaApplication1 {
    public static void main(String[] args) {
        TElCMSSignature c = new TElCMSSignature();
    }
}