Reputation: 43
I am trying to import SwingUtilities3 to the project.
import com.sun.java.swing.SwingUtilities3;
It give me this error message
Description Resource Path Location Type
Access restriction: The type 'SwingUtilities3' is not API (restriction on required library 'C:\Program Files\Java\jre1.8.0_241\lib\rt.jar') TransformUI.java /rotatetion_deneme/src/rotatetion_deneme/pbjar/src/org/pbjar/jxlayer/plaf/ext line 79 Java Problem
I am using eclipse for java developers and java version 1.8
Upvotes: 0
Views: 85
Reputation: 6818
You can ignore that warning under Deprecated and restricted API settings of your project. You can navigate there by doing right click on your project -> Properties -> Java Compiler -> Errors/Warnings:
And you can find more info about this on this question.
Upvotes: 0