Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 4 of 4

Thread: netBeans team development

  1. #1
    Junior Member
    Join Date
    Jul 2010
    Location
    -
    Posts
    8
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Exclamation netBeans team development

    my friend and I recently switched to JAVA from C# tired of visual fools !!! and looking forward to jump to linux tired of foolos 7
    this is our development method on c#

    1. System analyzing (ER, CLASS, sequence diagrams )

    2. db design

    3. Application design using C#


    once the analyzing part is done we will share the work for example if theres two forms one for him and 1 for me we will develope the forms(GUI), business classes , db classes individual then at last since we both shared the same database these two forms can be easily merged in to one project !

    Are there any way to do the same in netbeans ?


  2. #2
    Super Moderator Json's Avatar
    Join Date
    Jul 2009
    Location
    Warrington, United Kingdom
    Posts
    1,274
    My Mood
    Happy
    Thanks
    70
    Thanked 156 Times in 152 Posts

    Default Re: netBeans team development

    Would you not solve this using some sort of code repository to share the full code base with each other so you both can develop on it at the same time?

    // Json

  3. #3
    Junior Member
    Join Date
    Jul 2010
    Location
    -
    Posts
    8
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Re: netBeans team development

    Quote Originally Posted by Json View Post
    Would you not solve this using some sort of code repository to share the full code base with each other so you both can develop on it at the same time?

    // Json
    I am little confused what a repository ?

  4. #4
    Super Moderator Json's Avatar
    Join Date
    Jul 2009
    Location
    Warrington, United Kingdom
    Posts
    1,274
    My Mood
    Happy
    Thanks
    70
    Thanked 156 Times in 152 Posts

    Default Re: netBeans team development

    Using a code repository such as CVS, SVN, Mercurial, Git etc you can easily work on the same code at the same time.

    My preference at the moment is SVN or Subversion as its called. What happens is you write your code and then commit it to the repository, then the other developer(s) can synchronize against the repository and update their code.

    Have a look at the following:
    subversion.tigris.org
    Mercurial SCM
    CVS - Open Source Version Control
    Git - Fast Version Control System

    There are probably more Source Control Management systems but that should give you a good start.

    // Json

Similar Threads

  1. Replies: 4
    Last Post: June 23rd, 2010, 09:13 AM
  2. Replies: 5
    Last Post: October 12th, 2009, 12:24 AM
  3. Please welcome Freaky Chris to the JPF team
    By JavaPF in forum The Cafe
    Replies: 7
    Last Post: October 8th, 2009, 01:05 AM
  4. Replies: 1
    Last Post: July 10th, 2008, 05:03 AM