Top Description Methods
org.jruby.embed

public Interface EmbedRubyInterfaceAdapter

Known Direct Implementers
org.jruby.embed.internal.EmbedRubyInterfaceAdapterImpl

This interface defines a method to get a instance of requested interface, which is implemented in Ruby.
Author
Yoko Harada <yokolet@gmail.com>

Method Summary

Modifier and TypeMethod and Description
public <T> T

Returns:

an instance of requested interface type.
getInstance
(Object
a receiver of the previously evaluated script.
receiver
,
Class<T>
an interface type of the returning instance.
clazz
)

Returns a instance of requested interface type from a previously evaluated script.

Method Detail

getInstanceback to summary
public <T> T getInstance(Object receiver, Class<T> clazz)

Returns a instance of requested interface type from a previously evaluated script.

Parameters
receiver:Object

a receiver of the previously evaluated script.

clazz:Class<T>

an interface type of the returning instance.

Returns:T

an instance of requested interface type.