13 reputation
2
bio website
location
age
visits member for 2 years, 8 months
seen Jul 20 '12 at 21:51
stats profile views 1

Sep
17
awarded  Scholar
Sep
17
accepted Scala related trait, abstract types
Sep
17
comment Scala related trait, abstract types
Ah, I see what you are saying. Actually I wanted to avoid having to explicitly declare the type in the concrete class. After mucking around, the magically '_': val companion: DaoHelper[_ <: Dao]. I should have known. I guess this is saying, accept any type for the DaoHelper type constructor that has a supertype of Dao??? Obviously I got rid of the T altogether.
Sep
17
comment Scala related trait, abstract types
Maybe I can rephrase my requirements because I agree that I did not explain them very well. I have 2 traits, 1 will be used for a class and one will be used by an object. The object will be the companion object for the class. I would like to be able to refer to the companion object in the class however not explicitly ( Not Classname.function() ). It seems like setting a val in the trait that the class extends from, that corresponds to the companion object, seemed like the easiest way. However I am not sure what type to give that val.
Sep
17
awarded  Student
Sep
17
comment Scala related trait, abstract types
I think that I am assigning object D to val companion. object D is a subtype of DaoHelper[D] and class D is a subtype of Dao.
Sep
17
asked Scala related trait, abstract types