code
stringlengths
3
1.18M
language
stringclasses
1 value
/* * Copyright 2010 Daniel Kurka * * 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 ...
Java
package com.googlecode.gwtphonegap.server.log.rebind; import java.util.List; import com.google.gwt.core.ext.BadPropertyValueException; import com.google.gwt.core.ext.ConfigurationProperty; import com.google.gwt.core.ext.Generator; import com.google.gwt.core.ext.GeneratorContext; import com.google.gwt.core.ext.Propert...
Java
package com.googlecode.gwtphonegap.server.log.rebind; import java.io.PrintWriter; import java.util.List; import com.google.gwt.core.ext.BadPropertyValueException; import com.google.gwt.core.ext.ConfigurationProperty; import com.google.gwt.core.ext.Generator; import com.google.gwt.core.ext.GeneratorContext; import com...
Java
/* * Copyright 2011 Daniel Kurka * * 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 ...
Java
/* * Copyright 2012 Daniel Kurka * * 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 ...
Java
/* * Copyright 2012 Daniel Kurka * * 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 ...
Java
package threads; import java.io.File; import java.util.List; import java.util.Random; import model.*; import supermarket.DBmanager; import supermarket.PurchaseXMLManager; public class ThreadManager { private DBmanager db; // Πίνακας με τα threads private PurchaseThread[] threads; // Αρι...
Java
package threads; import java.util.*; import model.*; import supermarket.*; public class PurchaseThread extends Thread { private DBmanager db; private Customer customer; private Store store; private ArrayList<ProductPurchase> basket; private Purchase purchase; private ThreadManage...
Java
package supermarket; import model.Product; public class SuperMarket { public static String appTitle = "ΕΦΑΡΜΟΓΗ SUPER-MARKET"; public static String msgDialogTitle = "ΠΡΟΣΟΧΗ"; public static String msgUnknowUser = "Αγνωστη Κάρτα πόντων"; public static String msgWrongPass = "Λάθος Κωδικός"; public...
Java
package supermarket; import java.util.Calendar; import java.util.List; import javax.persistence.*; import model.*; import model_remote.*; public class DBmanager { // Πεδία // EntityManager για την εσωτερική Βάση Δεδομένων private EntityManagerFactory emf; private EntityManager em; // EntityManage...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package supermarket; /** * * @author aggelos */ import javax.swing.JOptionPane; import model.*; public class LoginForm extends javax.swing.JFrame { private static final long serialVersionUID = 1L; /** ...
Java
package supermarket; import java.util.*; import model_remote.*; import model.*; public class CreditCardVerifier { private DBmanager db; private int numOfTries; public CreditCardVerifier(DBmanager db) { this.db = db; numOfTries = 0; } // Getters public DBmana...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package supermarket; import java.util.*; import javax.swing.SwingWorker; import model.Customer; import threads.ThreadManager; /** * * @author koag */ public class SimulatePurchasesPanel extends javax.swing.JPanel { ...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package supermarket; import java.awt.*; import java.util.ArrayList; import java.util.List; import model.*; import Admin.*; import Customer.*; /** * * @author koag */ public class MainForm extends javax.swing.JFrame ...
Java
package supermarket; import threads.*; import java.io.File; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Calendar; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import javax.xml.transform.Transformer; import javax.xml.transform.Transforme...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Customer; import javax.persistence.EntityManager; import javax.swing.table.DefaultTableModel; import model.*; import supermarket.*; import java.util.*; import javax.swing.DefaultListModel; import javax.swing.JOp...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Customer; import javax.persistence.EntityManager; import model.*; import supermarket.DBmanager; import supermarket.MainForm; import java.util.*; import javax.swing.table.DefaultTableModel; /** * * @author agg...
Java
package Customer; import java.util.ArrayList; import java.util.List; import javax.persistence.EntityManager; import javax.swing.JOptionPane; import javax.swing.table.DefaultTableModel; import model.*; import supermarket.*; /** * * @author aggelos, steve */ public class MarketPlacePanel extends javax.swing.JPanel {...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Customer; import javax.persistence.EntityManager; import javax.swing.JOptionPane; import model.Customer; import supermarket.DBmanager; import supermarket.MainForm; import supermarket.SuperMarket; /** * * @aut...
Java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package Customer; import java.util.List; import javax.swing.JOptionPane; import supermarket.*; import model.*; /** * * @author agge...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Customer; import javax.swing.JOptionPane; import supermarket.*; import model.*; import java.util.*; import javax.persistence.EntityManager; /** * * @author aggelos */ public class EditProfilPanel extends jav...
Java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package Customer; import model.*; import java.util.*; import javax.swing.JOptionPane; /** * * @author aggelos */ public class Prod...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Admin; import javax.persistence.EntityManager; import supermarket.*; import model.*; import java.util.*; import javax.swing.*; /** * * @author koag */ public class RelateProductsStoresPanel extends javax.swi...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Admin; /** * * @author koag */ import supermarket.*; import model.*; import java.util.*; import javax.swing.*; import javax.swing.table.DefaultTableModel; public class StoresPanel extends javax.swing.JPanel ...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Admin; import java.util.List; import javax.swing.DefaultListModel; import javax.swing.JOptionPane; import supermarket.*; import model.*; /** * * @author koag */ public class ProductsPanel extends javax.swing...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Admin; import java.awt.event.*; import java.util.List; import javax.persistence.EntityManager; import javax.swing.*; import javax.swing.table.DefaultTableModel; import supermarket.*; import model.*; //import o...
Java
package Admin; import model.*; import supermarket.*; import java.util.List; import java.util.Random; import javax.persistence.EntityManager; import javax.swing.JOptionPane; public class NewCustomer extends javax.swing.JFrame { private static final long serialVersionUID = 1L; private Customer c; private P...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package model; import java.io.Serializable; import java.util.List; import javax.persistence.Basic; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.per...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package model; import java.io.Serializable; import java.util.List; import javax.persistence.Basic; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.per...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package model; import java.io.Serializable; import java.util.List; import javax.persistence.Basic; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.per...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package model; import java.io.Serializable; import java.util.List; import javax.persistence.Basic; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.per...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package model; import java.io.Serializable; import javax.persistence.Basic; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationT...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package model; import java.io.Serializable; import java.util.List; import javax.persistence.Basic; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.per...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package model; import java.io.Serializable; import java.util.List; import javax.persistence.Basic; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax....
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package model; import java.io.Serializable; import java.util.List; import javax.persistence.Basic; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax....
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package model_remote; import java.io.Serializable; import java.util.List; import javax.persistence.Basic; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package model_remote; import java.io.Serializable; import javax.persistence.Basic; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Gene...
Java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package trabalho1; /** * * @author EmbrapaPC */ public class Teste3 { }
Java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package trabalho1; /** * * @author EmbrapaPC */ public class Teste { //Jucelio viado }
Java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package trabalho1; /** * * @author EmbrapaPC */ public class Trabalho1 { /** * @param args the command line...
Java
// Copyright (c) 2010, Freddy Martens (http://atstechlab.wordpress.com), // MindTheRobot (http://mindtherobot.com/blog/) and contributors // All rights reserved. // // Redistribution and use in source and binary forms, with or without modification, // are permitted provided that the following conditions are met: // ...
Java
// Copyright (c) 2010, Freddy Martens (http://atstechlab.wordpress.com), // MindTheRobot (http://mindtherobot.com/blog/) and contributors // All rights reserved. // // Redistribution and use in source and binary forms, with or without modification, // are permitted provided that the following conditions are met...
Java
package controlador.ControlXML; import modelo.elementosDelJuego.*; import modelo.geografico.Ciudad; import modelo.geografico.Lugar; import modelo.geografico.RecorridoLadron; import modelo.geografico.TipoEdificio; import modelo.juego.Caso; import modelo.juego.Juego; import modelo.personajes.Grado; import mode...
Java
package controlador.ControlXML; import modelo.descripciones.*; import modelo.personajes.Sospechoso; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.NodeList; import org.xml.sax.SAXException; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory...
Java
package controlador.ControlXML; import modelo.geografico.Ciudad; import modelo.geografico.CreadorDeGrafoCiudades; import modelo.geografico.Lugar; import modelo.geografico.TipoEdificio; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.NodeList; import org.xml.sax.SAXException; imp...
Java
package controlador.ControlXML; import modelo.juego.Juego; import org.w3c.dom.Document; import org.w3c.dom.Element; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import javax.xml.parsers.ParserConfigurationException; import javax.xml.transform.Transformer; import...
Java
package controlador.ControlXML; import modelo.elementosDelJuego.ObjetoRobado; import modelo.geografico.Ciudad; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.NodeList; import org.xml.sax.SAXException; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBui...
Java
package controlador.ControlMenu; import Vista.Vista; import controlador.ControlXML.CargadorXML; import controlador.ControlXML.GuardadorXML; import modelo.descripciones.*; import modelo.elementosDelJuego.CuartelGeneral; import modelo.elementosDelJuego.SeAcaboElTiempoDelCasoExcepcion; import modelo.geografico.Ciudad; im...
Java
package Vista; import javax.swing.JPanel; import java.awt.Dimension; import java.awt.Graphics; import javax.swing.ImageIcon; public class VistaPrincipalImagen extends JPanel { private String nombreVista; public VistaPrincipalImagen(String vistaName) { this.nombreVista = vistaName; ...
Java
package Vista; import controlador.ControlMenu.Controlador; import modelo.descripciones.*; import modelo.elementosDelJuego.Tiempo; import modelo.geografico.Ciudad; import modelo.geografico.Lugar; import modelo.juego.MenuBase; import javax.swing.*; import javax.swing.border.EmptyBorder; import java.awt.*; import java....
Java
package Vista; import modelo.juego.MenuBase; import java.util.Observer; public class VistaPrincipal extends Vista implements Observer { public VistaPrincipal(MenuBase unMenuBase) { super(unMenuBase); this.setImagen("imagenesVista/presentacionCarmenSandiego.jpg"); } }
Java
package modelo.geografico; import java.util.*; public class Grafo { //Mapa de listas de adyacencia private Map<Integer, LinkedList<Ciudad>> ciudadesLista; public Grafo(int cantidadCiudades) { //Los nombres de los nodos son enteros consecutivos que comienzan con 0 y terminan en 13 (14 c...
Java
package modelo.geografico; import org.w3c.dom.Document; import org.w3c.dom.Element; import java.util.ArrayList; public class RecorridoLadron { private ArrayList<Ciudad> recorrido; private Lugar lugarFinal; public RecorridoLadron(Ciudad ciudadDelRobo, int numCiudadesARecorrer) { this....
Java
package modelo.geografico; import modelo.elementosDelJuego.Pista; import modelo.elementosDelJuego.Tiempo; import org.w3c.dom.Document; import org.w3c.dom.Element; public class Lugar { private Pista pista; public TipoEdificio tipo; private Ciudad ciudad; private int numVisitas; publ...
Java
package modelo.geografico; public enum TipoEdificio { BANCO, PUERTO, AEROPUERTO, BIBLIOTECA, BOLSA }
Java
package modelo.geografico; import java.util.ArrayList; import java.util.List; public class CreadorDeGrafoCiudades { private Grafo grafociudades; public CreadorDeGrafoCiudades(ArrayList<Ciudad> ciudades, int cantidadciudades) { this.grafociudades = new Grafo(cantidadciudades); graf...
Java
package modelo.geografico; import org.w3c.dom.Document; import org.w3c.dom.Element; import java.util.ArrayList; public class Ciudad { private ArrayList<Lugar> lugares; private ArrayList<Ciudad> ciudadesVisitables; private String nombre; private double Latitud; private double Longitu...
Java
package modelo.juego; public class Main { public static void main(String[] args) { new MenuBase(); //menu.nuevoJuego(); } }
Java
package modelo.juego; import Vista.Vista; import Vista.VistaPrincipal; import modelo.elementosDelJuego.SeAcaboElTiempoDelCasoExcepcion; import modelo.geografico.Ciudad; import modelo.geografico.Lugar; import modelo.personajes.Policia; import java.util.ArrayList; public class MenuBase { private stat...
Java
package modelo.juego; import modelo.descripciones.Sexo; import modelo.elementosDelJuego.CreadorDePistas; import modelo.elementosDelJuego.ObjetoRobado; import modelo.elementosDelJuego.Valor; import modelo.geografico.Ciudad; import modelo.geografico.Lugar; import modelo.geografico.RecorridoLadron; import modelo...
Java
package modelo.juego; import controlador.ControlXML.CreadorDeCiudades; import controlador.ControlXML.CreadorDeObjetos; import controlador.ControlXML.CreadorDeSospechosos; import modelo.elementosDelJuego.CuartelGeneral; import modelo.elementosDelJuego.ObjetoRobado; import modelo.elementosDelJuego.Tiempo; import...
Java
package modelo.personajes; public enum Grado { NOVATO(900, 5), DETECTIVE(1100, 10), INVESTIGADOR(1300, 15), SARGENTO(1500, 0); private int velocidad; private int nroArrestosParaPromover; Grado(int velocidad, int nroArrestosParaPromover) { this.velocidad = velocidad; this.nroAr...
Java
package modelo.personajes; import modelo.descripciones.Descripcion; public class Sospechoso { private String nombre; private Descripcion descripcion; public Sospechoso(Descripcion descripcion) { this.descripcion = descripcion; } public Sospechoso(String nombre, Descripcion ...
Java
package modelo.personajes; public class NoSePuedeVisitarLugarExcepcion extends RuntimeException { /** * */ private static final long serialVersionUID = 1L; }
Java
package modelo.personajes; import modelo.elementosDelJuego.CuartelGeneral; import modelo.elementosDelJuego.Tiempo; import modelo.geografico.Ciudad; import modelo.geografico.Lugar; import org.w3c.dom.Document; import org.w3c.dom.Element; import java.util.Observable; public class Policia extends Observabl...
Java
package modelo.descripciones; public enum Senia { ANILLO, TATUAJE, CICATRIZ, JOYAS }
Java
package modelo.descripciones; public class Descripcion { private Senia senia; private Hobby hobby; private Pelo pelo; private Vehiculo vehiculo; private Sexo sexo; public Descripcion(Sexo sexo, Hobby hobby, Pelo pelo, Senia senia, Vehiculo vehiculo) { this.senia = senia; ...
Java
package modelo.descripciones; public enum Sexo {MASCULINO, FEMENINO}
Java
package modelo.descripciones; public enum Hobby { TENIS, MUSICA, ALPINISMO, PARACAIDISMO, NATACION, CROQUET }
Java
package modelo.descripciones; public enum Pelo { CASTANIO, RUBIO, ROJO, NEGRO }
Java
package modelo.descripciones; public enum Vehiculo { CONVERTIBLE, LIMUSINA, DEPORTIVO, MOTO }
Java
package modelo.elementosDelJuego; import modelo.geografico.Ciudad; public class ObjetoRobado { private Ciudad ciudadOrigen; private String descripcionObjeto; public ObjetoRobado(Ciudad ciudadOrigen, String descripcion) { this.ciudadOrigen = ciudadOrigen; this.descripcionObjeto...
Java
package modelo.elementosDelJuego; import modelo.personajes.Sospechoso; public class OrdenDeArresto { private Sospechoso sospechoso; public OrdenDeArresto(Sospechoso sospechoso) { this.sospechoso = sospechoso; } public Sospechoso obtenerSospechoso() { return sospechoso; ...
Java
package modelo.elementosDelJuego; public class Pista { public String pista; public Pista(String pista) { this.pista = pista; } public Pista() { this.pista = "Lo siento, no he visto a nadie sospechoso."; } public String contenidoComoString() { ret...
Java
package modelo.elementosDelJuego; import modelo.descripciones.Descripcion; import modelo.geografico.Lugar; import modelo.juego.Juego; import modelo.personajes.Policia; import modelo.personajes.Sospechoso; import org.w3c.dom.Document; import org.w3c.dom.Element; import java.util.ArrayList; import java.util....
Java
package modelo.elementosDelJuego; import org.w3c.dom.Document; import org.w3c.dom.Element; public class Tiempo { private static final int MAX_HS_PARA_CASO = 154;//Domingo 17hs contando desde el lunes a las 7 Hs private static final int NUM_HS_PARA_DORMIR = 8; private static final int HORA_COMI...
Java
package modelo.elementosDelJuego; public enum Valor { COMUN, VALIOSO, MUY_VALIOSO }
Java
package modelo.elementosDelJuego; public class SeAcaboElTiempoDelCasoExcepcion extends RuntimeException { private static final long serialVersionUID = 1L; public String AvisoAlJugador() { return ("GAME OVER, partida nueva? S o N?"); } }
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package pkg1dam; /** * * @author VICENTE */ public class Clase3 extends Clase1{ private int cuatro; public Clase3() { super(); cuatro = 4; } @Override public void mostrar()...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package pkg1dam; /** * * @author VICENTE */ public class Clase2 extends Clase1{ private int tres; public Clase2() { super(); tres = 0; } @Override public void mostrar() ...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /*Talu está aquí*/ package pkg1dam; /** * * @author VICENTE */ public class Clase1 { private int uno; private int dos; public Clase1() { uno=0; dos=0; } public void mostra...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package pkg1dam; /** * * @author VICENTE */ /* Modificado por Joan */ public class Main { /** * @param args the command line arguments */ public static void main(String[] args) { Clase1 c1...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /** * * @author Toshiba */ public class Mila2 { /** * @param args the command line arguments */ public static void main(String[] args) { // TODO code application logic here ...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /** * * @author Toshiba */ public class mila2 { /** * @param args the command line arguments */ public static void main(String[] args) { // TODO code application logic here ...
Java
/* * Copyright 2012 Roman Nurik * * 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 ...
Java
/* * Copyright 2012 Roman Nurik * * 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 ...
Java
/* * Copyright 2012 Roman Nurik * * 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 ...
Java
/* * Copyright 2012 Roman Nurik * * 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 ...
Java
/* * Copyright 2012 Roman Nurik * * 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 ...
Java
/* * Copyright 2012 Roman Nurik * * 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 ...
Java
/* * Copyright 2012 Roman Nurik * * 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 ...
Java
/* * Copyright 2012 Roman Nurik + Nick Butcher * * 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 la...
Java
/* * Copyright 2012 Roman Nurik + Nick Butcher * * 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 la...
Java
/* * Copyright 2012 Roman Nurik + Nick Butcher * * 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 la...
Java
/* * Copyright 2012 Roman Nurik + Nick Butcher * * 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 la...
Java
/* * Copyright 2012 Roman Nurik * * 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 ...
Java
/* * Copyright 2012 Roman Nurik * * 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 ...
Java
/* * Copyright 2012 Roman Nurik * * 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 ...
Java
/* * Copyright 2012 Roman Nurik * * 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 ...
Java
/* * Copyright 2012 Roman Nurik * * 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 ...
Java