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

VisibilityQueryImplementation (NetBeans General Queries API) - NetBeans API Javadoc 5.0.0

 

org.netbeans.spi.queries
Interface VisibilityQueryImplementation


public interface VisibilityQueryImplementation

Determine whether files should be hidden in views presented to the user.

Global lookup is used to find all instances of VisibilityQueryImplementation.

Threading note: implementors should avoid acquiring locks that might be held by other threads. Generally treat this interface similarly to SPIs in org.openide.filesystems with respect to threading semantics.

See Also:
VisibilityQuery

Method Summary
 void addChangeListener(ChangeListener l)
          Add a listener to changes.
 boolean isVisible(FileObject file)
          Check whether a file is recommended to be visible.
 void removeChangeListener(ChangeListener l)
          Stop listening to changes.
 

Method Detail

isVisible

public boolean isVisible(FileObject file)
Check whether a file is recommended to be visible.

Parameters:
file - a file to considered
Returns:
true if it is recommended to display this file

addChangeListener

public void addChangeListener(ChangeListener l)
Add a listener to changes.

Parameters:
l - a listener to add

removeChangeListener

public void removeChangeListener(ChangeListener l)
Stop listening to changes.

Parameters:
l - a listener to remove

 

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