problem accessing extended methods from template

2005-12-12 Thread john oh
Hello, I have a class (B) that extends another (A) like so === class A{ protected String str = A; public String doA() return this.str; } class B extends A{ } === In my template, I use the inherited method

Re: problem accessing extended methods from template

2005-12-12 Thread Barbara Baughman
Class B needs to be public public class B extends A { Class A needs to be public public Class A { Barbara Baughman X2157 On Mon, 12 Dec 2005, john oh wrote: Hello, I have a class (B) that extends another (A) like so === class A{ protected

Re: problem accessing extended methods from template

2005-12-12 Thread john oh
Thanks Barbara! You're suggestion helped. On 12/12/05, Barbara Baughman [EMAIL PROTECTED] wrote: Class B needs to be public public class B extends A { Class A needs to be public public Class A { Barbara Baughman X2157 On Mon, 12 Dec 2005, john oh wrote: Hello, I have a class