Buscar
Social
Ofertas laborales ES

Foro sobre Java SE > no se ve Button, Label y Textfield. No encuentro error.

Aqui esta el enunciado del problema y lo que debo desarrollar.
CAPTURA https://imageshack.com/i/m9pkloj
La dificultad es como dice el titulo, no encuentro el error en la seccion de entorno grafico. Por favor necesito una mano en esto y debo terminar lo antes posible. Puede ser una tonteria pero ustedes tienen saben mas del tema. Agradeceria mucho la ayuda. Adjunto el programa:
public class farmacity2 implements ItemListener {

JPanel cards; //a panel that uses CardLayout
final static String SOLAPA1 = "DueniosEmpleados";


public JTextField t1,t2,t3,t4,t5,t6,t7,t8,t9,t10,t11,t12,t13,t14,t15 ,t16;
public JLabel etiqueta1, etiqueta2, etiqueta3, etiqueta4, etiqueta5, etiqueta6, etiqueta7, etiqueta8, etiqueta9;
public JLabel etiqueta10,etiqueta11,etiqueta12,etiqueta13,etique ta14,etiqueta15,etiqueta16,etiqueta17,etiqueta18,e tiqueta19,etiqueta20, etiqueta21;
public JButton boton0,boton1,boton2,boton3, boton4, boton5;
private String nomb, nomb_caj, nomb_farmac, descrip_prod, fecha;
private int dni, dni_c, dni_f, porc, codprod, cant;
private double sueldo_caj, sueldo_farm, precio, Sueldos_farm=0, Sueldos_cajeros=0 ;
private double ganancia_duenio, gananciaTotal=0, ganancia, sueldos, desc;
private Hashtable duenios ;
private Hashtable cajeros ;
private Hashtable farmaceuticos ;
private Hashtable productos;
private JTextArea area1;


public farmacity2(){
duenios = new Hashtable();
cajeros = new Hashtable();
farmaceuticos = new Hashtable();
productos = new Hashtable();
}
public void addComponentToPane(Container pane) {
JPanel comboBoxPane = new JPanel() ; //use FlowLayout
String comboBoxItems[] = { SOLAPA1, SOLAPA2, SOLAPA3 };
JComboBox cb = new JComboBox(comboBoxItems);
cb.setEditable(false);
cb.addItemListener(this);
cb.addActionListener(cb);
comboBoxPane.add(cb);

//Create the Panels
Panel PanelGeneral = new Panel(new GridLayout(4,1)) ;

Panel EntradadeDatos = new Panel (new GridLayout(9,1)); //3 , 1
Panel PanelNombreDuenio= new Panel(new FlowLayout(FlowLayout.LEFT));
Panel PanelDNI= new Panel(new FlowLayout(FlowLayout.LEFT));
Panel PanelPorc= new Panel(new FlowLayout(FlowLayout.LEFT));
Panel PanelNombreCajero= new Panel(new FlowLayout(FlowLayout.LEFT));
Panel PanelDNICaj= new Panel(new FlowLayout(FlowLayout.LEFT));
Panel PanelSueldoCajero= new Panel(new FlowLayout(FlowLayout.LEFT));
Panel PanelNombreFarmac= new Panel(new FlowLayout(FlowLayout.LEFT));
Panel PanelDNIFarmac= new Panel(new FlowLayout(FlowLayout.LEFT));
Panel PanelSueldoFarmac= new Panel(new FlowLayout(FlowLayout.LEFT));

JPanel card1 = new JPanel();
t1 = new JTextField("",30);
t2 = new JTextField("",15);
t3 = new JTextField("",4);
t4 = new JTextField("",30);
t5 = new JTextField("",15);
t6 = new JTextField("",6);
t7 = new JTextField("",30);
t8 = new JTextField("",15);
t9 = new JTextField("",6);
etiqueta1 = new JLabel("Nombre(Dueño):",Label.LEFT);
etiqueta2 = new JLabel("DNI(Dueño):",Label.LEFT);
etiqueta3 = new JLabel("Porc(Dueño):",Label.LEFT);
etiqueta4 = new JLabel("Nombre(Cajero):",Label.LEFT);
etiqueta5 = new JLabel("DNI(Cajero):",Label.LEFT);
etiqueta6 = new JLabel("Sueldo:",Label.LEFT);
etiqueta7 = new JLabel("Nombre(Farmac):",Label.LEFT);
etiqueta8 = new JLabel("DNI(Farmac):",Label.LEFT);
etiqueta9 = new JLabel("Sueldo(Farmac):",Label.LEFT);
EntradadeDatos.add(PanelNombreDuenio);
EntradadeDatos.add(PanelDNI);
EntradadeDatos.add(PanelPorc);

EntradadeDatos.add(PanelNombreCajero);
EntradadeDatos.add(PanelDNICaj);
EntradadeDatos.add(PanelSueldoCajero);

EntradadeDatos.add(PanelNombreFarmac);
EntradadeDatos.add(PanelDNIFarmac);
EntradadeDatos.add(PanelSueldoFarmac);

PanelNombreDuenio.add(etiqueta1);
PanelNombreDuenio.add(t1);
PanelDNI.add(etiqueta2);
PanelDNI.add(t2);
PanelPorc.add(etiqueta3);
PanelPorc.add(t3);
PanelNombreCajero.add(etiqueta4);
PanelNombreCajero.add(t4);
PanelDNICaj.add(etiqueta5); //*
PanelDNICaj.add(t5);
PanelSueldoCajero.add(etiqueta6);
PanelSueldoCajero.add(t6);
PanelNombreFarmac.add(etiqueta7);
PanelNombreFarmac.add(t7);
PanelDNIFarmac.add(etiqueta8); //*
PanelDNIFarmac.add(t8);
PanelSueldoFarmac.add(etiqueta9);
PanelSueldoFarmac.add(t9);
card1.add(EntradadeDatos);
PanelGeneral.add(EntradadeDatos);
card1.add(PanelGeneral);
JButton boton1 = new JButton("CARGAR DATOS");
card1.add(boton1);

boton1.addItemListener(this);
JButton boton0 = new JButton("LIMPIAR");
card1.add(boton0);

boton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evento) {
farmacity2 farmacia = new farmacity2();
dueño d1 = new dueño();
cajero c1 = new cajero();
farmaceutico farm1 = new farmaceutico();
producto prod1 = new producto();
venta v1 = new venta();
persona p1 = new persona();

farmacia.setFarmaceutico(farm1);
farmacia.setCajero(c1);
farmacia.setDuenio(d1);

nomb=t1.getText();
d1.setNombre(nomb);
dni=Integer.parseInt(t2.getText());
d1.setDNI(dni);
porc=Integer.parseInt(t3.getText());
d1.setPorcentaje(porc);
farmacia.AddDueños(d1); //agrega nuevo duenio
t1.setText(" ");
t2.setText(" ");
t3.setText(" ");

nomb_caj=t4.getText();
c1.setNombre(nomb_caj);
dni_c=Integer.parseInt(t5.getText());
c1.setDNI(dni_c);
sueldo_caj=Double.parseDouble(t6.getText());
c1.setVentas(v1);// relacion entre cajero y una venta
c1.setSueldo(sueldo_caj);
farmacia.AddCajero(c1); //agrega nuevo cajero
t4.setText(" ");
t5.setText(" ");
t6.setText(" ");

nomb_farmac=t7.getText();
farm1.setNombre(nomb_farmac);
dni_f=Integer.parseInt(t8.getText());
farm1.setDNI(dni_f);
sueldo_farm=Double.parseDouble(t9.getText());
farm1.setVentas(v1);// relacion entre farmaceutico y una venta
farm1.setSueldo(sueldo_farm);
farmacia.AddFarmaceutico(farm1);//agrega nuevo farmaceutico
t7.setText(" ");
t8.setText(" ");
t9.setText(" ");
}});

boton0.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evento) {
t1.setText(" ");
t2.setText(" ");
t3.setText(" ");
t4.setText(" ");
t5.setText(" ");
t6.setText(" ");
t7.setText(" ");
t8.setText(" ");
t9.setText(" ");
t10.setText(" ");
t11.setText(" ");
t12.setText(" ");
t13.setText(" ");
t14.setText(" ");
t15.setText(" ");
t16.setText(" ");
}});

public void itemStateChanged(ItemEvent evt) {

CardLayout cl = (CardLayout)(cards.getLayout());
cl.show(cards, (String)evt.getItem());
}

private static void createAndShowGUI() {
//Create and set up the window.
JFrame frame = new JFrame("CardLayoutDemo");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOS E);
//frame.setSize(600,600);
//Create and set up the content pane.
farmacity2 farmacia = new farmacity2();
farmacia.addComponentToPane(frame.getContentPane() );
frame.pack();
frame.setVisible(true);
}
public static void main(String[] args) { /* Use an appropriate Look and Feel */
try{//UIManager.setLookAndFeel("com.sun.java.swing.plaf. windows.WindowsLookAndFeel");
UIManager.setLookAndFeel("javax.swing.plaf.metal.M etalLookAndFeel");
} catch (UnsupportedLookAndFeelException ex) {
ex.printStackTrace();
} catch (IllegalAccessException ex) {
ex.printStackTrace();
} catch (InstantiationException ex) {
ex.printStackTrace();
} catch (ClassNotFoundException ex) {
ex.printStackTrace();
} /* Turn off metal's use of bold fonts */
UIManager.put("swing.boldMetal", Boolean.FALSE);
//Schedule a job for the event dispatch thread:
//creating and showing this application's GUI.
javax.swing.SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGUI();
}
});
}
public void setFarmaceutico(farmaceutico f){
farmaceutico farm1 = f;
}
public farmaceutico getFarmaceutico(farmaceutico f){
farmaceutico farm1 = null;
return farm1;
}
public void setCajero(cajero c){
cajero c1 = c;
}
public cajero getCajero(cajero c){
cajero c1 = null;
return c1;
}
public void setDuenio(dueño d){
dueño d1 = d;
}
public dueño getDuenio(dueño c){
dueño d1 = null;
return d1;
}

}

febrero 27, 2014 | Unregistered CommenterPabloVCC

No se ve DNI_caj y DNI_Farm, tampoco el boton LIMPIAR.

febrero 27, 2014 | Unregistered CommenterPabloVCC

El código que has publicado ni siquiera compila.

febrero 27, 2014 | Registered Commenterchoces

Aqui posteo el codigo COMPLETO del main. Pasa que solo puse la parte donde creo que se encuentra el error. Si necesitan ver las el codigo de las clases les apsaré.

import java.util.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.awt.event.ActionListener;
import java.io.*;
import java.util.Hashtable;
import java.util.Enumeration;

public class farmacity2 implements ItemListener {
JPanel cards; //a panel that uses CardLayout
final static String SOLAPA1 = "DueniosEmpleados";
final static String SOLAPA2 = "Ventas";
final static String SOLAPA3 = "Resultados/Consultas";
public JTextField t1,t2,t3,t4,t5,t6,t7,t8,t9,t10,t11,t12,t13,t14,t15,t16;
public JLabel etiqueta1, etiqueta2, etiqueta3, etiqueta4, etiqueta5, etiqueta6, etiqueta7, etiqueta8, etiqueta9;
public JLabel etiqueta10,etiqueta11,etiqueta12,etiqueta13,etiqueta14,etiqueta15,etiqueta16,etiqueta17,etiqueta18,etiqueta19,etiqueta20, etiqueta21;
public JButton boton0,boton1,boton2,boton3, boton4, boton5;
private String nomb, nomb_caj, nomb_farmac, descrip_prod, fecha;
private int dni, dni_c, dni_f, porc, codprod, cant;
private double sueldo_caj, sueldo_farm, precio, Sueldos_farm=0, Sueldos_cajeros=0 ;
private double ganancia_duenio, gananciaTotal=0, ganancia, sueldos, desc;

private Hashtable duenios ;
private Hashtable cajeros ;
private Hashtable farmaceuticos ;
private Hashtable productos;
private JTextArea area1;

//farmacity2 farmacia = new farmacity2();//{
public farmacity2(){//farmacity2 farmacia = new farmacity2();
duenios = new Hashtable();
cajeros = new Hashtable();
farmaceuticos = new Hashtable();
productos = new Hashtable();
}


public void addComponentToPane(Container pane) {
//Put the JComboBox in a JPanel to get a nicer look.
JPanel comboBoxPane = new JPanel() ; //use FlowLayout
String comboBoxItems[] = { SOLAPA1, SOLAPA2, SOLAPA3 };
JComboBox cb = new JComboBox(comboBoxItems);
cb.setEditable(false);
cb.addItemListener(this);
cb.addActionListener(cb);
//JButton boton1 = new JButton("CARGAR");
comboBoxPane.add(cb);

//Create the Panels
Panel PanelGeneral = new Panel(new GridLayout(4,1)) ;

Panel EntradadeDatos = new Panel (new GridLayout(9,1)); //3 , 1
Panel PanelNombreDuenio= new Panel(new FlowLayout(FlowLayout.LEFT));
Panel PanelDNI= new Panel(new FlowLayout(FlowLayout.LEFT));
Panel PanelPorc= new Panel(new FlowLayout(FlowLayout.LEFT));
Panel PanelNombreCajero= new Panel(new FlowLayout(FlowLayout.LEFT));
Panel PanelDNICaj= new Panel(new FlowLayout(FlowLayout.RIGHT));
Panel PanelSueldoCajero= new Panel(new FlowLayout(FlowLayout.LEFT));
Panel PanelNombreFarmac= new Panel(new FlowLayout(FlowLayout.LEFT));
Panel PanelDNIFarmac= new Panel(new FlowLayout(FlowLayout.LEFT));
Panel PanelSueldoFarmac= new Panel(new FlowLayout(FlowLayout.LEFT));

Panel PanelVentas= new Panel(new GridLayout(7,1));
Panel PanelFecha= new Panel(new FlowLayout(FlowLayout.LEFT));
Panel PanelCodProducto= new Panel(new FlowLayout(FlowLayout.LEFT));
Panel PanelNombreProducto= new Panel(new FlowLayout(FlowLayout.LEFT));
Panel PanelCantidad= new Panel(new FlowLayout(FlowLayout.LEFT));
Panel PanelPrecio= new Panel(new FlowLayout(FlowLayout.LEFT));

Panel SalidaResultados = new Panel (new GridLayout(3,1));
Panel PanelGanancias1 = new Panel(new FlowLayout(FlowLayout.LEFT));
Panel PanelGanancias2 = new Panel(new FlowLayout(FlowLayout.LEFT));
Panel PanelConsultas = new Panel(new FlowLayout(FlowLayout.LEFT));

//Create the "cards".
JPanel card1 = new JPanel();
t1 = new JTextField("",30);
t2 = new JTextField("",15);
t3 = new JTextField("",4);
t4 = new JTextField("",30);
t5 = new JTextField("",15);
t6 = new JTextField("",6);
t7 = new JTextField("",30);
t8 = new JTextField("",15);
t9 = new JTextField("",6);
etiqueta1 = new JLabel("Nombre(Dueño):",Label.LEFT);
etiqueta2 = new JLabel("DNI(Dueño):",Label.LEFT);
etiqueta3 = new JLabel("Porc(Dueño):",Label.LEFT);
etiqueta4 = new JLabel("Nombre(Cajero):",Label.LEFT);
etiqueta5 = new JLabel("DNI(Cajero):",Label.LEFT);
etiqueta6 = new JLabel("Sueldo:",Label.LEFT);
etiqueta7 = new JLabel("Nombre(Farmac):",Label.LEFT);
etiqueta8 = new JLabel("DNI(Farmac):",Label.LEFT);
etiqueta9 = new JLabel("Sueldo(Farmac):",Label.LEFT);
EntradadeDatos.add(PanelNombreDuenio);
EntradadeDatos.add(PanelDNI);
EntradadeDatos.add(PanelPorc);

EntradadeDatos.add(PanelNombreCajero);
EntradadeDatos.add(PanelDNICaj);
EntradadeDatos.add(PanelSueldoCajero);

EntradadeDatos.add(PanelNombreFarmac);
EntradadeDatos.add(PanelDNIFarmac);
EntradadeDatos.add(PanelSueldoFarmac);

PanelNombreDuenio.add(etiqueta1);
PanelNombreDuenio.add(t1);
PanelDNI.add(etiqueta2);
PanelDNI.add(t2);
PanelPorc.add(etiqueta3);
PanelPorc.add(t3);
PanelNombreCajero.add(etiqueta4);
PanelNombreCajero.add(t4);
PanelDNICaj.add(etiqueta5); //*
PanelDNICaj.add(t5);
PanelSueldoCajero.add(etiqueta6);
PanelSueldoCajero.add(t6);
PanelNombreFarmac.add(etiqueta7);
PanelNombreFarmac.add(t7);
PanelDNIFarmac.add(etiqueta8); //*
PanelDNIFarmac.add(t8);
PanelSueldoFarmac.add(etiqueta9);
PanelSueldoFarmac.add(t9);
card1.add(EntradadeDatos);//
PanelGeneral.add(EntradadeDatos);
card1.add(PanelGeneral);
JButton boton1 = new JButton("CARGAR DATOS");
card1.add(boton1);
//boton1.addActionListener(this);
boton1.addItemListener(this);
JButton boton0 = new JButton("LIMPIAR");
card1.add(boton0);
//boton0.addItemListener(this);
///NO FUNCIONA EVENTOS DE BOTONES///////
boton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evento) {
/* farmacity2 farmacia = new farmacity2();
//public farmacity2(){//farmacity2 farmacia = new farmacity2(){
duenios = new Hashtable();
cajeros = new Hashtable();
farmaceuticos = new Hashtable();
productos = new Hashtable(); */
//}
farmacity2 farmacia = new farmacity2();
dueño d1 = new dueño();
cajero c1 = new cajero();
farmaceutico farm1 = new farmaceutico();
producto prod1 = new producto();
venta v1 = new venta();
persona p1 = new persona();

farmacia.setFarmaceutico(farm1);
farmacia.setCajero(c1);
farmacia.setDuenio(d1);

nomb=t1.getText();
d1.setNombre(nomb);
dni=Integer.parseInt(t2.getText());
d1.setDNI(dni);
porc=Integer.parseInt(t3.getText());
d1.setPorcentaje(porc);
farmacia.AddDueños(d1); //agrego nuevo duenio
t1.setText(" ");
t2.setText(" ");
t3.setText(" ");

nomb_caj=t4.getText();
c1.setNombre(nomb_caj);
dni_c=Integer.parseInt(t5.getText());
c1.setDNI(dni_c);
sueldo_caj=Double.parseDouble(t6.getText());
c1.setVentas(v1);// relacion entre cajero y una venta
c1.setSueldo(sueldo_caj);
farmacia.AddCajero(c1); //agrego nuevo cajero
t4.setText(" ");
t5.setText(" ");
t6.setText(" ");

nomb_farmac=t7.getText();
farm1.setNombre(nomb_farmac);
dni_f=Integer.parseInt(t8.getText());
farm1.setDNI(dni_f);
sueldo_farm=Double.parseDouble(t9.getText());
farm1.setVentas(v1);// relacion entre farmaceutico y una venta
farm1.setSueldo(sueldo_farm);
farmacia.AddFarmaceutico(farm1);//agrego nuevo farmaceutico
t7.setText(" ");
t8.setText(" ");
t9.setText(" ");
}});

boton0.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evento) {
actionPerformed(evento);
}});

JPanel card2 = new JPanel();
t10 = new JTextField("",10);
t11 = new JTextField("",5);
t12 = new JTextField("",20);
t13 = new JTextField("",4);
t14 = new JTextField("",5);
t15 = new JTextField("",10);
t16 = new JTextField("",10);
etiqueta10 = new JLabel("Fecha:",Label.LEFT);
etiqueta11 = new JLabel("CodProd:",Label.LEFT);
etiqueta12 = new JLabel("DescripProd:",Label.LEFT);
etiqueta13 = new JLabel("Cant:",Label.LEFT);
etiqueta14 = new JLabel("Precio:",Label.LEFT);
etiqueta15 = new JLabel("DNI_Caj:",Label.LEFT);
etiqueta16 = new JLabel("DNI_Farm:",Label.LEFT);
PanelVentas.add(PanelFecha);
PanelVentas.add(PanelCodProducto);
PanelVentas.add(PanelNombreProducto);
PanelVentas.add(PanelCantidad);
PanelVentas.add(PanelPrecio);
PanelVentas.add(PanelDNICaj);
PanelVentas.add(PanelDNIFarmac);
PanelFecha.add(etiqueta10);
PanelFecha.add(t10);
PanelCodProducto.add(etiqueta11);
PanelCodProducto.add(t11);
PanelNombreProducto.add(etiqueta12);
PanelNombreProducto.add(t12);
PanelCantidad.add(etiqueta13);
PanelCantidad.add(t13);
PanelPrecio.add(etiqueta14);
PanelPrecio.add(t14);
PanelDNICaj.add(etiqueta15);
PanelDNICaj.add(t15);
PanelDNIFarmac.add(etiqueta16);
PanelDNIFarmac.add(t16);
card2.add(PanelVentas);
JButton boton2 = new JButton("CARGAR VENTA");
card2.add(boton2);
//boton2.addActionListener(this); // NO SIRVE- INTERFAZ INCORRECTA
boton1.addItemListener(this); // PROBAR - CORREGIR
card2.add(boton0);
boton0.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evento) {
t1.setText(" ");
t2.setText(" ");
t3.setText(" ");
t4.setText(" ");
t5.setText(" ");
t6.setText(" ");
t7.setText(" ");
t8.setText(" ");
t9.setText(" ");
t10.setText(" ");
t11.setText(" ");
t12.setText(" ");
t13.setText(" ");
t14.setText(" ");
t15.setText(" ");
t16.setText(" ");
}});
boton2.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evento) {
farmacity2 farmacia = new farmacity2();
// dueño d1 = new dueño();
cajero c1 = new cajero();
farmaceutico farm1 = new farmaceutico();
producto prod1 = new producto();
venta v1 = new venta();
persona p1 = new persona();

farmacia.setFarmaceutico(farm1);
farmacia.setCajero(c1);
// farmacia.setDuenio(d1);

fecha=t10.getText();
v1.setFecha(fecha);
codprod=Integer.parseInt(t11.getText());
prod1.setVentas(v1); //relacion entre producto y venta
prod1.setCodigo(codprod);
descrip_prod=t12.getText();
prod1.setNombre_Medicamento(descrip_prod);

//cant=Integer.parseInt(t13.getText());
v1.setCantidad(Integer.parseInt(t13.getText()));

//precio=Double.parseDouble(t14.getText());
prod1.setPrecio(Double.parseDouble(t14.getText()));

dni_c=Integer.parseInt(t15.getText());
c1.setDNI(dni_c);
dni_f=Integer.parseInt(t6.getText());
farm1.setDNI(dni_f);
farmacia.AddProducto(prod1); //agrego nuevo producto
t10.setText(" ");
t11.setText(" ");
t12.setText(" ");
t13.setText(" ");
t14.setText(" ");
t15.setText(" ");
t16.setText(" ");
precio=prod1.getPrecio();
cant=v1.getCantidad();
gananciaTotal= gananciaTotal + (cant*precio);
}});

JPanel card3 = new JPanel();
etiqueta17= new JLabel("Ganancia Tot:", Label.LEFT);
etiqueta19= new JLabel("Ganancia p/duenio:", Label.LEFT);
etiqueta18= new JLabel();
etiqueta20= new JLabel();
etiqueta21= new JLabel("Listado Farmc-Caj-sueldos: ", Label.LEFT);
area1 = new JTextArea(10,50);
//area1.setBounds(10,50,)
PanelGanancias1.add(etiqueta17);
PanelGanancias1.add(etiqueta18);
PanelGanancias2.add(etiqueta19);
PanelGanancias2.add(etiqueta20);
PanelConsultas.add(etiqueta21);
PanelConsultas.add(area1);
SalidaResultados.add(PanelGanancias1);
SalidaResultados.add(PanelGanancias2);
SalidaResultados.add(PanelConsultas);
card3.add(SalidaResultados);
JButton boton3 = new JButton("VER");
card3.add(boton3);
boton3.addItemListener(this);
boton3.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evento){
farmacity2 farmacia = new farmacity2();
dueño d1 = new dueño();
cajero c1 = new cajero();
farmaceutico farm1 = new farmaceutico();
producto prod1 = new producto();
venta v1 = new venta();
persona p1 = new persona();

farmacia.setFarmaceutico(farm1);
farmacia.setCajero(c1);
farmacia.setDuenio(d1);
for(int x=0;x<farmacia.CantidadDeFarmaceuticos();x++)
{
//Sueldos_farm = Sueldos_farm + Indice_x_farmaceutico(x) ;//REVISAR
Sueldos_farm = Sueldos_farm + farmaceutico.getSueldo(); // .Indice_x_farmaceutico(x).
}
for(int t=0;t<farmacia.CantidadDeCajeros();t++)
{
Sueldos_cajeros = Sueldos_cajeros + cajero.getSueldo(); // farmacia.Indice_x_cajero(t).g ;
}
sueldos = Sueldos_farm + Sueldos_cajeros;
ganancia = gananciaTotal - sueldos;
etiqueta18.setText(Double.toString(gananciaTotal));// ganancia total de Farmacia
etiqueta20.setText(Double.toString(ganancia/farmacia.CantidadDeDuenios())); //ganancia por dueño
}});




//PanelGeneral.add(EntradadeDatos);

//Create the panel that contains the "cards".
cards = new JPanel(new CardLayout());
cards.add(card1, SOLAPA1);
cards.add(card2, SOLAPA2);
cards.add(card3, SOLAPA3);
// cards.addAncestorListener(listener);

pane.add(comboBoxPane, BorderLayout.PAGE_START);
pane.add(cards, BorderLayout.CENTER);
}


//EVENTOS
public void itemStateChanged(ItemEvent evt) {

CardLayout cl = (CardLayout)(cards.getLayout());
cl.show(cards, (String)evt.getItem());
}
public void actionPerformed(ActionEvent evento){


if (evento.getSource()== boton3) //RESULTADOS
{ farmacity2 farmacia = new farmacity2();
for(int x=0;x<farmacia.CantidadDeFarmaceuticos();x++)
{
//Sueldos_farm = Sueldos_farm + Indice_x_farmaceutico(x) ;//REVISAR
Sueldos_farm = Sueldos_farm + farmaceutico.getSueldo(); // .Indice_x_farmaceutico(x). ///REVISAAAAAAAAARRR!!!!!!!!!!
}
for(int t=0;t<farmacia.CantidadDeCajeros();t++)
{
Sueldos_cajeros = Sueldos_cajeros + cajero.getSueldo(); // farmacia.Indice_x_cajero(t).g ;//REVISAR
}
sueldos = Sueldos_farm + Sueldos_cajeros;
ganancia = gananciaTotal - sueldos;
etiqueta18.setText(Double.toString(gananciaTotal));// ganancia total de Farmacia
etiqueta20.setText(Double.toString(ganancia/farmacia.CantidadDeDuenios())); //ganancia por dueño
}
if (evento.getSource()== boton4){ //CONSULTA
farmacity2 farmacia = new farmacity2();
for (int y=0; y<farmacia.CantidadDeFarmaceuticos(); y++)
{
area1.setText(nomb_farmac +" "+ farmacia.Indice_x_farmaceutico(y).getDNI() +" "+farmacia.Indice_x_farmaceutico(y).getApellido()) ;
}


}

}



//INTERFAZ GRAFICA
private static void createAndShowGUI() {
//Create and set up the window.
JFrame frame = new JFrame("CardLayoutDemo");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//frame.setSize(600,600);
//Create and set up the content pane.
farmacity2 farmacia = new farmacity2();
farmacia.addComponentToPane(frame.getContentPane());

// demo.cards.
//Display the window.
frame.pack();
frame.setVisible(true);
}

public static void main(String[] args) {
/* Use an appropriate Look and Feel */
try {
//UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
UIManager.setLookAndFeel("javax.swing.plaf.metal.MetalLookAndFeel");
} catch (UnsupportedLookAndFeelException ex) {
ex.printStackTrace();
} catch (IllegalAccessException ex) {
ex.printStackTrace();
} catch (InstantiationException ex) {
ex.printStackTrace();
} catch (ClassNotFoundException ex) {
ex.printStackTrace();
}
/* Turn off metal's use of bold fonts */
UIManager.put("swing.boldMetal", Boolean.FALSE);

//Schedule a job for the event dispatch thread:
//creating and showing this application's GUI.
javax.swing.SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGUI();
}
});
}


public void setFarmaceutico(farmaceutico f){
farmaceutico farm1 = f;
}
public farmaceutico getFarmaceutico(farmaceutico f){
farmaceutico farm1 = null;
return farm1;
}
public void setCajero(cajero c){
cajero c1 = c;
}
public cajero getCajero(cajero c){
cajero c1 = null;
return c1;
}
public void setDuenio(dueño d){
dueño d1 = d;
}
public dueño getDuenio(dueño c){
dueño d1 = null;
return d1;
}

public persona Indice_x_cajero(int indice){
Enumeration Lista = cajeros.keys();
int numero;
int contador = 0;
persona p = new persona();

while(Lista.hasMoreElements()){
numero = (Integer) Lista.nextElement();
if(contador==indice){
p = (persona) cajeros.get(numero);
}
contador = contador + 1;
}
return p;
}
public persona Indice_x_farmaceutico(int indice){
Enumeration Lista = farmaceuticos.keys();
int numero;
int contador = 0;
persona p = new persona();

while(Lista.hasMoreElements()){
numero = (Integer) Lista.nextElement();
if(contador==indice){
p = (persona) farmaceuticos.get(numero);
}
contador = contador + 1;
}
return p;
}

public producto Indice_x_producto(int indice){
Enumeration Lista = productos.keys();
int numero;
int contador = 0;
producto prodc = new producto();

while(Lista.hasMoreElements()){
numero = (Integer) Lista.nextElement();
if(contador==indice){
prodc = (producto) productos.get(numero);
}
contador = contador + 1;
}
return prodc;
}

public int CantidadDeCajeros(){
return cajeros.size();
}
public int CantidadDeFarmaceuticos(){
return farmaceuticos.size();
}
public int CantidadDeProductos(){
return productos.size();
}
public void AddDueños(persona p){
duenios.put(p.getDNI(), p);
}
public persona GetDueños(int numero){
return (persona) duenios.get(numero);
}
public int CantidadDeDuenios(){
return duenios.size();
}

public void AddCajero(persona p){
cajeros.put(p.getDNI(), p);
}
public persona GetCajero(int numero){
return (persona) cajeros.get(numero);
}
public void AddFarmaceutico(persona p){
farmaceuticos.put(p.getDNI(), p);
}
public persona GetFarmaceutico(int numero){
return (persona) farmaceuticos.get(numero);
}
public void AddProducto(producto prod){
productos.put(prod.getCodigo(), prod);
}
public producto GetProducto(int numero){
return (producto) productos.get(numero);
}
}

febrero 27, 2014 | Unregistered CommenterPabloVCC