站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > NetBeans API Javadoc 5.0.0

AccessibilityQueryImplementation (NetBeans Java Support APIs) - NetBeans API Javadoc 5.0.0

 

org.netbeans.spi.java.queries
Interface AccessibilityQueryImplementation


public interface AccessibilityQueryImplementation

Permits providers to mark certain Java packages as being inaccessible to outside code despite possibly containing public classes.

A default implementation is registered by the org.netbeans.modules.java.project module which looks up the project corresponding to the file (if any) and checks whether that project has an implementation of this interface in its lookup. If so, it delegates to that implementation. Therefore it is not generally necessary for a project type provider to register its own global implementation of this query, if it depends on the Java Project module and uses this style.

Since:
org.netbeans.api.java/1 1.4
See Also:
AccessibilityQuery, FileOwnerQuery, Project

Method Summary
 Boolean isPubliclyAccessible(FileObject pkg)
          Checks whether a given Java package (folder of source files) is intended to be publicly accessed by code residing in other compilation units.
 

Method Detail

isPubliclyAccessible

public Boolean isPubliclyAccessible(FileObject pkg)
Checks whether a given Java package (folder of source files) is intended to be publicly accessed by code residing in other compilation units.

Parameters:
pkg - a Java source package
Returns:
true if it is definitely intended for public access, false if it is definitely not, or null if nothing is known about it

 

Built on May 3 2007.  |  Portions Copyright 1997-2005 Sun Microsystems, Inc. All rights reserved.