This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 18724
Collapse All | Expand All

(-)openidex/src/org/openidex/nodes/looks/FilterLook.java (-3 / +3 lines)
Lines 44-54 Link Here
44
public class FilterLook extends DefaultLook {
44
public class FilterLook extends DefaultLook {
45
    
45
    
46
    /** Mask for enabling (unmasking) all methods */
46
    /** Mask for enabling (unmasking) all methods */
47
    public static final long ALL_METHODS = Integer.MAX_VALUE;
47
    public static final long ALL_METHODS = Long.MAX_VALUE;
48
    /** Mask for disabling (masking) all methods */
48
    /** Mask for disabling (masking) all methods */
49
    public static final long NO_METHODS = 0;
49
    public static final long NO_METHODS = 0L;
50
    /** Mask for the method {@link #attachTo}. */
50
    /** Mask for the method {@link #attachTo}. */
51
    public static final long ATTACH_TO = 1;
51
    public static final long ATTACH_TO = 1L;
52
    /** Mask for the method {@link #getCookie}. */
52
    /** Mask for the method {@link #getCookie}. */
53
    public static final long GET_COOKIE = ATTACH_TO << 1;
53
    public static final long GET_COOKIE = ATTACH_TO << 1;
54
    /** Mask for the method {@link #getHandle}. */
54
    /** Mask for the method {@link #getHandle}. */

Return to bug 18724