This commit is contained in:
Dmitry Jemerov
2009-09-10 21:30:46 +04:00
parent 4e0b0c39af
commit a5f846b4d4
87 changed files with 20 additions and 29 deletions
@@ -0,0 +1,10 @@
public class Bar {
public int baz(byte blah) {
return <selection>blah + 3</selection>;
}
}
class S extends Bar {
public int baz(byte blah) {
return super.baz((byte) 0); //To change body of overridden methods use File | Settings | File Templates.
}
}