We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, When I try to build my projet on IntelliJ with the .jar file included (in files-project structure-module-dependencies), i've an error !
My code:
public class myWallet extends javacard.framework.Applet { .... }
Error: java.lang.ClassCastException: myWallet cannot be cast to java.desktop/java.applet.Applet
Thanks in advance. Damien.
The text was updated successfully, but these errors were encountered:
Check your import section, it looks that you use in the code java.applet.Applet instead of javacard.framework.Applet.
Sorry, something went wrong.
Hi, It's correct, I use java.applet.Applet and not the other one, i dont understand !
You need to import javacard.framework.Applet instead of the java.applet.Applet.
No branches or pull requests
Hi,
When I try to build my projet on IntelliJ with the .jar file included (in files-project structure-module-dependencies), i've an error !
My code:
Error:
java.lang.ClassCastException: myWallet cannot be cast to java.desktop/java.applet.Applet
Thanks in advance.
Damien.
The text was updated successfully, but these errors were encountered: