Java org.eclipse.jdt.core IAccessRule fields, constructors, methods, implement or subclass

Example usage for Java org.eclipse.jdt.core IAccessRule fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.eclipse.jdt.core IAccessRule.

The text is from its open source code.

Field

intK_ACCESSIBLE
Constant indicating that files matching the rule's pattern are accessible.
intK_NON_ACCESSIBLE
Constant indicating that files matching the rule's pattern are non-accessible.
intK_DISCOURAGED
Constant indicating that access to the files matching the rule's pattern is discouraged.
intIGNORE_IF_BETTER

Flag indicating that whether a type matching this rule should be ignored iff a type with the same qualified name can be found on a later classpath entry with a better accessibility.

E.g.

Constructor

Method

intgetKind()
Returns the kind of this access rule (one of #K_ACCESSIBLE , #K_NON_ACCESSIBLE or #K_DISCOURAGED ).
IPathgetPattern()
Returns the file pattern for this access rule.
booleanignoreIfBetter()

Returns whether a type matching this rule should be ignored iff a type with the same qualified name can be found on a later classpath entry with a better accessibility.

E.g.