Java Programming - dynamically updating the window title?

Is there a way to dynamically update the JFrame window title of my program?
[82 byte] By [B34ST1Ya] at [2007-11-26 23:16:11]
# 1
setTitle(String) ?
abillconsla at 2007-7-10 14:16:32 > top of Java-index,Java Essentials,Java Programming...
# 2
setTitle
DrLaszloJamfa at 2007-7-10 14:16:32 > top of Java-index,Java Essentials,Java Programming...
# 3
ok, I have the window updating correctly, now...is there a way I can SUBTRACT from a string? aka, instead of my text scrolling across the window title, I want it to bounce back and forth. :)
B34ST1Ya at 2007-7-10 14:16:32 > top of Java-index,Java Essentials,Java Programming...
# 4
The "substring" method allows you to get any subpartof a String (and thus, in effect, "subtract" charactersfrom a String).Please take a closer look at http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.htmlPlease don't ask every little question.
KathyMcDonnella at 2007-7-10 14:16:32 > top of Java-index,Java Essentials,Java Programming...