The trait tag has no wiki summary.
2
votes
1answer
142 views
'getActionAnnotation' not found in a trait extending Controller
When using play-scala module, I write a Secure trait as the following:
trait Secure extends Controller {
self:Controller =>
@Before
def checkAccess = {
if ...
0
votes
1answer
80 views
How to realize method in class which is declared in trait scala
there is trait in exercise, which should be implemented
trait AbstractSet {
def add(n: Int): AbstractSet
def remove(n: Int): AbstractSet
}
and such task
Write a concrete class MutableSet that ...
1
vote
0answers
33 views
annotation to enforce void trait initialization
There are quite a number of questions regarding trait initialization order in scala. I'd like to mark a trait with annotation that states the trait have no initialization code and so may be used ...
0
votes
0answers
51 views
Instantiate class with mixed trait using reflection
I want to create an instance of a class using reflection (the class has protected access and I want to test it, so I am using reflection to create an instance)
this is working fine:
val clazz = ...
0
votes
0answers
62 views
PHP Traits overwrite variable
Assuming I have this trait:
trait MyTrait{
protected static $_statVar = 'defaultStaticVal';
protected $_var = 'defaultVal';
}
And a class that uses it
class MyClass{
use MyTrait;
}
...