Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[tools-dev] Eclipse beginner

Hi everyone,

So I filled in the field "Build output folder"  with "Project MD/classes".
So now I can see inside this folder all the classes. If I have this
directory information:

Project MD
	Energy
		energy.java
	Databasec
		DBconnection.java
	
When I have created this new location a compile the source files and the
results I've got is as follows:

Project MD

	classes
		Energy
			energy.class
		Databasec
			DBconnection.class
	Energy
		energy.java
	Databasec
		DBconnection.java

Do you know if it is possible to get just the class files and not the
directories again, I mean this

Project MD

	Classes
		energy.class
		DBconnection.class
	Energy
		energy.java
	Databasec
		DBconnection.java



Thanks in advanced

Regards

Ana Lozano.

-----Original Message-----
From: Maxim Enns [mailto:menns@xxxxxxxxxxxxxxx]
Sent: Friday, August 02, 2002 11:25 AM
To: 'tools-dev@xxxxxxxxxxx'
Subject: AW: [tools-dev] Eclipse beginner


Hi Ana!

Yes! It is possible.
The output location is defined in the project java settings mask in the
bottom of "Source" folder.
There is a input field called "Build output folder:". There you have to type
in, where the classes should be stored.
e. g. "Project/classes". You also have a possibility to select the location
for classes by browsing to it. But only one.
For separating classes and beans you shold use different packages ;-) ore
create two separate projects.

Kind regards

Maxim

-----Ursprüngliche Nachricht-----
Von: Ana Lozano Fernandez [mailto:ALozano2@xxxxxxxxxxxxxxxxxx]
Gesendet: Freitag, 2. August 2002 10:54
An: 'tools-dev@xxxxxxxxxxx'
Betreff: [tools-dev] Eclipse beginner


Dear all,

I have been using Eclipse for few weeks and I have a doubt, I hope that you
can help me. I worked before with Jbuilder 3 and everytime I compiled a java
file the .class file was safe in a specific directory (which was specified
by my self) so at the end I had all the classes in one directory. But in
eclipse every .class is stored in the same place as the correspondence .java
file. Do you know while creating the project is it posible to specify only
one place (or two, I want to create beans and servlets classes) where to
store all the .classes files? If so, how can i do this?

Thanks in advance


Regards,


Ana Lozano Fernández


_______________________________________________
tools-dev mailing list
tools-dev@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/tools-dev
_______________________________________________
tools-dev mailing list
tools-dev@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/tools-dev


Back to the top