I have written the following code, but continually get a 'non-static method getText() can not be referenced from a static context' error.
Could someone help get me on the right track here?
public class ISBNText extends JTextField
{
protected static String bookNum;
protected JTextField bookText;
public ISBNText()
{
super(20);
bookText = new JTextField();
}
public String getISBN()
{
String bookNum = ISBNText.getText();
return bookNum;
}
private String validateISBN(String bookNum)
}
this(the ISBNText object) or the text in bookText? Also, why do you have one JTextField subclass creating another JTextField as a member? It seems rather odd. – Ted Hopp Feb 17 '11 at 18:43