Searched refs:GuardedInvocationComponent (Results 1 - 5 of 5) sorted by relevance

/openjdk9/nashorn/src/jdk.dynalink/share/classes/jdk/dynalink/beans/
H A DGuardedInvocationComponent.java95 class GuardedInvocationComponent { class
106 GuardedInvocationComponent(final MethodHandle invocation) { method in class:GuardedInvocationComponent
110 GuardedInvocationComponent(final MethodHandle invocation, final MethodHandle guard, final ValidationType validationType) { method in class:GuardedInvocationComponent
114 GuardedInvocationComponent(final MethodHandle invocation, final MethodHandle guard, final Class<?> validatorClass, method in class:GuardedInvocationComponent
119 GuardedInvocationComponent(final GuardedInvocation guardedInvocation, final Class<?> validatorClass, method in class:GuardedInvocationComponent
124 GuardedInvocationComponent replaceInvocation(final MethodHandle newInvocation) {
128 GuardedInvocationComponent replaceInvocation(final MethodHandle newInvocation, final MethodHandle newGuard) {
129 return new GuardedInvocationComponent(guardedInvocation.replaceMethods(newInvocation,
133 private GuardedInvocationComponent(final MethodHandle invocation, final MethodHandle guard, final Validator validator) { method in class:GuardedInvocationComponent
137 private GuardedInvocationComponent(fina method in class:GuardedInvocationComponent
[all...]
H A DClassLinker.java88 import jdk.dynalink.beans.GuardedInvocationComponent.ValidationType;
H A DBeanLinker.java99 import jdk.dynalink.beans.GuardedInvocationComponent.ValidationType;
136 protected GuardedInvocationComponent getGuardedInvocationComponent(final ComponentLinkRequest req) throws Exception {
137 final GuardedInvocationComponent superGic = super.getGuardedInvocationComponent(req);
185 private GuardedInvocationComponent getElementGetter(final ComponentLinkRequest req) throws Exception {
193 final GuardedInvocationComponent nextComponent = getNextComponent(req);
200 final GuardedInvocationComponent gic;
261 final GuardedInvocationComponent finalNextComponent;
275 private static GuardedInvocationComponent createInternalFilteredGuardedInvocationComponent(
277 return new GuardedInvocationComponent(linkerServices.filterInternalObjects(invocation));
280 private static GuardedInvocationComponent createGuardedInvocationComponentAsTyp
[all...]
H A DAbstractJavaLinker.java108 import jdk.dynalink.beans.GuardedInvocationComponent.ValidationType;
365 final GuardedInvocationComponent gic = getGuardedInvocationComponent(
415 protected GuardedInvocationComponent getGuardedInvocationComponent(final ComponentLinkRequest req)
433 GuardedInvocationComponent getNextComponent(final ComponentLinkRequest req) throws Exception {
438 final GuardedInvocationComponent gic = getGuardedInvocationComponent(req);
445 private GuardedInvocationComponent createNoSuchMemberHandler(
473 GuardedInvocationComponent getClassGuardedInvocationComponent(final MethodHandle invocation, final MethodType type) {
474 return new GuardedInvocationComponent(invocation, getClassGuard(type), clazz, ValidationType.EXACT_CLASS);
544 private GuardedInvocationComponent getPropertySetter(final ComponentLinkRequest req) throws Exception {
551 private GuardedInvocationComponent getUnnamedPropertySette
[all...]
H A DStaticClassLinker.java96 import jdk.dynalink.beans.GuardedInvocationComponent.ValidationType;
166 protected GuardedInvocationComponent getGuardedInvocationComponent(final ComponentLinkRequest req) throws Exception {
167 final GuardedInvocationComponent superGic = super.getGuardedInvocationComponent(req);

Completed in 207 milliseconds