So I'm creating my domain objects for my Spring Roo app. I've got two similar domain objects that I'd like to inherit from a base object.
~.domain.LayerBase
~.domain.ColorLayer extends ~.domain.LayerBase
~.domain.ImageLayer extends ~.domain.LayerBase
Is there an easy way to do this in the console or do I have to do this by hand?