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

org.kohsuke.stapler.jelly.jruby.IJRubyContext Maven / Gradle / Ivy

There is a newer version: 1.263
Show newest version
package org.kohsuke.stapler.jelly.jruby;

import org.apache.commons.jelly.JellyContext;
import org.apache.commons.jelly.XMLOutput;

/**
 * @author Kohsuke Kawaguchi
 */
public interface IJRubyContext {
    JellyContext getJellyContext();
    void setJellyContext(JellyContext context);
    XMLOutput getOutput();
    void setOutput(XMLOutput output);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy