public interface IRegion
When an element is included in a region, all of its children are considered to be included. Children of an included element cannot be selectively excluded.
This interface is not intended to be implemented by clients.
Instances can be created via the JavaScriptCore.newRegion
.
Modifier and Type | Method and Description |
---|---|
void |
add(IJavaScriptElement element)
Adds the given element and all of its descendents to this region.
|
boolean |
contains(IJavaScriptElement element)
Returns whether the given element is contained in this region.
|
IJavaScriptElement[] |
getElements()
Returns the top level elements in this region.
|
boolean |
remove(IJavaScriptElement element)
Removes the specified element from the region and returns
true if successful, false if the remove
fails. |
void add(IJavaScriptElement element)
element
- the given elementboolean contains(IJavaScriptElement element)
element
- the given elementIJavaScriptElement[] getElements()
boolean remove(IJavaScriptElement element)
true
if successful, false
if the remove
fails. If an ancestor of the given element is included, the
remove fails (in other words, it is not possible to selectively
exclude descendants of included ancestors).element
- the given elementtrue
if successful, false
if the remove failsCopyright (c) IBM Corp. and others 2000, 2010. All Rights Reserved.