BlackBerry Forums Support Community
              

Closed Thread
 
Thread Tools
Old 07-06-2010, 04:35 AM   #1
imran2k1
Knows Where the Search Button Is
 
Join Date: Jan 2010
Model: 8900
PIN: N/A
Carrier: telus
Posts: 35
Thumbs up FieldchangeListener problem StackoverFlowError

Please Login to Remove!

hi
i have two field,both have their own FieldchangeListener, on one listener i have to change other field vale, and it will be vice-verse too.
but it is giving error "StackOverFlowError".
code example is here!!
Code:
public class MainClass extends UiApplication {
	public static void main(String []arg)
	{
		MainClass inst= new MainClass();
		inst.enterEventDispatcher();
	}
	public MainClass() {
		pushScreen(new myTest());
	}

}
class myTest extends MainScreen{
	BasicEditField b1,b2;
	public myTest() {
		b1=new BasicEditField("first:","one");
		b2=new BasicEditField("second:","two");
		b1.setChangeListener(b1_listener);
		b2.setChangeListener(b2_listener);
		add(b1);
		add(b2);
	}
	FieldChangeListener b1_listener=new FieldChangeListener(){

		public void fieldChanged(Field field, int context) {
			
			b2.setText("set two");
		}
		
	};
	FieldChangeListener b2_listener=new FieldChangeListener(){

		public void fieldChanged(Field field, int context) {
			
			b1.setText("set one");
		}
		
	};
}
if any one know why this exception is coming then reply me.
Thanks and regards
Imran ali
Offline  
Old 07-06-2010, 07:12 AM   #2
Dougsg38p
BlackBerry Extraordinaire
 
Join Date: Mar 2008
Location: Austin, TX
Model: 9700
PIN: N/A
Carrier: T-Mobile
Posts: 1,644
Default

Follow the logic:

b1 sets the data in b2, which causes a call to the listener on b2, which sets the data in b1, which results in a call to the listener on b1, which results in changing b2, causing a call the the listener on b2, etc, etc, etc, until you blow the stack.

Not sure exactly what you are trying to accomplish here, but you might want to take a look at the "Context" variable - this tells you if the data has been set programmatically, or by the user.
Offline  
Closed Thread



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


Moxa NPort 5210A - 2 Ports Device Server, 10/100M Ethernet, RS-232, DB9 Male,... picture

Moxa NPort 5210A - 2 Ports Device Server, 10/100M Ethernet, RS-232, DB9 Male,...

$74.79



NEW Fujitsu TX100 S3 Server Intel Xeon E3-1220v2 3.1GHz 4GB 1TB NIB RAID 0,1,10 picture

NEW Fujitsu TX100 S3 Server Intel Xeon E3-1220v2 3.1GHz 4GB 1TB NIB RAID 0,1,10

$249.99



EMC2 HPE-S HPES Server picture

EMC2 HPE-S HPES Server

$465.00



Server - 92020 - Double Dip Server picture

Server - 92020 - Double Dip Server

$348.84



Server SE-SS 07020 Server Express Single Drop-In - NEW - COMPLETE - Genuine OEM picture

Server SE-SS 07020 Server Express Single Drop-In - NEW - COMPLETE - Genuine OEM

$199.99



DIGI EtherLite 160 16-Port Terminal Server,PN: (1P)50000986-01 P picture

DIGI EtherLite 160 16-Port Terminal Server,PN: (1P)50000986-01 P

$260.00







Copyright © 2004-2016 BlackBerryForums.com.
The names RIM © and BlackBerry © are registered Trademarks of BlackBerry Inc.