2ad124322d
(ByteArray is a special class for dealing with bytes. It does not extend the normal Array). git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4452 542714f4-19e9-0310-aa3c-eee0fc999fb1
22 lines
404 B
Cheetah
22 lines
404 B
Cheetah
package $package {
|
|
|
|
import flash.utils.ByteArray;
|
|
#foreach ($import in $imports)
|
|
import $import;
|
|
#end
|
|
|
|
/**
|
|
* An ActionScript version of the Java ${name}Service interface.
|
|
*/
|
|
public interface ${name}Service extends InvocationService
|
|
{
|
|
#foreach ($m in $methods)
|
|
#if ($velocityCount > 1)
|
|
|
|
#end
|
|
// from Java interface ${name}Service
|
|
function $m.method.name ($m.getASArgList(false)) :void;
|
|
#end
|
|
}
|
|
}
|