
jedi.example.MultipleOptionsExampleStaticClosureFactory Maven / Gradle / Ivy
package jedi.example;
public class MultipleOptionsExampleStaticClosureFactory {
private static IMultipleOptionsExampleClosureFactory $DELEGATE = new MultipleOptionsExampleClosureFactory();
public static void setDelegate(IMultipleOptionsExampleClosureFactory newDelegate) {
jedi.assertion.Assert.assertNotNull(newDelegate, "newDelegate must not be null");
$DELEGATE = newDelegate;
}
public static void useDefaultDelegate() {
setDelegate(new MultipleOptionsExampleClosureFactory());
}
/**
* @see jedi.example.MultipleOptionsExample#add
*/
public static jedi.functional.Functor addFunctor(final java.lang.String a, final java.lang.String b) {
return $DELEGATE.addFunctor(a, b);
}
/**
* @see jedi.example.MultipleOptionsExample#add
*/
public static jedi.functional.Functor2 addProxyFunctor2(final jedi.example.MultipleOptionsExample $receiver) {
return $DELEGATE.addProxyFunctor2($receiver);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy