code stringlengths 3 1.18M | language stringclasses 1
value |
|---|---|
package biblioteca.persistence.dao;
import biblioteca.persistence.entity.Editora;
public class EditoraDAO extends AbstractDAO<Editora> {
private static final long serialVersionUID = 1L;
public EditoraDAO() {
super(Editora.class);
}
}
| Java |
package biblioteca.persistence.dao;
import biblioteca.persistence.entity.Livro;
public class LivroDAO extends AbstractDAO<Livro> {
private static final long serialVersionUID = 1L;
public LivroDAO() {
super(Livro.class);
}
}
| Java |
package biblioteca.persistence.dao;
import biblioteca.persistence.entity.Perfil;
/**
* Classe de acesso a tabela Perfil.
*/
public class PerfilDAO extends AbstractDAO<Perfil> {
private static final long serialVersionUID = 1L;
/**
* Construtor padrao
*/
public PerfilDAO() {
super(Perfil.class);
}
}
| Java |
package biblioteca.persistence.dao;
import biblioteca.persistence.entity.Autor;
public class AutorDAO extends AbstractDAO<Autor> {
private static final long serialVersionUID = 1L;
public AutorDAO() {
super(Autor.class);
}
}
| Java |
package biblioteca.persistence.dao;
import biblioteca.persistence.entity.Emprestimo;
public class EmprestimoDAO extends AbstractDAO<Emprestimo> {
private static final long serialVersionUID = 1L;
public EmprestimoDAO() {
super(Emprestimo.class);
}
}
| Java |
package biblioteca.util;
import java.sql.Connection;
import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.Persistence;
import org.hibernate.ejb.EntityManagerImpl;
public class JpaUtil {
private static EntityManagerFactory emf;
private static E... | Java |
package biblioteca.util;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
public class MD5Hash {
public static String hash(String arg) {
String md5val = "";
MessageDigest algorithm = null;
try
{
algorithm = MessageDigest.getIn... | Java |
package controlador;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.event.WindowListener;
import modelo.Frase;
import modelo.FraseDao;
imp... | Java |
package controlador;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyListener;
import java.awt.event.KeyEvent;
import javax.swing.JButton;
import javax.swing.JMenuItem;
import javax.swing.JOptionPane;
import java.util.List;
import java.util.Random;
import temporizado... | Java |
package controlador;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.event.WindowListener;
import java.awt.event.WindowStateListener;
import java.util.List;
import modelo.Jugador;
import modelo.JugadorDao;... | Java |
/**
* Integrantes:
* Atacho Beleanny.CI.19.253.757
* Molina Luis.CI.17.600.894
* Flores Maria.CI.18.263.016
* Baute Jesus.CI.18.249.214
*/
import controlador.ControladorPrincipal;
public class Principal {
public static void main(String[] args) {
ControladorPrincipal controladorPrincipal= new Controlado... | Java |
package vista;
import java.util.ArrayList;
import java.util.List;
import javax.swing.table.AbstractTableModel;
import modelo.Jugador;
public class VentanaJugadorModeloTabla extends AbstractTableModel{
private static String[] titulos ={"Jugador", "Nivel", "Tiempo","Fallidos", "Puntaje"};
private List<Jugador> jug... | Java |
package vista;
import java.awt.Color;
import java.awt.event.ActionListener;
import java.awt.event.ItemListener;
import java.awt.event.KeyListener;
import java.awt.event.WindowListener;
import java.io.File;
import javax.swing.ImageIcon;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JTextAr... | Java |
package vista;
import javax.swing.JOptionPane;
public class Mensaje
{
public static void mostrarAdvertencia(String msj)
{
JOptionPane.showMessageDialog(null,msj, "ADVERTENCIA", JOptionPane.WARNING_MESSAGE);
}
public static void mostrarError(String msj)
{
JOptionPane.showMessageDial... | Java |
package vista;
import java.awt.event.WindowListener;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTable;
import javax.swing.JScrollPane;
import javax.swing.WindowConstants;
import javax.swing.table.AbstractTableModel;
import panelVisual.JPanelGradiente;
import ... | Java |
package vista;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyListener;
import java.io.File;
import javax.swing.JComboBox;
import javax.sw... | Java |
package modelo;
public class Frase {
private int codigo;
private String oracion;
private Nivel nivel;
public Frase() {
}
public Frase(int codigo, String oracion, Nivel nivel) {
super();
this.codigo = codigo;
this.oracion = oracion;
this.nivel = nivel;
}
public Frase(String oracion, Nivel ni... | Java |
package modelo;
public interface Dao {
String driver= "org.postgresql.Driver";
String nombreBD="BD1-4";
String url= "jdbc:postgresql://localhost:5432/";
String usuario= "postgres";
String password= "postgres";
}
| Java |
package modelo;
import java.sql.ResultSet;
import conexionBD.Conexion;
public class NivelDao implements Dao{
public NivelDao(){
Conexion.establecerPropiedadesConexion(driver, url, nombreBD, usuario, password);
}
public Nivel getNivel(String nombre) throws Exception{
Nivel nivel=new Nivel();
St... | Java |
package modelo;
public class Nivel {
private int codigo;
private String descripcion;
private int cantMinimaPalabras;
private int cantMaximaPalabras;
public Nivel() {
}
public Nivel(int codigo, String descripcion, int cantMinimaPalabras,
int cantMaximaPalabras) {
super();
this.codigo = codigo... | Java |
package modelo;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import conexionBD.Conexion;
public class JugadorDao implements Dao{
public JugadorDao(){
Conexion.establecerPropiedadesConexion(driver, url, nombreBD, usuario, password);
}
... | Java |
package modelo;
import java.util.List;
import java.util.ArrayList;
import java.sql.ResultSet;
import conexionBD.Conexion;
public class FraseDao implements Dao{
public FraseDao(){
Conexion.establecerPropiedadesConexion(driver, url, nombreBD, usuario, password);
}
public List<Frase> getFrases(Nivel niv... | Java |
package conexionBD;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.ResultSet;
import java.sql.Statement;
import java.util.List;
import java.io.Serializable;
public class Conexion implements Serializable
{
private static String driver;
pr... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author 18263016
*/
package temporizador;
import java.util.Observable;
import java.io.Serializable;
import javax.swing.JLabel;
import java.util.Observer;
public class LabelTemporizador extends JLabel implem... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author 18263016
*/
package temporizador;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Observable;
import javax.swing.Timer;
import java.io.Serializable;
... | Java |
package panelVisual;
import javax.swing.JPanel;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.GradientPaint;
import java.awt.geom.Rectangle2D;
import java.io.Serializable;
public class JPanelGradiente extends JPanel implements Serializable{
private Color primerColor;... | Java |
package panelVisual;
import java.awt.Graphics;
import java.awt.Image;
import javax.swing.ImageIcon;
import javax.swing.JPanel;
public class JPanelImagen extends JPanel implements java.io.Serializable {
private ImageIcon imagen;
public ImageIcon getImagen() {
return imagen;
}
public void ... | Java |
package msi.someBasicWumpusApplication;
/*
* Class that defines the agent function.
*
* Written by James P. Biagioni (jbiagi1@uic.edu)
* for CS511 Artificial Intelligence II
* at The University of Illinois at Chicago
*
* Last modified 2/19/07
*
* DISCLAIMER:
* Elements of this application were ... | Java |
package msi.someBasicWumpusApplication;
/*
* Wumpus-Lite, version 0.21 alpha
* A lightweight Java-based Wumpus World Simulator
*
* Written by James P. Biagioni (jbiagi1@uic.edu)
* for CS511 Artificial Intelligence II
* at The University of Illinois at Chicago
*
* Thanks to everyone who provided feedb... | Java |
package msi.someBasicWumpusApplication;
/*
* Class that defines agent actions.
*
* Written by James P. Biagioni (jbiagi1@uic.edu)
* for CS511 Artificial Intelligence II
* at The University of Illinois at Chicago
*
* Last modified 1/31/07
*
* DISCLAIMER:
* Elements of this application were borro... | Java |
package msi.someBasicWumpusApplication;
import java.util.Arrays;
/*
* Class that defines the environment.
*
* Written by James P. Biagioni (jbiagi1@uic.edu)
* for CS511 Artificial Intelligence II
* at The University of Illinois at Chicago
*
* Last modified 4/14/08
*
* DISCLAIMER:
* Element... | Java |
package msi.someBasicWumpusApplication;
/*
* Class that defines the agent.
*
* Written by James P. Biagioni (jbiagi1@uic.edu)
* for CS511 Artificial Intelligence II
* at The University of Illinois at Chicago
*
* Last modified 3/5/07
*
* DISCLAIMER:
* Elements of this application were borrowed fr... | Java |
package msi.someBasicWumpusApplication;
import java.awt.Cursor;
/*
* Class that defines the simulation environment.
*
* Written by James P. Biagioni (jbiagi1@uic.edu)
* for CS511 Artificial Intelligence II
* at The University of Illinois at Chicago
*
* Last modified 4/14/08
*
* DISCLAIMER:
*... | Java |
package msi.someBasicWumpusApplication;
/*
* Class that handles transferring the percepts
* from the environment to the agent function.
*
* Written by James P. Biagioni (jbiagi1@uic.edu)
* for CS511 Artificial Intelligence II
* at The University of Illinois at Chicago
*
* Last modified 1/31/07
*
... | Java |
package msi.agentClasses;
import java.util.HashMap;
import java.util.Set;
import java.util.SortedMap;
import msi.agentClasses.Location.Side;
import msi.someBasicWumpusApplication.Action;
import msi.someBasicWumpusApplication.TransferPercept;
import org.apache.log4j.Logger;
public class RulesDrivenAgent {
private s... | Java |
package msi.agentClasses;
import java.util.HashSet;
import java.util.Set;
public class WumpusTile {
public int row;
public int col;
public WumpusTile(int r, int c){
row=r; col=c;
}
public Set<WumpusTile> getAdjacentTiles(int wSize){
Set<WumpusTile> tiles = new HashSet<WumpusTile>();
if(row<wSize){
... | Java |
package msi.agentClasses;
import java.util.Arrays;
import java.util.Map;
import java.util.SortedMap;
import java.util.TreeMap;
public class Location {
//sloppy test method
public static void main(String[] args){
Location test = new Location();
System.out.println("New one: "+test.toString());
test.walk();
Sy... | Java |
package msi.agentClasses;
public class Criterion {
private String query;
public Criterion(String root, Iterable<String> params){
this.query=new String(root);
boolean start = true;
for(String param : params){
if(!start){
root+="x";
}else{
start=false;
}
root+=param;
}
}
}
| Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Controlador;
import Modelo.*;
import java.util.Vector;
import javax.swing.JList;
import javax.swing.JTextField;
/**
*
* @author Administrador
*/
public class ControladorListadoIngreMasUsados {
public Vecto... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Controlador;
import Modelo.ModeloIngredientes;
import java.util.Vector;
/**
*
*/
public class ControladorListadoVentasMonto {
public Vector<String> llenarLista()
{
ModeloIngredientes min =... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Controlador;
import Modelo.ModeloCategoria;
import Modelo.ModeloIngredientes;
import Modelo.ModeloProducto;
import java.util.Vector;
import javax.swing.*;
/**
*
* @author 18656815
*/
public class Controlado... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Controlador;
import Modelo.ModeloCategoria;
import javax.swing.JTextField;
/**
*
*/
public class ControladorCategoria {
public void Incluir(int cod,String nom)
{
ModeloCategoria min = new ModeloCa... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Controlador;
import Modelo.ModeloIngredientes;
import javax.swing.JTextField;
/**
*
*
*/
public class ControladorIngredientes {
public void Incluir(int cod,String nom,double can)
{
ModeloIng... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Controlador;
import Modelo.ModeloIngredientes;
import java.util.Vector;
/**
*
*/
public class ControladorAlmacen {
public Vector<String> llenarLista()
{
ModeloIngredientes min = new ModeloIngredient... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Controlador;
import Modelo.*;
import java.util.Vector;
/**
*
*/
public class ControladorCompras {
public Vector<String> llenarLista()
{
ModeloIngredientes min = new ModeloIngredientes();
... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Controlador;
import Modelo.ModeloCategoria;
import Modelo.*;
import java.util.Vector;
import javax.swing.JTextField;
/**
*
* @author Compaq
*/
public class ControladorPedido {
public Vector<String> llen... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/*
* RegistrarSubCategoria.java
*
* Created on 06/04/2011, 03:28:43 PM
*/
package Vista;
import Controlador.*;
import Controlador.ControladorProducto;
import javax.swing.JOptionPane;
/**
*
* @author Siragon
*/... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/*
* VistaIngredientes.java
*
* Created on 07-abr-2011, 11:17:15
*/
package Vista;
import Controlador.ControladorIngredientes;
import javax.swing.JOptionPane;
/**
*
*/
public class VistaIngredientes extends jav... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/*
* Almacen.java
*
* Created on 06/04/2011, 04:15:47 PM
*/
package Vista;
import Controlador.*;
import Controlador.ControladorIngredientes;
/**
* This code was edited or generated using CloudGarden's Jigloo
* S... | Java |
package Vista;
import Controlador.ControladorPedido;
import Controlador.ControladorProducto;
import javax.swing.JOptionPane;
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/*
* Pedido.java
*
* Created on 06/04/2011, 04:52:15 PM
*/
/**
*
* @author Compaq
*/... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/*
* VistaReporteVentasMonto.java
*
* Created on 07/04/2011, 11:04:58 PM
*/
package Vista;
import Controlador.ControladorListadoVentasMonto;
/**
*
* @author Siragon
*/
public class VistaListadoVentasMonto exte... | Java |
/*Integrantes:
* Contreras Johana C.I. 18656815
* Guardia Ivan C.I. 19104924
* Lopez Jesus C.I.19.198.862
* Seccion 1 - Equipo 4
*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Vista;
import Modelo.ModeloIngredientes;
/**
*
*/
public class Main {
... | Java |
/*
* productos.java
*
* Created on 4 de abril de 2011, 17:40
*/
package Vista;
import Controlador.ControladorCategoria;
import javax.swing.JOptionPane;
/**
*
*/
public class VistaCategoria extends javax.swing.JFrame {
/** Creates new form productos */
public VistaCategoria() {
initComponents();
... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/*
* VistaReporteVentas.java
*
* Created on 07/04/2011, 10:52:07 PM
*/
package Vista;
/**
*
* @author Siragon
*/
public class VistaListadoVentasCantidad extends javax.swing.JFrame {
/** Creates new form Vi... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/*
* VistaReporteIngreMasUsados.java
*
* Created on 07/04/2011, 10:41:44 PM
*/
package Vista;
import Controlador.ControladorIngredientes;
import Controlador.ControladorListadoIngreMasUsados;
/**
*
* @author Sir... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/*
* VistaCompras.java
*
* Created on 07-abr-2011, 11:34:18
*/
package Vista;
import Controlador.*;
import javax.swing.JOptionPane;
/**
*
*/
public class VistaCompras extends javax.swing.JFrame {
/** Creat... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Modelo;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JOptionPane;
/**
*
* @author Siragon
*/
public class Mode... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Modelo;
import Modelo.*;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JOptionPane;
/**
*/
public class ModeloCateg... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Modelo;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JOptionPane;
/**
*
* @author Compaq
*/
public class Model... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Modelo;
/**
*
*/
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Vector;
import javax.swing.J... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Modelo;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JOptionPane;
/**
*
* @author 18656815
*/
public class Mod... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Modelo;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JOptionPane;
/**
*
* @author
*/
public class ModeloIngre... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Controlador;
import Modelo.*;
import java.util.Vector;
import javax.swing.JList;
import javax.swing.JTextField;
/**
*
* @author Administrador
*/
public class ControladorListadoIngreMasUsados {
public Vecto... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Controlador;
import Modelo.ModeloIngredientes;
import java.util.Vector;
/**
*
*/
public class ControladorListadoVentasMonto {
public Vector<String> llenarLista()
{
ModeloIngredientes min =... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Controlador;
import Modelo.ModeloCategoria;
import Modelo.ModeloIngredientes;
import Modelo.ModeloProducto;
import java.util.Vector;
import javax.swing.*;
/**
*
* @author 18656815
*/
public class Controlado... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Controlador;
import Modelo.ModeloCategoria;
import javax.swing.JTextField;
/**
*
*/
public class ControladorCategoria {
public void Incluir(int cod,String nom)
{
ModeloCategoria min = new ModeloCa... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Controlador;
import Modelo.ModeloIngredientes;
import javax.swing.JTextField;
/**
*
*
*/
public class ControladorIngredientes {
public void Incluir(int cod,String nom,double can)
{
ModeloIng... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Controlador;
import Modelo.ModeloIngredientes;
import java.util.Vector;
/**
*
*/
public class ControladorAlmacen {
public Vector<String> llenarLista()
{
ModeloIngredientes min = new ModeloIngredient... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Controlador;
import Modelo.*;
import java.util.Vector;
/**
*
*/
public class ControladorCompras {
public Vector<String> llenarLista()
{
ModeloIngredientes min = new ModeloIngredientes();
... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Controlador;
import Modelo.ModeloCategoria;
import Modelo.*;
import java.util.Vector;
import javax.swing.JTextField;
/**
*
* @author Compaq
*/
public class ControladorPedido {
public Vector<String> llen... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/*
* RegistrarSubCategoria.java
*
* Created on 06/04/2011, 03:28:43 PM
*/
package Vista;
import Controlador.*;
import Controlador.ControladorProducto;
import javax.swing.JOptionPane;
/**
*
* @author Siragon
*/... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/*
* VistaIngredientes.java
*
* Created on 07-abr-2011, 11:17:15
*/
package Vista;
import Controlador.ControladorIngredientes;
import javax.swing.JOptionPane;
/**
*
*/
public class VistaIngredientes extends jav... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/*
* Almacen.java
*
* Created on 06/04/2011, 04:15:47 PM
*/
package Vista;
import Controlador.*;
import Controlador.ControladorIngredientes;
/**
*
* @author Siragon
*/
public class VistaAlmacen extends javax.s... | Java |
package Vista;
import Controlador.ControladorPedido;
import Controlador.ControladorProducto;
import javax.swing.JOptionPane;
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/*
* Pedido.java
*
* Created on 06/04/2011, 04:52:15 PM
*/
/**
*
* @author Compaq
*/... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/*
* VistaReporteVentasMonto.java
*
* Created on 07/04/2011, 11:04:58 PM
*/
package Vista;
import Controlador.ControladorListadoVentasMonto;
/**
*
* @author Siragon
*/
public class VistaListadoVentasMonto exte... | Java |
/*Integrantes:
* Contreras Johana C.I. 18656815
* Guardia Ivan C.I. 19104924
* Lopez Jesus C.I.19.198.862
* Seccion 1 - Equipo 4
*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Vista;
import Modelo.ModeloIngredientes;
/**
*
*/
public class Main {
... | Java |
/*
* productos.java
*
* Created on 4 de abril de 2011, 17:40
*/
package Vista;
import Controlador.ControladorCategoria;
import javax.swing.JOptionPane;
/**
*
*/
public class VistaCategoria extends javax.swing.JFrame {
/** Creates new form productos */
public VistaCategoria() {
initComponents();
... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/*
* VistaReporteVentas.java
*
* Created on 07/04/2011, 10:52:07 PM
*/
package Vista;
/**
*
* @author Siragon
*/
public class VistaListadoVentasCantidad extends javax.swing.JFrame {
/** Creates new form Vi... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/*
* VistaReporteIngreMasUsados.java
*
* Created on 07/04/2011, 10:41:44 PM
*/
package Vista;
import Controlador.ControladorIngredientes;
import Controlador.ControladorListadoIngreMasUsados;
/**
*
* @author Sir... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/*
* VistaCompras.java
*
* Created on 07-abr-2011, 11:34:18
*/
package Vista;
import Controlador.*;
import javax.swing.JOptionPane;
/**
*
*/
public class VistaCompras extends javax.swing.JFrame {
/** Creat... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Modelo;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JOptionPane;
/**
*
* @author Siragon
*/
public class Mode... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Modelo;
import Modelo.*;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JOptionPane;
/**
*/
public class ModeloCateg... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Modelo;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JOptionPane;
/**
*
* @author Compaq
*/
public class Model... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Modelo;
/**
*
*/
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Vector;
import javax.swing.J... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Modelo;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JOptionPane;
/**
*
* @author 18656815
*/
public class Mod... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Modelo;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JOptionPane;
/**
*
* @author
*/
public class ModeloIngre... | Java |
/*
* Copyright 2009 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to i... | Java |
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in w... | Java |
/*
* Copyright 2008 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in w... | Java |
/*
* Copyright 2009 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to i... | Java |
/*
* Copyright 2008 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to i... | Java |
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to i... | Java |
/*
* Copyright 2009 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to i... | Java |
/*
* Copyright 2008 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in w... | Java |
/*
* Copyright 2008 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to i... | Java |
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in w... | Java |
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to i... | Java |
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in w... | Java |
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in... | Java |
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in w... | Java |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.