Newbie question: cannot find symbol symbol: class STRING

I've just decided to teach myself some java, and on my first try something's going wrong and I don't know what it is.

I'm currently doing this tutorial: http://java.sun.com/docs/books/tutorial/uiswing/learn/example1.html

and everything is good until I try to compile it and I get this error in the cmd

HelloWorldSwing.java:30: cannot find symbol

cannot find symbol

symbol: class STRING

everything has been written verbatim from the tutorial, including "import javax.swing.*;"

What's wrong with it and how do I fix it?

[571 byte] By [chickideeea] at [2007-10-3 3:35:44]
# 1
Hard to say without seeing HelloWorldSwing.java, but perhaps STRING shouldbe String.
pbrockway2a at 2007-7-14 21:30:31 > top of Java-index,Java Essentials,Java Programming...
# 2
Java is case sensitive.
CaptainMorgan08a at 2007-7-14 21:30:32 > top of Java-index,Java Essentials,Java Programming...
# 3
Hi, I saw the coding that You had given a link in your post. Change the followingpublic static void main(String[] args) {bye for nowsat
AnanSmritia at 2007-7-14 21:30:32 > top of Java-index,Java Essentials,Java Programming...