Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.java.gui > #3621 > unrolled thread

Re: How to clear or reset

Started by"Chris" <chris@THRWHITE.remove-dii-this>
First post2011-04-27 15:45 +0000
Last post2011-04-27 15:45 +0000
Articles 2 — 2 participants

Back to article view | Back to comp.lang.java.gui

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: How to clear or reset "Chris" <chris@THRWHITE.remove-dii-this> - 2011-04-27 15:45 +0000
    Re: How to clear or reset "tar" <tar@THRWHITE.remove-dii-this> - 2011-04-27 15:45 +0000

#3621 — Re: How to clear or reset

From"Chris" <chris@THRWHITE.remove-dii-this>
Date2011-04-27 15:45 +0000
SubjectRe: How to clear or reset
Message-ID<0f6ba6f0-eeb6-46d3-ab9e-f4335907c2d0@w1g2000prd.googlegroups.com>
  To: comp.lang.java.gui
On Jun 4, 2:43 pm, Andrew Thompson <andrewtho...@gmail.com> wrote:
> On Jun 5, 7:36 am, Chris <chrislia...@gmail.com> wrote:
>
> {please leave a little indentation in posted code!)
>
> >...
> > String inputrules = tc.getText();
> > if (inputrules == "Chris")
> > {
> > //Here I need to somehow refresh the textfield}
>
> tc.setText("");
>
> --
> Andrew T.
> PhySci.org

Again, setText(""); does not work.
It produces a loop which locks the intended functionality.
When tc.setText(""); as stated abopve is compiles it continually
clears the Text Field to the point where the program is unresponsive.
Thank you for your help though, and I will make sure to indent from
now on...

Does anyone have other expertise which may negate this looping
mechanism caused by setText("")?

Thank you very much.

---
 * Synchronet * The Whitehouse BBS --- whitehouse.hulds.com --- check it out free usenet!
--- Synchronet 3.15a-Win32 NewsLink 1.92
Time Warp of the Future BBS - telnet://time.synchro.net:24

[toc] | [next] | [standalone]


#3622

From"tar" <tar@THRWHITE.remove-dii-this>
Date2011-04-27 15:45 +0000
Message-ID<ymi7id3dbtx.fsf@blackcat.isi.edu>
In reply to#3621
  To: comp.lang.java.gui
 On Jun 5, 7:36aam, Chris <chrislia...@gmail.com> wrote:

>
>...
> String inputrules = tc.getText();
> if (inputrules == "Chris")

You don't generally want to use "==" to test string equality, unless you
make sure that you first INTERN the strings in question.  That is the
only way you are guaranteed to get a canonical object for a given
string.

Constant strings are interned automatically, but any that you get from
user input or new string creation would not be unless you explicitly
call the intern() method.

-- 
Thomas A. Russ,  USC/Information Sciences Institute

---
 * Synchronet * The Whitehouse BBS --- whitehouse.hulds.com --- check it out free usenet!
--- Synchronet 3.15a-Win32 NewsLink 1.92
Time Warp of the Future BBS - telnet://time.synchro.net:24

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.java.gui


csiph-web