Home >Java >javaTutorial >How to Address the \'The Type \'Application\' is Not API\' Error in Eclipse?
AccessRestriction Error with "The Type 'Application' is Not API"
This error occurs when attempting to access non-API classes, such as com.apple.eawt.Application, which are not exposed as part of the Java public API.
Background: Eclipse Access Restrictions
Eclipse employs access restrictions to safeguard developers from using non-API classes that may introduce security or stability concerns. API classes are explicitly defined in the official Java documentation.
Problem: Using Non-API Classes
Some situations arise where it may be necessary to access non-API classes, such as for advanced functionalities or compatibility with specific platforms. In these cases, Eclipse's access restrictions prevent the use of such classes.
Solution: Modifying Access Restrictions
To resolve the error, you can modify the access restrictions in Eclipse by following these steps:
This process will allow you to access the necessary non-API classes while preserving the security and stability measures of Eclipse.
The above is the detailed content of How to Address the \'The Type \'Application\' is Not API\' Error in Eclipse?. For more information, please follow other related articles on the PHP Chinese website!