|
|
Welcome to the Java Forums.
You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community, you will:
- have access to post topics
- communicate privately with other members (PM)
- not see advertisements between posts
- have the possibility to earn one of our surprises if you are an active member
- access many other special features that will be introduced later.
Registration is fast, simple and absolutely free so please, join our community today!
If you have any problems with the registration process or your account login, please contact us.
|
|

07-27-2008, 05:36 AM
|
|
Member
|
|
Join Date: Jul 2008
Posts: 4
|
|
|
organizing larger application code / modules
I've gotten proficient with the Java language.. (solo work; coming from a C C++ background)
now I want to understand how a team of programmers would work on a large application.. how is an app divided into modules that can be joined... like DDL libraries in C ...
but so that each programmers section will be built (compiled successfully).. to allow that section to be tested and then joined..
I've tried to search for this.. but since I don't know the Java terms that would be used, I can't find a discussion or tutorial
.. what are the submodules called ?? libraries ?? class libraries??
Last edited by zenner : 07-27-2008 at 05:40 AM.
|
|

07-27-2008, 06:04 AM
|
 |
Moderator
|
|
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 4,412
|
|
|
Are you talking about source code handling applications, may be like a subversion?
__________________
Use an appropriate Subject. "Help, urgent!" isn't one. To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Has someone helped you? Then you can To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. their helpful post.
Want to make your IDE the best? To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
|

07-27-2008, 06:13 AM
|
|
Member
|
|
Join Date: Jul 2008
Posts: 4
|
|
|
no, I'm sorry if I'm not clear... I'm not talking about source code control, nor version control..
in a large C or C++ project, one person works on the GUI display, another on the filesystem/database , another person may write a set of CLASSES that are to be shared by the other two..
these are compiled (in C) into a library (such as a DLL)
that both can include in their compilations to gain the reuseabilty of those libraries..
how do you do this in Java ??
thanks
|
|

07-27-2008, 06:40 AM
|
 |
Moderator
|
|
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 4,412
|
|
|
Ah, I got the point. In that case what we can do is, create jar files and use them in other application as a library.
Say, one person develop GUI, and other person develop all other functionality related to the application. What we do is, first code the GUI classes and create a jar file. Then it's given to the second person. He added that jar file as a library in his application and import required class and do the rest.
I hope it's clear to you now.
__________________
Use an appropriate Subject. "Help, urgent!" isn't one. To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Has someone helped you? Then you can To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. their helpful post.
Want to make your IDE the best? To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
|

07-28-2008, 10:57 AM
|
|
Member
|
|
Join Date: Jul 2008
Posts: 4
|
|
|
thanks so much...
i'm off researching jars ... will hae one soon..
thanks
s
|
|

07-28-2008, 11:18 AM
|
 |
Moderator
|
|
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 4,412
|
|
|
Do to the suns' official web site. You find lots of details there about jars.
By the way, regarding the SubVersions, I think you don't know much about them. SubVersions are like VSS, which can be used to handle source codes, in large products, in different levels(different developers). CollabNetSubversion is the one I used. It's a grate tool. No need to use jar files and so on, as I said. Simply you can merge others projects with your one and working on it. Not only that, there are lots of functionality you can have.
Search on the Google, you may find lots of such SubVersions.
__________________
Use an appropriate Subject. "Help, urgent!" isn't one. To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Has someone helped you? Then you can To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts. their helpful post.
Want to make your IDE the best? To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
|