Package org.kohsuke.accmod.restrictions
Class ProtectedExternally
java.lang.Object
org.kohsuke.accmod.AccessRestriction
org.kohsuke.accmod.restrictions.None
org.kohsuke.accmod.restrictions.ProtectedExternally
A method which may be implemented/overridden from anywhere, including 
super calls, but may not be otherwise called outside the source module.
 Akin to using the protected modifier but allowing “package” access elsewhere in the same package root, and also supporting interface methods.
 Note that Restricted is not Inherited so this only protects attempted accesses via the defining type;
 you will generally also want to restrict the implementations (for example as DoNotUse).- Since:
- FIXME
- 
Field SummaryFields inherited from class org.kohsuke.accmod.AccessRestrictionNONE
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidinvoked(Location loc, RestrictedElement target, ErrorListener errorListener) The method on which this restriction is placed is invoked elsewhere.Methods inherited from class org.kohsuke.accmod.restrictions.Noneinstantiated, read, usedAsInterface, usedAsSuperType, writtenMethods inherited from class org.kohsuke.accmod.AccessRestrictionappliesToNested
- 
Constructor Details- 
ProtectedExternallypublic ProtectedExternally()
 
- 
- 
Method Details- 
invokedDescription copied from class:AccessRestrictionThe method on which this restriction is placed is invoked elsewhere.
 
-