In R, how do I get the list of subclass of a S4 superclass?

I found showClass("mySuperClass",complete=FALSE) but it only prints the result. I would like to store it in a vector to use it.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Discover the class of a class definition (the class definition is itself an S4 class!)

cls = getClass("MySuperClass")
class(cls)
class?classRepresentation

and, with a little exploring, arrive at

names(cls@subclasses)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.