code
stringlengths
3
1.18M
language
stringclasses
1 value
package com.anores.persistence.domain; import javax.persistence.AssociationOverride; import javax.persistence.AssociationOverrides; import javax.persistence.EmbeddedId; import javax.persistence.Entity; import javax.persistence.JoinColumn; import javax.persistence.Table; import javax.persistence.Transient; @Entity @Ta...
Java
package com.anores.persistence.domain; import java.util.HashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.OneToMany; import javax.persistence.Table; @Entity @Table(name = "user") public class User extends...
Java
package com.anores.persistence.domain; import javax.persistence.Entity; import javax.persistence.Table; @Entity @Table(name = "permission") public class Permission extends BaseEntityAudit { }
Java
package com.anores.persistence.domain; import java.util.Date; import javax.persistence.Column; import javax.persistence.MappedSuperclass; import javax.persistence.PrePersist; import javax.persistence.PreUpdate; import javax.persistence.Temporal; import javax.persistence.TemporalType; import javax.validation.constrain...
Java
package com.anores.persistence.repository; import org.springframework.data.jpa.repository.JpaRepository; import com.anores.persistence.domain.User; public interface UserRepository extends JpaRepository<User, Long>{ }
Java
package com.anores.persistence.repository; import org.springframework.data.jpa.repository.JpaRepository; import com.anores.persistence.domain.Role; public interface RoleRepository extends JpaRepository<Role, Long>{ }
Java
package com.anores.security; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.authentication.AuthenticationProvider; import org.springframework.security.authentication.UsernamePasswordAuthenticationToken; import org.springframework.security.core.Authentication; import ...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package wcb; import java.util.Date; /** * * @author Michelangelo */ public class Solicitud { private Integer idSolicitud; private Integer email_Usuario;//foranea de entidad usuario private String statu...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package wcb; import java.util.Date; /** * * @author Michelangelo */ public class Pais_has_Usuario1 { private Integer id_Pais; private String email_Usuario; private Date fecha_Inicio; private Date f...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package wcb; /** * * @author Michelangelo */ public class Descuento { private Integer id_Descuento; private Float monto; private Integer porcentaje; public Descuento() { id_Descuento = porc...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package wcb; import java.util.Date; /** * * @author Angiita */ public class Usuario_has_Estadio { private String USUARIO_email; private Integer ESTADIO_idESTADIO; //Constructor public Usuario_has_Estadio(String ...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package wcb; /** * * @author Michelangelo */ public class Descuento_has_Pais { }
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package wcb; import java.sql.Date; import java.sql.Time; /** * * @author Karla Ruiz */ public class Partido { //Atributos private Integer idpartido; private Date fecha; private Time hora; private St...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package wcb; import java.util.Date; /** * * @author Angiita */ public class Partido_has_Usuario { private Integer PARTIDO_idPARTIDO; private String USUARIO_email; //Constructor public Partido_has_Usuario(Integer...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package wcb; /** * * @author Michelangelo */ public class Pais { private Integer id_Pais; private String nombre; private String directorTecnico; private String grupo; public Pais() { id...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package wcb; /** * * @author Karla Ruiz */ public class Usuario_has_Usuario { private int email_usuario1; private int email_usuario2; private String statu; public Usuario_has_Usuario (int email1, in...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package wcb; import java.util.Date; /** * * @author Angiita */ public class Jugador_has_Usuario { private Integer JUGADOR_idJUGADOR; private String USUARIO_email; //Constructor public Jugador_has_Usuario(Integer...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package wcb; /** * * @author Michelangelo */ public class Usuario_has_Entrada { private String email_Usuario; private Integer id_Entrada; public Usuario_has_Entrada() { email_Usuario=""; ...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package wcb; import java.util.Date; /** * * @author Angiita */ public class Factura { private Integer idFACTURA; private String USUARIO_email; //Constructor public Factura(Integer iF, String uE) { idFACTURA=iF;...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package wcb; import java.util.Date; /** * * @author Michelangelo */ public class Jugador { private Integer id_Jugador; private Integer id_Pais;//foranea private String ciudad_Nac; private String t...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package wcb; /** * * @author Michelangelo */ public class Pais_has_Usuario { private Integer id_Pais; private String email_Usuario; public Pais_has_Usuario() { id_Pais = 0; email_Usuar...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package wcb; import java.sql.*; import java.util.logging.Level; import java.util.logging.Logger; public class BD { static Connection con; public void conectar() throws SQLException { try { ...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package wcb; /** * * @author Karla Ruiz */ public class Objeto { //Atributos private Integer idobjeto; private String descripcion; private float precio; private Integer cantidad; private Integer...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package wcb; /** * * @author Michelangelo */ public class Usuario_has_Descuento { private String email_Usuario; private Integer id_Descuento; public Usuario_has_Descuento() { email_Usuario = ...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package wcb; import java.util.Date; /** * * @author Angiita */ public class Evento { private Integer idEVENTO; private Date fecha; private String lugar; private String informacion; private String USUARIO_email; ...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package wcb; import java.util.Date; /** * * @author Angiita */ public class Partido_has_Pais { private Integer PARTIDO_idPARTIDO; private Integer PAIS_idPAIS; //Constructor public Partido_has_Pais(Integer iParti...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package wcb; import Interfaces.Wellcome; import java.sql.SQLException; /** * * @author Angiita */ public class Main { /** * @param args the command line arguments */ public static void main(Strin...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package wcb; /** * * @author Michelangelo */ public class Copa { private Integer id; private Integer id_Pais;//foranea con el pais q la gano private Integer anio; private String pais; private St...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package wcb; import java.util.Date; /** * * @author Angiita */ public class Entrada { private Integer idENTRADA; private String tipo; private Float precio; //cambiar a float private Integer total_entrada; ...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package wcb; /** * * @author Michelangelo */ public class Usuario_has_Factura { private String email_Usuario; private Integer id_Factura; public Usuario_has_Factura() { email_Usuario = ""; ...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package wcb; import java.sql.Date; /** * * @author Karla Ruiz */ public class Usuario { //Atributos private String email; private String nombre; private String apellido; private Date fecha_nac; ...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package wcb; import java.util.Date; /** * * @author Angiita */ public class Estadio { private Integer idESTADIO; private String nombre; private String ciudad; private Integer aforo; private Date fecha_construccion...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * AgregarPais.java * * Created on 19-may-2010, 21:28:32 */ package Interfaces; /** * * @author Angiita */ public class AgregarPais extends javax.swing.JFrame { /** Creates new form AgregarPais */ pu...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * Usuario_Administrador.java * * Created on 18-may-2010, 21:02:46 */ package Interfaces; /** * * @author Michelangelo */ public class Usuario_Administrador extends javax.swing.JFrame { /** Creates new f...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * Agregar_Amigo.java * * Created on 19-may-2010, 19:49:03 */ package Interfaces; /** * * @author Michelangelo */ public class Agregar_Amigo extends javax.swing.JFrame { /** Creates new form Agregar_Amig...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * Agregar_Descuento.java * * Created on 23/05/2010, 09:26:06 AM */ package Interfaces; /** * * @author Karla Ruiz */ public class Agregar_Descuento extends javax.swing.JFrame { /** Creates new form Agre...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * Agregar_Jugador.java * * Created on 23/05/2010, 09:06:35 AM */ package Interfaces; /** * * @author Karla Ruiz */ public class Agregar_Jugador extends javax.swing.JFrame { /** Creates new form Agregar_...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * ConsultarPartido.java * * Created on 19-may-2010, 20:22:29 */ package Interfaces; /** * * @author Angiita */ public class ConsultarPartido extends javax.swing.JFrame { /** Creates new form ConsultarPa...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * VentaEntradaObjetos.java * * Created on 19-may-2010, 20:01:05 */ package Interfaces; /** * * @author Angiita */ public class VentaEntradaObjetos extends javax.swing.JFrame { /** Creates new form Venta...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * Objeto_Consultar.java * * Created on 23/05/2010, 11:24:57 AM */ package Interfaces; /** * * @author Karla Ruiz */ public class Objeto_Consultar extends javax.swing.JFrame { /** Creates new form Objeto...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * SolicitudAmigoMiembro.java * * Created on 21-may-2010, 19:02:39 */ package Interfaces; /** * * @author Angiita */ public class SolicitudAmigoMiembro extends javax.swing.JFrame { /** Creates new form S...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * Consultar_Amigo.java * * Created on 19-may-2010, 19:52:22 */ package Interfaces; /** * * @author Michelangelo */ public class Consultar_Amigo extends javax.swing.JFrame { /** Creates new form Consulta...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * Descuento_Modificar_Eliminar_Consultar.java * * Created on 21-may-2010, 15:24:49 */ package Interfaces; /** * * @author Michelangelo */ public class Descuento_Modificar_Eliminar_Consultar extends javax.swi...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * ConsultarObjetos.java * * Created on 19-may-2010, 21:04:44 */ package Interfaces; /** * * @author Angiita */ public class ConsultarObjetos extends javax.swing.JFrame { /** Creates new form ConsultarOb...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * rEGISTRO.java * * Created on 19-may-2010, 22:01:26 */ package Interfaces; /** * * @author Angiita */ public class Registro extends javax.swing.JFrame { /** Creates new form rEGISTRO */ public Regi...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * Bloquear_Amigo.java * * Created on 22/05/2010, 07:33:38 PM */ package Interfaces; /** * * @author Karla Ruiz */ public class Bloquear_Amigo extends javax.swing.JFrame { /** Creates new form Bloquear_A...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * Modificar_Entrada.java * * Created on 23/05/2010, 11:32:34 AM */ package Interfaces; /** * * @author Karla Ruiz */ public class Modificar_Entrada extends javax.swing.JFrame { /** Creates new form Modi...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * ModificarJugador.java * * Created on 19-may-2010, 21:42:19 */ package Interfaces; /** * * @author Angiita */ public class ModificarJugador extends javax.swing.JFrame { /** Creates new form ModificarJu...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * Vender_Revender.java * * Created on 21-may-2010, 12:11:26 */ package Interfaces; /** * * @author Michelangelo */ public class Vender_Revender extends javax.swing.JFrame { /** Creates new form Vender_R...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * ConsultarAceptar.java * * Created on 19-may-2010, 21:46:08 */ package Interfaces; /** * * @author Angiita */ public class ConsultarAceptar extends javax.swing.JFrame { /** Creates new form ConsultarAc...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * Modificar_Evento.java * * Created on 21-may-2010, 15:30:45 */ package Interfaces; /** * * @author Michelangelo */ public class Modificar_Evento extends javax.swing.JFrame { /** Creates new form Modifi...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * Ver_Factura.java * * Created on 23/05/2010, 11:11:13 AM */ package Interfaces; /** * * @author Karla Ruiz */ public class Ver_Factura extends javax.swing.JFrame { /** Creates new form Ver_Factura */ ...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * Modificar_Pais.java * * Created on 21-may-2010, 15:00:00 */ package Interfaces; /** * * @author Michelangelo */ public class Modificar_Pais extends javax.swing.JFrame { /** Creates new form Modificar_...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * Login.java * * Created on 22/05/2010, 06:04:08 PM */ package Interfaces; /** * * @author Karla Ruiz */ public class Login extends javax.swing.JFrame { /** Creates new form Login */ public Login() ...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * Agregar_Partido.java * * Created on 19-may-2010, 20:17:37 */ package Interfaces; /** * * @author Michelangelo */ public class Agregar_Partido extends javax.swing.JFrame { /** Creates new form Agregar_...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * FanaticoPais.java * * Created on 22/05/2010, 07:47:57 PM */ package Interfaces; /** * * @author Karla Ruiz */ public class Fanatico_Pais extends javax.swing.JFrame { /** Creates new form FanaticoPais ...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * AgregarEstadio.java * * Created on 19-may-2010, 20:44:38 */ package Interfaces; import java.sql.SQLException; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.logging.Level; impo...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * Evento.java * * Created on 23/05/2010, 08:55:06 AM */ package Interfaces; /** * * @author Karla Ruiz */ public class Evento extends javax.swing.JFrame { /** Creates new form Evento */ public Event...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * Consultar_Jugador.java * * Created on 19-may-2010, 20:10:59 */ package Interfaces; /** * * @author Michelangelo */ public class Consultar_Jugador extends javax.swing.JFrame { /** Creates new form Cons...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * Modificar_Estadio.java * * Created on 21-may-2010, 15:40:26 */ package Interfaces; /** * * @author Michelangelo */ public class Modificar_Estadio extends javax.swing.JFrame { /** Creates new form Modi...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * Consultar.java * * Created on 19-may-2010, 20:10:59 */ package Interfaces; /** * * @author Michelangelo */ public class Consultar_Estadio extends javax.swing.JFrame { /** Creates new form Consultar */...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * Wellcome.java * * Created on 21-may-2010, 19:18:57 */ package Interfaces; /** * * @author Angiita */ public class Wellcome extends javax.swing.JFrame { /** Creates new form Wellcome */ public Well...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * Administrador_Usuario.java * * Created on 18-may-2010, 21:02:46 */ package Interfaces; /** * * @author Michelangelo */ public class Usuario extends javax.swing.JFrame { /** Creates new form Administra...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * ConsultarPais.java * * Created on 21-may-2010, 18:55:39 */ package Interfaces; /** * * @author Angiita */ public class ConsultarPais extends javax.swing.JFrame { /** Creates new form ConsultarPais */ ...
Java
// Copyright 2010 Google Inc. All Rights Reserved package com.google.testing.testify.risk.frontend.client.presenter; /** * Base Presenter for all application pages. * * @author jimr@google.com (Jim Reardon) */ public abstract class BasePagePresenter implements TaPagePresenter { /** * Refresh the view, inclu...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2011 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. package com.google.testing.testify.risk.frontend.client.presenter; import com.google.gwt.user.client.ui.Widget; /** * Base interface for all Presenters for Test Analytics pages. * * @author chrsmith@google.com (Chris) */ public interface TaPagePresenter { /** Refreshes the current...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2011 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2011 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2011 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2011 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2011 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java
// Copyright 2010 Google Inc. All Rights Reseved. // // 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 ...
Java