Files
narya/src/java/com/threerings/presents/tools/service_as.tmpl
T
Ray Greenwell 2ad124322d Made actionscript code generation ByteArray-aware.
(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
2006-11-15 02:53:12 +00:00

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
}
}