Package com.ibm.wsspi.adaptable.module
Interface MaskedPathEntry
-
public interface MaskedPathEntry
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isMasked()
Query if the adapted entry is currently masked via 'mask'.void
mask()
Hides the adapted entry.void
unMask()
UnHides the adapted entry previously hidden via 'mask'.
-
-
-
Method Detail
-
mask
void mask()
Hides the adapted entry.Applies to both overlaid, and original Entries.
Applies even if Entry is added via overlay after mask invocation.
-
unMask
void unMask()
UnHides the adapted entry previously hidden via 'mask'.
Has no effect if path is not masked.
-
isMasked
boolean isMasked()
Query if the adapted entry is currently masked via 'mask'.- Returns:
- true if masked, false otherwise.
-
-