I'm trying to implement a stackable trait pattern in Scala (similar to http://www.artima.com/scalazine/articles/stackable_trait_pattern.html). Here's my attempt. I start defining a simple class:
class Topping(var name:String)
That class declaration should automatically create a getter and a setter method for variable called "name". So then I create a trait extending this class:
trait LoggingNameTrait extends Topping {
override def name_=(aName:String) {
print(aName)
super.name_=(aName) // this line doesn't compile
}
}
If the code above worked, it should override the implicit setter for the "name" field, printing it on the console and then calling the setter of the class which uses the trait. I get a "super may not be used on variable name".
Do you know why the Scala compiler doesn't let me override the implicit setter?
super.name_=(aName) // this line doesn't compilehow about a simplesuper.name=aName? why is name_ abstract by the way? – aishwarya Nov 27 '11 at 4:00