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

com.threerings.presents.tools.provider.tmpl Maven / Gradle / Ivy

The newest version!
package {{package}};

{{#importGroups}}
{{#this}}
import {{this}};
{{/this}}

{{/importGroups}}
/**
 * Defines the server-side of the {@link {{name}}Service}.
 */
{{generated}}
public interface {{name}}Provider extends InvocationProvider
{
{{#methods}}
{{^-first}}

{{/-first}}
    /**
     * Handles a {@link {{name}}Service#{{method.name}}} request.
     */
    {{typeParams}}void {{method.name}} ({{callerType}} caller{{#hasArgs}}, {{/hasArgs}}{{getArgList}}){{^listenerArgs.isEmpty}}
        throws InvocationException{{/listenerArgs.isEmpty}};
{{/methods}}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy