Package | Description |
---|---|
org.kohsuke.accmod | |
org.kohsuke.accmod.impl | |
org.kohsuke.accmod.restrictions |
Modifier and Type | Method and Description |
---|---|
abstract void |
AccessRestriction.instantiated(Location loc,
RestrictedElement target,
ErrorListener errorListener)
The type on which this restriction is placed is instantiated elsewhere.
|
abstract void |
AccessRestriction.invoked(Location loc,
RestrictedElement target,
ErrorListener errorListener)
The method on which this restriction is placed is invoked elsewhere.
|
abstract void |
AccessRestriction.read(Location loc,
RestrictedElement target,
ErrorListener errorListener)
The field on which this restriction is placed is read.
|
abstract void |
AccessRestriction.usedAsInterface(Location loc,
RestrictedElement target,
ErrorListener errorListener)
The type on which this restriction is placed is used as an interface that another class/interface implements.
|
abstract void |
AccessRestriction.usedAsSuperType(Location loc,
RestrictedElement target,
ErrorListener errorListener)
The type on which this restriction is placed is used as a supertype by another class.
|
abstract void |
AccessRestriction.written(Location loc,
RestrictedElement target,
ErrorListener errorListener)
The field on which this restriction is placed is updated.
|
Modifier and Type | Method and Description |
---|---|
void |
Restrictions.instantiated(Location loc,
ErrorListener errorListener) |
void |
Restrictions.invoked(Location location,
ErrorListener errorListener) |
void |
ErrorListener.onError(Throwable t,
Location loc,
String msg) |
void |
ErrorListener.onWarning(Throwable t,
Location loc,
String msg) |
void |
Restrictions.read(Location location,
ErrorListener errorListener) |
void |
Restrictions.usedAsInterface(Location loc,
ErrorListener errorListener) |
void |
Restrictions.usedAsSuperType(Location loc,
ErrorListener errorListener) |
void |
Restrictions.written(Location location,
ErrorListener errorListener) |
Modifier and Type | Method and Description |
---|---|
void |
DoNotUse.error(Location loc,
RestrictedElement target,
ErrorListener errorListener) |
void |
NoExternalUse.error(Location loc,
RestrictedElement target,
ErrorListener errorListener) |
void |
DoNotUse.instantiated(Location loc,
RestrictedElement target,
ErrorListener errorListener) |
void |
None.instantiated(Location loc,
RestrictedElement target,
ErrorListener errorListener) |
void |
DoNotUse.invoked(Location loc,
RestrictedElement target,
ErrorListener errorListener) |
void |
None.invoked(Location loc,
RestrictedElement target,
ErrorListener errorListener) |
void |
DoNotUse.read(Location loc,
RestrictedElement target,
ErrorListener errorListener) |
void |
None.read(Location loc,
RestrictedElement target,
ErrorListener errorListener) |
void |
DoNotUse.usedAsInterface(Location loc,
RestrictedElement target,
ErrorListener errorListener) |
void |
None.usedAsInterface(Location loc,
RestrictedElement target,
ErrorListener errorListener) |
void |
DoNotUse.usedAsSuperType(Location loc,
RestrictedElement target,
ErrorListener errorListener) |
void |
None.usedAsSuperType(Location loc,
RestrictedElement target,
ErrorListener errorListener) |
void |
DoNotUse.written(Location loc,
RestrictedElement target,
ErrorListener errorListener) |
void |
None.written(Location loc,
RestrictedElement target,
ErrorListener errorListener) |
Copyright © 2013. All Rights Reserved.