jedi.example.CommandExampleStaticClosureFactory Maven / Gradle / Ivy
package jedi.example;
public class CommandExampleStaticClosureFactory {
private static ICommandExampleClosureFactory $DELEGATE = new CommandExampleClosureFactory();
public static void setDelegate(ICommandExampleClosureFactory newDelegate) {
jedi.assertion.Assert.assertNotNull(newDelegate, "newDelegate must not be null");
$DELEGATE = newDelegate;
}
public static void useDefaultDelegate() {
setDelegate(new CommandExampleClosureFactory());
}
/**
* @see jedi.example.CommandExample#doX
*/
public static jedi.functional.Command doXCommand(final java.lang.String arg) {
return $DELEGATE.doXCommand(arg);
}
/**
* @see jedi.example.CommandExample#doX
*/
public static jedi.functional.Command doXProxyCommand(final jedi.example.CommandExample $receiver) {
return $DELEGATE.doXProxyCommand($receiver);
}
/**
* @see jedi.example.CommandExample#doY
*/
public static jedi.functional.Command doYCommand() {
return $DELEGATE.doYCommand();
}
/**
* @see jedi.example.CommandExample#doY
*/
public static jedi.functional.Command0 doYProxyCommand0(final jedi.example.CommandExample $receiver) {
return $DELEGATE.doYProxyCommand0($receiver);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy