Re: [android-developers] Beginner Question: Is it possible to put each class into it's own java file in Eclispe?

2010-04-20 Thread ~ TreKing
On Tue, Apr 20, 2010 at 4:41 PM, Binxalot wrote: > Is it possible to put my classes in to their own java files and then import > those classes into a main program java file as needed like I do in C#? > Yes. Which you could have found out on your own in about 5 minutes. -

Re: [android-developers] Beginner Question: Is it possible to put each class into it's own java file in Eclispe?

2010-04-20 Thread Dianne Hackborn
The Java compiler requires that each top-level class be in its own source file. On Tue, Apr 20, 2010 at 2:41 PM, Binxalot wrote: > I'm coming over from C# where I can make a namespace and then have > each class placed into its own .cs file if I want, but in all of the > examples I've seen for an

[android-developers] Beginner Question: Is it possible to put each class into it's own java file in Eclispe?

2010-04-20 Thread Binxalot
I'm coming over from C# where I can make a namespace and then have each class placed into its own .cs file if I want, but in all of the examples I've seen for android all of the methods and classes are all in one big java file. Is it possible to put my classes in to their own java files and then i