Or am I missing the point?
Cheers,
stephanos
--------------------------------------------------------------------------
package org.codingkata.unit;
import org.codingkata.unit.api.BaseKataSolution;
public class MyKata extends BaseKataSolution {
// YOUR IMPLEMENTATION
}
--------------------------------------------------------------------------
just like the jython one:
--------------------------------------------------------------------------
from org.codingkata.unit.api import BaseKataSolution;
class MyKata(BaseKataSolution):
# YOUR IMPLEMENTATION
--------------------------------------------------------------------------
or am I still missing the point?
On Mar 8, 2:53 pm, Aleksandr Motsjonov <sos...@gmail.com> wrote:
> When I do first maven script for Jython I get only class statement with
> comment about unimplemented methods.
>
PS: Netbeans has a Python/Jython plugin - maybe it could help:
http://netbeans.org/features/python/
Cheers,
stephanos
On Mar 9, 11:22 am, Aleksandr Motsjonov <sos...@gmail.com> wrote:
> Ok. You Right. But in Java I have nice IDE feature like "add unimplemented
> method" which I forgot about. But My proposal is stay anyway. It's nice to
> have method skeleton out there already =)
>