1 Reply Latest reply on Jun 8, 2005 2:13 PM by leeand00

    Extending Classes on JBoss

    leeand00

      I have two classes and one extends the other:

      com.mobilvox.lexiconservice.common.LexiconValueObject
      com.mobilvox.lexiconservice.client.LexiconSessionObject extends LexiconValueObject

      When I try to call a method such as LexiconSessionObject.loadDefaultLexicon(),
      I get an error like:


      java.lang.NoSuchMethodError: com.mobilvox.lexiconservice.client.LexiconSessionObject.loadDefaultLexicon()V


      Which doesn't make sense since LexiconSessionObject extends LexiconValueObject, and loadDefaultLexicon() is declared as a public method in LexiconValueObject.

      So why can't I call my function?