BlackBerryForums.com : Your Number One BlackBerry Community
     

»Sponsored Links



Closed Thread
 
LinkBack Thread Tools
  (#1 (permalink)) Old
Knows Where the Search Button Is
 
Posts: 40
Join Date: Jan 2010
Model: 8300
PIN: N/A
Carrier: T-Mobile
Default Unable to set variable values inside the timer function - 02-09-2010, 12:07 AM

Hi

i am utilising the timer event to get the value from a text box and storing it into a variable after saving the previous value onto another variable


Timer timer = new Timer();
TimerTask updateTask;

String prevEntry;
String crntEntry;



updateTask = new TimerTask() {

public void run() {


prevEntry = crntEntry;

crntEntry = field1.gettext();

}

}

where field1 is declared as BasicEditField

But I am getting errors like

local variable crntEntry is accessed from within inner class; needs to be declared final
prevEntry = crntEntry;
^
   
Login or Register to Remove!
  (#2 (permalink)) Old
hrbuckley Offline
BlackBerry Extraordinaire
 
Posts: 1,056
Join Date: Jan 2006
Model: 9700
OS: 5.0.0.862
Carrier: Rogers CA
Default 02-09-2010, 01:00 PM

OK, first read this please: http://www.blackberryforums.com/deve...rum-posts.html

That will make it much easier for us to help you.

Quote:
Originally Posted by MobileDeveloperUK View Post
Hi

i am utilising the timer event to get the value from a text box and storing it into a variable after saving the previous value onto another variable

[snip]

where field1 is declared as BasicEditField

But I am getting errors like

local variable crntEntry is accessed from within inner class; needs to be declared final
prevEntry = crntEntry;
^
Code:
Timer timer = new Timer();
TimerTask updateTask;

 String prevEntry;
 String  crntEntry;

  
      
updateTask = new TimerTask() {
    
    public  void run() {

 
    prevEntry =  crntEntry;
 
    crntEntry = field1.gettext();
 
    }

}
updateTask is an instance of an inner class, as the compiler is telling you. It wants to be sure strange things won't happen such as another thread changing the value of prevEntry behind its back. However if you declare a variable as final you can't change it.

A little more context would help, surely preEntry and crntEntry don't exist as bar Strings like that, they must me members of some class. Do you have access functions defined for them?


My other Blackberry is an Android.
   
Closed Thread


Thread Tools

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On





Copyright © 2004-2010 BlackBerryFAQ.com, BlackBerryForums.com.
The names RIM © and BlackBerry © are registered Trademarks of Research In Motion Limited.