All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kohsuke.groovy.sandbox.impl.Super Maven / Gradle / Ivy

There is a newer version: 1.25.1
Show newest version
package org.kohsuke.groovy.sandbox.impl;

import org.kohsuke.groovy.sandbox.GroovyInterceptor.Invoker;

/**
 * Packs argument of the super method call for {@link Invoker}
 * @author Kohsuke Kawaguchi
 */
public final class Super {
    final Class senderType;
    final Object receiver;

    public Super(Class senderType, Object receiver) {
        this.senderType = senderType;
        this.receiver = receiver;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy