com.threerings.presents.tools.service_as.tmpl Maven / Gradle / Ivy
The newest version!
package {{package}} {
{{#importGroups}}
{{#this}}
import {{this}};
{{/this}}
{{/importGroups}}
/**
* An ActionScript version of the Java {{name}}Service interface.
*/
public interface {{name}}Service extends InvocationService
{
{{#methods}}
{{^-first}}
{{/-first}}
// from Java interface {{name}}Service
function {{method.name}} ({{getASArgList}}) :void;
{{/methods}}
}
}