¡@

Home 

java Programming Glossary: fooonsteroids

Using Scala traits with implemented methods in Java

http://stackoverflow.com/questions/7637752/using-scala-traits-with-implemented-methods-in-java

super.bar Trait2 Here is the new 'Foo' on steroids class FooOnSteroids extends Foo with Trait1 with Trait2 It translates to Trait1.. thiz interface call Trait1 super bar is possible since FooOnSteroids implements Trait1 see below return thiz.Trait1 super bar Trait1.. thiz interface call Trait2 super bar is possible since FooOnSteroids implements Trait2 see below return thiz.Trait2 super bar Trait2..