UTILIZACION DE ELEMENTOS EN NETBEANS
Enviado por noemi14 • 28 de Agosto de 2013 • Tesis • 5.618 Palabras (23 Páginas) • 482 Visitas
COLEGIO DE ESTUDIOS CIENTÍFICOS Y TECNOLÓGICOS DEL ESTADO DE MÉXICO
PLANTEL TENANGO DEL VALLE
PROGRAMACION EN JAVA
(NETBEANS)
“UTILIZACION DE ELEMENTOS EN NETBEANS”
ELABORADO POR: Janitzi Noemi López Trujillo
SEMESTRE:4to GRUPO:405
TENANGO DEL VALLE MÉX. A 06 DE JUNIO DEL 2013
INDICE
1. QUE ES NETBEANS
*Definición
2. FUNCIONALIDAD DEL BUTTON
*Para que sirve
*componentes
*ejemplo
3. FUNCIONALIDAD DE CHECKBOX
*Para que sirve
*componentes
*ejemplo
4. FUNCIONALIDAD DE LABEL
*Para que sirve
*componentes
*ejemplo
5. FUNCIONALIDAD DE RADIO BUTTON
*Para que sirve
*componentes
*ejemplo
6. FUNCIONALIDAD DE TEXT AREA
*Para que sirve
*componentes
*ejemplo
7. FUNCIONALIDAD DE TEXT FIELD
*Para que sirve
*componentes
*ejemplo
8. FUNCIONALIDAD DE LIST
*Para que sirve
*componentes
*ejemplo
9. FUCIONALIDAD DE PANEL
*Para que sirve
*componentes
*ejemplo
10. FUNCIONALIDAD DE COMBOBOX
*Para que sirve
*componentes
*ejemplo
11. FUNCINALIDAD DE SLIDER
*Para que sirve
*componentes
*ejemplo
¿Qué es netbeans?
NetBeans es un entorno de desarrollo integrado libre, hecho principalmente para el lenguaje de programación Java. Existe además un número importante de módulos para extenderlo. NetBeans IDE es un producto libre y gratuito sin restricciones de uso.
NetBeans es un proyecto de código abierto de gran éxito con una gran base de usuarios, una comunidad en constante crecimiento, y con cerca de 100 socios en todo el mundo. Sun MicroSystems fundó el proyecto de código abierto NetBeans en junio de 2000 y continúa siendo el patrocinador principal de los proyectos.
Funcionalidad del button
Para que sirve: Inserta un botón en el cual se pueden programar varias acciones.
Complementos:
textfield.setText(“string”);//inserta cadena
a=textfield.getText ();//obtiene la cadena escrita
Ejemplo:
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/*
* BUTTON.java
*
* Created on 29-may-2013, 15:28:33
*/
package ariproyecto;
/**
*
* @author ALUMNO
*/
public class BUTTON extends javax.swing.JFrame {
/** Creates new form BUTTON */
public BUTTON() {
initComponents();
}
/** This method is called from within the constructor to
* initialize the form.
* WARNING: Do NOT modify this code. The content of this method is
* always regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
private void mActionPerformed(java.awt.event.ActionEvent evt) {
VISIBLE.setText(m.getText()+" es aplicada"); // TODO add your handling code here:
}
private void nActionPerformed(java.awt.event.ActionEvent evt) {
VISIBLE.setText(n.getText()+" es alocada"); // TODO add your handling code here:
}
private void aActionPerformed(java.awt.event.ActionEvent evt) {
VISIBLE.setText(a.getText()+" es reservada"); // TODO add your handling code here:
}
private void jActionPerformed(java.awt.event.ActionEvent evt) {
VISIBLE.setText(j.getText()+" es gritona"); // TODO add your handling code here:
}
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new BUTTON().setVisible(true);
}
});
}
// Variables declaration - do not modify
private javax.swing.JTextField VISIBLE;
private javax.swing.JButton a;
private javax.swing.JButton j;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JPanel jPanel1;
private javax.swing.JButton m;
private javax.swing.JButton n;
// End of variables declaration
}
En las siguientes pantallas se muestra el programa según el boton presionado
Funcionalidad de checkbox
Para que sirve: Casilla de verificación que cuando esta en un grupo permite seleccionar mas de un elemento.
Componentes:
(nombre de tu variable.Is Selected ()==true)//significa es seleccionado.
nombre de tu variable.append(“has seleccionado”);//sirve para imprimir en la pantalla de textarea lo que quieres que diga.
Ejemplo:
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/*
* checkbox.java
*
* Created on 29-may-2013, 16:19:00
*/
package ariproyecto;
...