I use scala reflection to get information on a trait defined in my Model Class. I can easily get the members of this class doing this:
ru.runtimeMirror(myClassLoader).staticClass("model.Model").typeSignature.members
but how to know whether these members are defined or not, ie if they have an implementation or not ?