samedi 27 octobre 2007

Create a UML Use Case Diagram

Pre-requisite: Create a UML Project

A use case diagram captures the functional aspects of a system. It shows which actors (each actor having some roles) interact with each use case (process).




















Learn more ...

Create an UML Project in Netbeans

Pre-Requisites: Install UML Plugin.




Install a Netbeans Plugin










Netbeans GUI Tutorial Part 3 - Adding Components to a JPanel

View Demo 1...

View Demo 2...

View Demo 3...

Netbeans GUI Tutorial Part 2 - Adding JPanels to a JFrame











View Video Demo ...

Netbeans GUI Tutorial Part 1 - Create a JFrame Container











View Video Demo ...



Next ...

Netbeans GUI Tutorial


1°) Create a JFrame Container






2°) Adding JPanels to a JFrame


3°) Adding Components to a JPanel

Change Class Template









/*
* __NAME__.java
*
* Created on __DATE__, __TIME__
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/


package Templates.Classes;

/**
*
* @author __USER__
*/

public class Main {

/** Creates a new instance of __NAME__ */
public Main() {
}

/**
* @param args the command line arguments
*/

public static void main(String[] args) {

// TODO code application logic here
}

}

Create a Java Project











Next: HelloWorld Application ...

Create a Web Application Project







Install Netbeans

Download Netbeans

1°) Go to Netbeans download page






















2°) If you already have a JDK installed, click on button "Download Netbeans IDE", otherwise scroll down to "Download NetBeans IDE with JDK".

NetBeans JBoss Aplication Server Bundle

Editor's Page

Netbeans 5.5

JavaLobby Expert Presentation: NetBeans IDE 5.5

Netbeans 5.5 supports Java EE 5 and several new packs: Enterprise Pack, Visual Web Pack, ...

Netbeans HelloWorld Tutorial

In this tutorial, you will learn how to create a simple HelloWorld application in Netbeans IDE.






/*
* Main.java
*
* Created on 27 octobre 2007, 20:32
*
* To change this template, choose Tools |
Template Manager TEST
* and open the template in the editor.
*/


package helloworld;

/**
*
* @author SuperAdmin
*/

public class Main {


/** Creates a new instance of Main */
public Main() {
}

/**
* @param args the command line arguments
*/


public static void main(String[] args) {

// TODO code application logic here
}

}

Netbeans Java Tutorial Videos: Beginner's Level