When implementing a Scala trait, one has to implement the trait's methods and the simply call the respective static method on Foo$class.class. I'm not sure however how to deal with private fields which are defined in the trait.
That is, if there is a field _something in the trait, if I don't implement _something_$eq() and _something(), the compiler yells at me. My assumption is that I have to create a _something field in my implementing class.
I just want to confirm that this is the correct way of handling this issue.