Tagged Questions

3
votes
2answers
110 views

Library or language extension to provide traits in Java?

I've just been introduced to traits ("traits" in Smalltalk, "roles" in Perl). I'd like to experiment with them quickly, in a language I'm familiar with. Are there any libraries or extensions in Java ...
3
votes
6answers
2k views

java traits or mixins pattern?

Is there a way to emulate mixins or traits in java? basically, I need a way to do multiple inheritance so I can add common business logic to several classes
1
vote
2answers
191 views

It is possible in Scala use isAssignableFrom with type parameters

I am implementing a JAX-RS service in Scala using Jersey. I would to have a generic trait for Json provider, and I need to know if the requested Class is supported by my provider. In java is not ...
0
votes
3answers
177 views

Overriding implicit setter method with a trait in Scala

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: ...
0
votes
1answer
109 views

Handling private fields in Scala traits when implementing them in Java

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 ...