code
stringlengths
3
1.18M
language
stringclasses
1 value
package com.futonredemption.nokeyguard; import com.futonredemption.nokeyguard.activities.NoKeyguardPreferenceActivity; import com.futonredemption.nokeyguard.services.DisableKeyguardService; import android.app.PendingIntent; import android.content.Context; import android.content.Intent; import android.content....
Java
package com.felight.ems.strings; import java.lang.String.*; import java.util.*; class StrArray{ public static void main(String[] args){ String[] eid = new String[5]; String[] eid1 = new String[eid.length]; eid[0]="ankitha.parameswara@gmail.com"; eid[1]="abc@yahoo.com"; eid[2]="xyz@gmail.com"; ...
Java
package com.felight.ems.exceptions; class Exceptions{ public static void main(String[] args){ } }
Java
package com.felight.ems.strings; import java.util.*; class ScannerDemo{ public static void main(String[] args){ Scanner in = new Scanner(System.in); System.out.println("Enter your name"); String name = in.nextLine(); System.out.println("Hello!!"+name); System.out.println("please enter the nu...
Java
package com.felight.ems.hr; import java.util.*; class Arrays{ public static void main(String[] args){ int[] array={2,8,7,5,0,1,3,4,9,6}; Scanner in = new Scanner(System.in); System.out.println("The elements present in array are"); for(int i=0;i<array.length;i++){ System.out.println(array[i]+"\t");...
Java
package com.felight.ems.strings; import com.felight.ems.strings.StringDemo; class Demo{ public static void main(String[] args){ StringDemo str = new StringDemo(); str.writeEmails(); str.readText(); } }
Java
package com.felight.ems.collections; import java.util.*; class Lists{ public static void main(String[] args){ List<String> listOfColors = new ArrayList<String>(); listOfColors.add("Blue"); listOfColors.add("Lavender"); listOfColors.add("Black"); listOfColors.add("White"); listOfColors.add("Purpl...
Java
package com.felight.ems.test; import com.felight.ems.hr.employee; class test{ public static void main(String[] args){ //car ford=new car(); //ford.stop(); //System.out.println(ford.stop()); employee E1=new employee(); employee E2=new employee(); employee E3=new employee(); employee E4=new emplo...
Java
package com.felight.ems.strings; import com.felight.ems.strings.WriteString; class DemoStr{ public static void main(String[] args){ WriteString str = new WriteString(); str.writeSomething(accounts.txt,"aaa@facebook.com"); } }
Java
package com.felight.ems.strings; import java.io.*; public class StringDemo{ public static boolean writeEmails(File file,String data){ FileWriter fileWriter = null; BufferedWriter bufferedWriter = null; try{ if(file.canWrite()){ FileWriter fileWriter = new FileWriter(file); BufferedWriter buff...
Java
package com.felight.ems.strings; class StrBufBuild{ static int N=77777777; static long t; public static void main(String[] args){ { StringBuffer sb = new StringBuffer(); t = System.currentTimeMillis(); for(int i=N;i --> 0;){ sb.append(""); } System.out.println(System.currentTime...
Java
package com.felight.ems.exceptions; class ExceptionEx{ public static void main(String[] args){ int i=1,j=0; int[] array=new int[10]; String str="A"; try{ int result=i/j; int lastele=array[11]; double x=Double.parseDouble(str); System.out.println("the number is:"+ x); } catch(A...
Java
package com.felight.ems.strings; class StrReverse{ public static void main(String[] args){ //reversing a string StringBuffer buffer = new StringBuffer("Blue Moon"); buffer.reverse(); System.out.println(buffer); //converting primitive data types to string Integer i = 100; String s = i.toString(...
Java
package com.felight.ems.test; import com.felight.ems.hr.Calculator; class Test6{ public static void main(String[] args){ Calculator C1 = new Calculator(); int[][] matrix=new int[10][10]; int[] array={5, 8, 1, 3, 2}; char[] arr={'a','r','t','e','i'}; /*C1.areaOfRectangle(4.5,7.5); C1.areaOfCirc...
Java
package com.felight.ems.strings; import java.io.File; import java.io.*; class WriteString{ public static boolean writeSomethig(File f1, String data){ FileWriter fw = null; try{ fw = new FileWriter(f1); if(f1.canRead()){ fw.write(data); }else{ f1.createNewFile(); fw.write(data...
Java
package com.felight.ems.sql; import com.felight.ems.sql.ConnectionFactory; import com.felight.examples.jdbc.db.DbUtil; import java.sql.Connection; import java.sql.Date; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import org.apache.l...
Java
package com.felight.ems.sql; import java.sql.Connection; import java.sql.DriverManager; import java.sql.*; public class Database { static final String JDBC_DRIVER = "com.mysql.jdbc.Driver"; static final String DB_URL = "jdbc:mysql://localhost/tukudu"; static final String USER = "tukudu"; static final Stri...
Java
package com.felight.ems.sql; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.sql.DriverManager; import java.sql.SQLException; import java.util.Properties; import org.apache.log4j.Logger; import com.mysql.jdbc.Connection; public class Conne...
Java
package com.felight.ems.hr; public class employee implements serializable{ public String name; public String addr; public transient int SSN; public char gender; public double salary; }
Java
package com.felight.ems.threads; import java.util.Properties; import javax.mail.Message; import javax.mail.MessagingException; import javax.mail.PasswordAuthentication; import javax.mail.Session; import javax.mail.Transport; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeMessage;...
Java
package com.felight.ems.hr; import java.util.*; public class Arrays { public static void main(String[] args) { int[] array={2,8,7,5,0,1,3,4,9,6}; System.out.println("The elements present in array are"); for(int i=0;i<array.length;i++){ System.out.println(array[i]+"\t"); } System.out.prin...
Java
package com.felight.ems.collections.iterator; import java.util.ArrayList; import java.util.Iterator; import java.util.LinkedList; public class Employee { int id; String name; public Integer getId(){ return id; } public String getName(){ return name; } public Employee(int id, String n...
Java
package com.felight.ems.collections; import java.util.ArrayList; import java.util.Arrays; //import java.util.Iterator; import java.util.LinkedList; import java.util.List; public class AddString { public static String generateRandomStringArray(int size) { StringBuffer buffer = new StringBuffer(); Str...
Java
package com.felight.ems.collections; import java.util.ArrayList; import java.util.LinkedList; public class TestBenchMark { public static void main(String[] args) { int size = 100000, pos = 9000, position = 8000; ListBenchMarking ben = new ListBenchMarking(); ArrayList<String> alist = ben.generate...
Java
package com.felight.ems.collections; import java.util.*; class Lists{ public static void main(String[] args){ List<String> listOfColors = new ArrayList<String>(); listOfColors.add("Blue"); listOfColors.add("Lavender"); listOfColors.add("Black"); listOfColors.add("White"); listOfColors.add("Purpl...
Java
package com.felight.ems.collections; import java.util.*; public class ArrayLists { public static void main(String[] args) { List<Number> myLists = new ArrayList<Number>(); myLists.add(new Integer(20)); myLists.add(89.00); myLists.add(45.9f); myLists.add(new Long(11115888)); myLists.add(new Sho...
Java
package com.felight.ems.collections; import java.util.ArrayList; import java.util.Iterator; import java.util.LinkedList; import org.apache.commons.lang3.RandomStringUtils; //import java.util.Random; public class ListBenchMarking { //if API is not used then this method can be used. /*public St...
Java
package com.felight.ems.collections; import java.util.ArrayList; import java.util.Arrays; import java.util.List; public class Employee1 { String name; public String getName(){ return name; } public Employee1(String name){ this.name=name; } public String toString(){ return th...
Java
package com.felight.ems.collections; import java.util.*; class Employee implements Comparable<Employee> { Integer id; private String name; String address; Character gender; public String getName(){ return name; } public Integer getId(){ return id; } public String getAddress(){ return...
Java
package com.felight.ems.sql; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import org.apache.log4j.Logger; import com.felight.examples.jdbc.db.DbUtil; public class UserDao { private Logger log = Logger...
Java
package com.felight.ems.sql; import java.sql.Date; public class User { private int userId; private String userName; private String email; private String firstName; private String lastName; private String password; private String userType; private String activeFlag; private int createdBy; ...
Java
package com.felight.ems.sql; import java.sql.Connection; import java.sql.DriverManager; import java.sql.*; public class Database { static final String JDBC_DRIVER = "com.mysql.jdbc.Driver"; static final String DB_URL = "jdbc:mysql://localhost/tukudu"; static final String USER = "tukudu"; static final Stri...
Java
package com.felight.ems.sql; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.sql.DriverManager; import java.sql.SQLException; import java.util.Properties; import org.apache.log4j.Logger; import com.mysql.jdbc.Connection; public class Conne...
Java
package com.felight.ems.sql; import com.felight.ems.sql.User; public class Test { public static void main(String[] args) { UserDao ud = new UserDao(); User u = new User(); u = ud.getUser(1); System.out.println("User details :"+ u.getUserId()); } }
Java
package com.felight.ems.sort; class Sorting{ static int largest; static int n; public static void main(String[] args){ int[] arr={5, 8, 1, 3, 2, 4,0, 78,99,10,20,11}; double[] array=generateRandomDoubleArray(10000); long starti = System.currentTimeMillis(); insertionSort(array); long endi =...
Java
package com.felight.ems.hr; import java.util.*; public class Calculator{ public final static double PI=3.142; public static void main(String[] args){ int[][] matrix=new int[2][3]; int[] array={5, 8, 1, 3, 2}; char[] arr={'a','r','t','e','i'}; areaOfRectangle(4.5,7.5); areaOfCircle(20.0); ...
Java
package com.felight.ems.serialize; import com.felight.ems.hr.employee; import java.io.*; public class Serialization{ public static void main(String[] args){ Employee e = new Employee(); e.name = "Ankitha"; e.addr = "Felight,Bangalore"; e.SSN = 123; e.gender = 'F'; e.salary = 20000.00; try{ ...
Java
package anjos.rn; import anjos.dao.GenericDAO; import anjos.modelo.Localizacao; import java.util.List; public class LocalizacaoRN { private final GenericDAO dao = new GenericDAO(); public Localizacao novo() { return new Localizacao(); } public boolean salvar(Localizacao c) { ...
Java
package anjos.rn; import anjos.dao.GenericDAO; import anjos.modelo.Responsavel; import java.util.List; public class ResponsavelRN { private final GenericDAO dao = new GenericDAO(); public Responsavel novo() { return new Responsavel(); } public boolean salvar(Responsavel c) { ...
Java
package anjos.rn; import anjos.dao.GenericDAO; import anjos.modelo.Anjo; import java.util.List; public class AnjoRN { private final GenericDAO dao = new GenericDAO(); public Anjo novo() { return new Anjo(); } public boolean salvar(Anjo c) { if (c.getId() == null) { ...
Java
package anjos.rn; import anjos.dao.GenericDAO; import anjos.modelo.Evento; import java.util.List; public class EventoRN { private final GenericDAO dao = new GenericDAO(); public Evento novo() { return new Evento(); } public boolean salvar(Evento c) { if (c.getId() == ...
Java
package anjos.rn; import anjos.dao.GenericDAO; import anjos.modelo.Crianca; import anjos.modelo.Evento; import anjos.modelo.Responsavel; import java.util.List; import javax.faces.model.SelectItem; public class CriancaRN { private final GenericDAO dao = new GenericDAO(); public Crianca novo() { ...
Java
package anjos.bean; import anjos.modelo.Anjo; import anjos.rn.AnjoRN; import java.util.List; import javax.faces.bean.ManagedBean; import javax.faces.bean.RequestScoped; @ManagedBean @RequestScoped public class AnjoBean { private Anjo anjo = new Anjo(); private AnjoRN anjoRN = new AnjoRN(); ...
Java
package anjos.bean; import anjos.modelo.Evento; import anjos.rn.EventoRN; import java.util.List; import javax.faces.bean.ManagedBean; import javax.faces.bean.RequestScoped; @ManagedBean @RequestScoped public class EventoBean { private EventoRN eventoRN = new EventoRN(); private Evento evento = n...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package anjos.bean; import java.util.Enumeration; import java.util.Map; import javax.faces.application.FacesMessage; import javax.faces.context.ExternalContext; import javax.faces.context.FacesContext; import...
Java
package anjos.bean; import anjos.modelo.Crianca; import anjos.rn.CriancaRN; import java.util.List; import javax.faces.bean.ManagedBean; import javax.faces.bean.RequestScoped; import javax.faces.model.SelectItem; @ManagedBean @RequestScoped public class CriancaBean { private CriancaRN criancaRN = new...
Java
package anjos.bean; import anjos.modelo.Responsavel; import anjos.rn.ResponsavelRN; import java.util.List; import javax.faces.bean.ManagedBean; import javax.faces.bean.RequestScoped; @ManagedBean @RequestScoped public class ResponsavelBean { private ResponsavelRN responsavelRN = new ResponsavelRN(); ...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package anjos.conversores; /** * * @author AlanmLira */ import anjos.modelo.Evento; import anjos.rn.EventoRN; import javax.faces.component.UIComponent; import javax.faces.context.FacesContext; import javax.faces.co...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package anjos.conversores; /** * * @author AlanmLira */ import anjos.modelo.Responsavel; import anjos.rn.ResponsavelRN; import javax.faces.component.UIComponent; import javax.faces.context.FacesContext; import java...
Java
package anjos.dao; import java.util.List; import javax.persistence.EntityManager; import javax.persistence.Query; public class GenericDAO<C> implements Interface<C> { private EntityManager em = FabricaEntityManager.obterFactory().createEntityManager(); public GenericDAO() { } publi...
Java
package anjos.dao; import javax.persistence.EntityManagerFactory; import javax.persistence.Persistence; public class FabricaEntityManager { private static EntityManagerFactory fabrica = Persistence.createEntityManagerFactory("AnjosPU"); public FabricaEntityManager() { } public stat...
Java
package anjos.dao; import java.util.List; public interface Interface<C> { public boolean criar(C o); public boolean alterar(C o); public boolean excluir(C o); public C obter(Class<C> classe, Object id); public List<C> obterTodos(Class<C> classe); }
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package anjos.modelo; import java.io.Serializable; import java.math.BigDecimal; import java.util.Date; import javax.persistence.Basic; import javax.persistence.Column; import javax.persistence.Entity; import javax.persi...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package anjos.modelo; import java.io.Serializable; import java.util.Date; import java.util.List; import javax.persistence.Basic; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persis...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package anjos.modelo; 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 ja...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package anjos.modelo; import java.io.Serializable; import java.util.Date; import java.util.List; import javax.persistence.Basic; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persis...
Java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package anjos.modelo; 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
package ec.edu.espol.csi.grupo4.miprimerproyecto; import android.os.Bundle; import android.app.Activity; import android.view.Menu; public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.l...
Java
package edu.grupo4.appcomedores; import android.app.Activity; import android.content.Intent; import android.widget.Button; import android.widget.Spinner; import android.os.Bundle; import android.view.View; import android.widget.AdapterView; import android.widget.ArrayAdapter; import android.widget.ListView; import and...
Java
package edu.grupo4.appcomedores; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.Button; /** * Created by Administrador on 31/08/13. */ public class Dueno extends Activity implements View.OnClickListener { // Array of options ...
Java
package edu.grupo4.appcomedores; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.AdapterView; import android.widget.ArrayAdapter; import android.widget.ListView; import android.widget.TextVie...
Java
package edu.grupo4.appcomedores; import android.R.*; import android.app.Activity; import android.content.Intent; import android.widget.Button; import android.widget.EditText; import android.widget.Spinner; import android.os.Bundle; import android.view.View; import android.widget.AdapterView; import android.widget.Arra...
Java
package edu.grupo4.appcomedores; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.Toast; /** * Created by Administrador on 31/08/13. */ public class Administrador extends Activity implements View.OnCli...
Java
package edu.grupo4.appcomedores; import android.os.Bundle; import android.app.Activity; import android.content.Intent; import android.view.Menu; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.EditText; import android.widget.Toast; public class M...
Java
package edu.grupo4.appcomedores; import android.app.Activity; import android.os.Bundle; import android.widget.ArrayAdapter; import android.widget.ListView; import android.widget.AdapterView; import android.view.View; import android.view.View.OnClickListener; import android.widget.TextView; import android.widget.Toast;...
Java
package edu.grupo4.appcomedores; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.widget.AdapterView; import android.widget.ArrayAdapter; import android.widget.ListView; import android.widget.TextView; import android.widget.Toast; /** * Created by Administrador on 31/08...
Java
/*___Generated_by_IDEA___*/ package edu.grupo4.appeventos; /* This stub is only used by the IDE. It is NOT the R class actually packed into the APK */ public final class R { }
Java
/*___Generated_by_IDEA___*/ package edu.grupo4.appeventos; /* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */ public final class Manifest { }
Java
/*___Generated_by_IDEA___*/ /** Automatically generated file. DO NOT MODIFY */ package edu.grupo4.appeventos; public final class BuildConfig { public final static boolean DEBUG = true; }
Java
package edu.grupo4.appeventos; import java.util.ArrayList; import android.widget.BaseAdapter; import android.app.Activity; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter; import android.widget.ImageView; imp...
Java
package edu.grupo4.appeventos; import android.app.Activity; import android.view.View; import android.widget.*; import android.os.Bundle; import android.widget.Toast; /** * Created by Esteban on 31/08/13. */ public class ActivityLogin extends Activity { private EditText etusuario; private EditText etcontras...
Java
package edu.grupo4.appeventos; import android.app.Activity; import android.os.Bundle; /** * Created by Esteban on 01/09/13. */ public class EventDetails extends Activity{ @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layo...
Java
package edu.grupo4.appeventos; import android.os.Bundle; import android.app.Activity; import android.view.Menu; import java.util.ArrayList; import android.util.Log; import android.view.MenuItem; import android.view.View; import android.widget.AdapterView; import android.widget.AdapterView.OnItemClickListener; import a...
Java
package edu.grupo4.appeventos; import java.util.Date; /** * Created by Esteban on 28/08/13. */ public class Evento { protected long id; protected String descripcion; protected String tipo; protected String fecha; protected Date hora; protected String informacion; protected String lugar; ...
Java
package edu.grupo4.applaboratorio; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.ArrayAdapter; import android.widget.ListView; public class Ubicacion_Activity extends Activity { protected void onCreate(Bundle savedInsta...
Java
package edu.grupo4.applaboratorio; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.AdapterView; import android.widget.AdapterView.OnItemClickListener; import android.widget.ArrayAdapter; import android.widget.ListView; pu...
Java
package edu.grupo4.applaboratorio; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.ArrayAdapter; import android.widget.ListView; public class MaqDisponible_Activity extends Activity { private String[] programas = { "ADOBE...
Java
package edu.grupo4.applaboratorio; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.AdapterView; import android.widget.ArrayAdapter; import android.widget.ListView; import android.widget.AdapterView.OnItemClickListener; pu...
Java
package edu.grupo4.applaboratorio; import android.os.Bundle; import android.app.Activity; import android.content.Intent; import android.view.Menu; import android.view.View; public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(saved...
Java
/** Automatically generated file. DO NOT MODIFY */ package edu.grupo4.applaboratorio; public final class BuildConfig { public final static boolean DEBUG = true; }
Java
/* * Copyright 2011 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...
Java
/* * Copyright 2011 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...
Java
/* * Copyright 2011 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...
Java
/* * Copyright 2011 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...
Java
/* * Copyright 2011 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...
Java
/* * Copyright 2011 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...
Java
/* * Copyright 2011 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...
Java
/* * Copyright 2011 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...
Java
/* * Copyright 2011 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...
Java
/* * Copyright 2011 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...
Java
/* * Copyright 2011 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...
Java
/* * Copyright 2011 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...
Java
/* * Copyright 2011 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...
Java
/* * Copyright 2011 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...
Java
/* * Copyright 2011 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...
Java
/* * Copyright 2011 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...
Java
/* * Copyright 2011 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...
Java
/* * Copyright 2011 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...
Java
/* * Copyright 2011 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...
Java
/* * Copyright 2011 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...
Java