Package org.jenkinsci.jruby

Examples of org.jenkinsci.jruby.JRubyMapper


  }

    private void register(XStream2 xs, ScriptingContainer ruby) {
        JRubyXStream.register(xs,ruby);
        synchronized (xs) {
            xs.setMapper(new JRubyMapper(xs.getMapperInjectionPoint()));
        }
    }
View Full Code Here


    }

    private void register(XStream2 xs, ScriptingContainer ruby) {
        JRubyXStream.register(xs, ruby);
        synchronized (xs) {
            xs.setMapper(new JRubyMapper(xs.getMapperInjectionPoint()));
        }
    }
View Full Code Here

     * sets up an XSTREAM to be able to handle jruby objects
     * @param xs
     */
    private static void enableJRubyXStream(XStream2 xs) {
        synchronized (xs) {
            xs.setMapper(new JRubyMapper(xs.getMapperInjectionPoint()));
        }
    }
View Full Code Here

TOP

Related Classes of org.jenkinsci.jruby.JRubyMapper

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.