Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!news.albasani.net!news2.arglkargh.de!newsfeed.straub-nv.de!news-1.dfn.de!news.dfn.de!newscore.univie.ac.at!aconews-feed.univie.ac.at!aconews.univie.ac.at!not-for-mail Newsgroups: comp.lang.java.programmer From: Andreas Leitgeb Subject: Re: ArrayAdapter References: <8vi26oFvh2U1@mid.individual.net> <8vj6efFla6U1@mid.individual.net> Reply-To: avl@logic.at User-Agent: slrn/pre0.9.9-111 (Linux) Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: Date: 31 Mar 2011 17:31:14 GMT Lines: 31 NNTP-Posting-Host: gamma.logic.tuwien.ac.at X-Trace: 1301592674 tunews.univie.ac.at 60386 128.130.175.3 X-Complaints-To: abuse@tuwien.ac.at Xref: x330-a1.tempe.blueboxinc.net comp.lang.java.programmer:2661 Dirk Bruere at NeoPax wrote: > Back online again. > Here is a code sample: > > public class controller extends Activity { > /** Called when the activity is first created. */ > @Override > public void onCreate(Bundle savedInstanceState) { > [...] > radioTitleAdapter = new ArrayAdapter([...]); > [...] > } > ... > } With an IDE you could probably also right-click on the identifier and select "Jump to declaration" or something similar. For Vi and Emacs there's something like a tags file, that enables similar functionality, provided you created/updated that tags file e.g. with the utility "ctags-exuberant", and press a hotkey when the cursor is on the identifier (for VI, that would be ). Finally, you can also grep for the identifier, but that depends on that you filter out with your eyes the declaration from all the other lines containing it. Once you found the declaration, you're a good step ahead towards solving your problem. If you then post the complete declaration line and the class or method containing it ... help might be possible.