code
stringlengths
3
1.18M
language
stringclasses
1 value
package org.anddev.andengine.util.modifier; /** * (c) Zynga 2011 * * @author Nicolas Gramlich <ngramlich@zynga.com> * @since 14:17:30 - 10.08.2011 */ public abstract class BaseDoubleValueChangeModifier<T> extends BaseSingleValueChangeModifier<T> { // =========================================================== ...
Java
package org.anddev.andengine.util; import org.anddev.andengine.util.pool.GenericPool; /** * (c) 2010 Nicolas Gramlich * (c) 2011 Zynga Inc. * * @author Nicolas Gramlich * @since 23:07:53 - 23.02.2011 */ public class TransformationPool { // =========================================================...
Java
package org.anddev.andengine.util; /** * (c) 2010 Nicolas Gramlich * (c) 2011 Zynga Inc. * * @author Nicolas Gramlich * @since 10:47:33 - 11.05.2010 */ public enum HorizontalAlign { // =========================================================== // Elements // ====================================...
Java
package org.anddev.andengine.util; import java.io.IOException; import java.net.DatagramSocket; import java.net.ServerSocket; import java.net.Socket; /** * (c) 2010 Nicolas Gramlich * (c) 2011 Zynga Inc. * * @author Nicolas Gramlich * @since 14:42:15 - 18.09.2009 */ public class SocketUtils { /...
Java
package org.anddev.andengine.util; import java.util.concurrent.Callable; import org.anddev.andengine.ui.activity.BaseActivity.CancelledException; import org.anddev.andengine.util.progress.IProgressListener; import org.anddev.andengine.util.progress.ProgressCallable; import android.app.Activity; import andro...
Java
package org.anddev.andengine.util; import java.util.HashMap; import java.util.Iterator; /** * (c) 2010 Nicolas Gramlich * (c) 2011 Zynga Inc. * * @author Nicolas Gramlich * @since 16:54:24 - 07.11.2010 */ public class MultiKeyHashMap<K, V> extends HashMap<MultiKey<K>, V> { // ===================...
Java
package org.anddev.andengine.util; import java.util.GregorianCalendar; import org.anddev.andengine.util.constants.Constants; import android.R; import android.app.Activity; import android.app.AlertDialog; import android.app.AlertDialog.Builder; import android.content.DialogInterface; import android.content...
Java
package org.anddev.andengine.util; /** * (c) 2010 Nicolas Gramlich * (c) 2011 Zynga Inc. * * @author Nicolas Gramlich * @since 09:40:55 - 14.12.2009S */ public interface Callback<T> { // =========================================================== // Final Fields // ==============================...
Java
package org.anddev.andengine.util; import java.util.ArrayList; /** * (c) 2010 Nicolas Gramlich * (c) 2011 Zynga Inc. * * @author Nicolas Gramlich * @since 12:43:39 - 11.03.2010 */ public class ListUtils { // =========================================================== // Constants // =========...
Java
package org.anddev.andengine.util; import java.io.IOException; import java.io.OutputStream; import java.nio.ByteBuffer; import org.anddev.andengine.util.Debug; /** * (c) Zynga 2011 * * @author Nicolas Gramlich <ngramlich@zynga.com> * @since 02:19:02 - 14.08.2011 */ public class ByteBufferOutputStream extends Ou...
Java
package org.anddev.andengine.util; import org.anddev.andengine.util.constants.Constants; import android.util.Log; /** * (c) 2010 Nicolas Gramlich * (c) 2011 Zynga Inc. * * @author Nicolas Gramlich * @since 13:29:16 - 08.03.2010 */ public class Debug implements Constants { // ==================...
Java
package org.anddev.andengine.util; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.FilenameFilter; import java.io.IOException; import java.io.InputStream; import android.content.Context; import android.os.Environment...
Java
package org.anddev.andengine.util; /** * (c) 2010 Nicolas Gramlich * (c) 2011 Zynga Inc. * * @author Nicolas Gramlich * @since 15:00:30 - 14.05.2010 * @param <T> */ public interface AsyncCallable<T> { // =========================================================== // Final Fields // ===========...
Java
package org.anddev.andengine.util; import org.xml.sax.Attributes; /** * (c) 2010 Nicolas Gramlich * (c) 2011 Zynga Inc. * * @author Nicolas Gramlich * @since 22:02:09 - 21.07.2010 */ public class SAXUtils { // =========================================================== // Constants // =======...
Java
package org.anddev.andengine.util; import java.util.Random; import org.anddev.andengine.util.constants.MathConstants; import android.util.FloatMath; /** * (c) 2010 Nicolas Gramlich * (c) 2011 Zynga Inc. * * @author Nicolas Gramlich * @since 20:42:15 - 17.12.2009 */ public class MathUtils impl...
Java
package org.anddev.andengine.util; import java.util.ArrayList; /** * (c) 2010 Nicolas Gramlich * (c) 2011 Zynga Inc. * * @author Nicolas Gramlich * @since 22:20:08 - 27.12.2010 */ public class SmartList<T> extends ArrayList<T> { // =========================================================== // ...
Java
package org.anddev.andengine.util; /** * (c) 2010 Nicolas Gramlich * (c) 2011 Zynga Inc. * * @author Nicolas Gramlich * @since 15:15:23 - 24.07.2010 */ public enum VerticalAlign { // =========================================================== // Elements // ======================================...
Java
package org.anddev.andengine.util; /** * (c) 2010 Nicolas Gramlich * (c) 2011 Zynga Inc. * * @author Nicolas Gramlich * @since 12:32:22 - 26.12.2010 */ public interface IMatcher<T> { // =========================================================== // Constants // ==================================...
Java
package pl.polidea.coverflow; import java.lang.ref.WeakReference; import java.util.HashMap; import java.util.Map; import android.content.Context; import android.graphics.Bitmap; import android.util.Log; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter; import android.widget.I...
Java
/** * Provides implementation of cover flow. */ package pl.polidea.coverflow;
Java
package pl.polidea.coverflow; import android.R.color; import android.graphics.Bitmap; import android.graphics.Bitmap.Config; import android.graphics.Canvas; import android.graphics.LinearGradient; import android.graphics.Matrix; import android.graphics.Paint; import android.graphics.PorterDuff.Mode; import android.gra...
Java
/** * Test activity. */ package pl.polidea.coverflow.testingactivity;
Java
package pl.polidea.coverflow.testingactivity; import pl.polidea.coverflow.CoverFlow; import pl.polidea.coverflow.R; import pl.polidea.coverflow.ReflectingImageAdapter; import pl.polidea.coverflow.ResourceImageAdapter; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.widge...
Java
package pl.polidea.coverflow; import java.lang.ref.WeakReference; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import android.content.Context; import android.graphics.Bitmap; import android.graphics.drawable.BitmapDrawable; import android.util.Log; /** * This cl...
Java
/* * Copyright (C) 2010 Neil Davies * * 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 agree...
Java
package org.japo.java.basics.entities; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; import java.io.File; /** * * @author Adrian Pascual */ class GEV extends WindowAdapter { private final String F_BLOQUEO = "instancia.lock"; private IGU igu; GEV(IGU igu) { ...
Java
package org.japo.java.basics.entities; import javax.swing.JFrame; /** * * @author Adrian Pascual */ class IGU extends JFrame{ //Declaracion componentes cosas IGU(){ iniciarComponentes(); } private void iniciarComponentes(){ GEV gev = new GEV(this); addWi...
Java
package org.japo.java.basics.entities; import java.awt.EventQueue; /** * * @author Adrian Pascual */ public class EjecucionUnica { public static void main(String[] args) { EventQueue.invokeLater( new Runnable() { @Override public ...
Java
package puzzle_a_estrela; public class NPuzzle { private static Heuristica heuristica = new Heuristica(); public String executar() { String output = " "; int tamTabuleiro = 4; int numEmbaralhamentos = 20; // Cria um estado inicial aleatorio e memoriza o estado ...
Java
package puzzle_a_estrela; /* Par Ação Estado */ public final class AcaoEstado { private final Acao acao; private final Estado estado; public AcaoEstado(Acao a, Estado e) { acao=a; estado=e; } public Acao getAcao() { return acao; } public Esta...
Java
package puzzle_a_estrela; /* * Heurística que retorna o menor número de peças que devem ser movimentadas para se chegar ao estado ideal. */ public class Heuristica { public int getDistancia(No myNode) { NPuzzleEstado myState = (NPuzzleEstado) myNode.getEstado(); // Gera o estado meta NPuzzleE...
Java
package puzzle_a_estrela; import java.text.DecimalFormat; import java.util.ArrayList; import java.util.Iterator; /** * Implementação do estado do problema NPuzzle */ public final class NPuzzleEstado implements Estado { /** Configuração do tabuleiro */ public final int[][] pecas; /** O tama...
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 puzzle_a_estrela; /** * * @author raissa */ public class GUI extends javax.swing.JFrame { /** * Creates new form...
Java
package puzzle_a_estrela; /** * Interface de estado. Sua implementação é utilizada para buscar nós-meta. */ public interface Estado { /** * Determina se o estado é final. */ public boolean estadoFinal(); /** * Gera todos os possíveis pares Ação/Estado dos sucessores ...
Java
package puzzle_a_estrela; /* Ação a ser executada */ public class Acao { private String label=null; public Acao() { label="?"; } public Acao(String label) { this.label=label; } public String toString() { return label; } }
Java
package puzzle_a_estrela; import java.util.ArrayList; import java.util.Arrays; /** * O nó da árvore de busca */ public class No { private final Estado estado; private final No pai; private final Acao acao; private final double custo; private final int profundidade; private in...
Java
package framework; import java.awt.Color; /** * This interface defines a mapping from ints to colors, which will control how * a cellular automaton looks when displayed in a grid. If null is returned the * framework will decide how to display it, so if a visualization is used with * an automaton it is not made fo...
Java
package framework; /** * This interface describes an initial "board state" for a cellular automaton, * represented as a 2-d array of ints. This would specify both the size of the * board and the state of every cell at the beginning of the simulation. * In theory any initial state would work with any automaton, bu...
Java
package framework; import java.awt.Color; import java.awt.Dimension; import java.awt.Graphics; import java.awt.GridLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.HashMap; import javax.swing.BorderFactory; import javax.swing.DefaultComboBoxModel; import ja...
Java
package framework; /** * An implementor of this interface describes a single cellular automaton rule. * Any cellular automaton is expected to operate on a 2-dimensional rectangular * grid of squares. The representation uses ints, so this limits plugin authors * to 2-d automata with 2<sup>32</sup> cell states, whic...
Java
package example; import java.awt.Color; import framework.Visualization; public class VisualizationImpl implements Visualization { public VisualizationImpl() { } @Override public Color getColor(int state) { if (state == 0) return Color.WHITE; else return Color.BLUE; } @Override public String ...
Java
package example; import framework.InitialState; public class GliderGun implements InitialState { private int[][] grid; public GliderGun() { grid = new int[40][40]; grid[1][5] = 1; grid[1][6] = 1; grid[2][5] = 1; grid[2][6] = 1; grid[11][5] = 1; grid[11][6] = 1; grid[11][7] = 1; grid[12][...
Java
package example; import java.awt.Color; import framework.Visualization; public class VisualizationImpl2 implements Visualization { public VisualizationImpl2() { } @Override public Color getColor(int state) { if (state == 0) return Color.RED; else return Color.WHITE; } @Ov...
Java
package example; import framework.Automaton; public class AutomatonImpl implements Automaton { @Override public String getName() { return "Conway's Game of Life"; } @Override public int step(int[][] currentState, int row, int col) { //calculate the number of alive neighbors int numNeighbors = 0; for (...
Java
package example; import framework.Framework; public class Main { public static void main(String[] args){ Framework framework = Framework.getInstance(); framework.addVisualization(new VisualizationImpl()); framework.addVisualization(new VisualizationImpl2()); framework.setAutomaton(new AutomatonImpl()); f...
Java
import java.util.Scanner; import boundary.Hovedmenu; import boundary.IHovedmenu; import controller.Controller; import controller.IController; import entity.DALException; import entity.WeightApp; import functionality.IOperatoerDAO; import functionality.OperatoerDAO; public class Main { public static void main(Strin...
Java
package entity; @SuppressWarnings("serial") public class DALException extends Exception { public DALException(String txt){ super(txt); } }
Java
package entity; public interface IOperatoerDTO { /** * @return returnerer operatørs password */ public abstract String getPassword(); /** * Sætter operatørs password. * @param pass Password af typen String */ public abstract void setPassword(String pass); /** * Henter operatørs for- og efternavn ...
Java
package entity; import java.util.Scanner; public class WeightApp { private Scanner scan; public WeightApp(Scanner scan){ this.scan = scan; } public void run() { System.out.println("****************************"); System.out.println("WeightApp vrs. 0.1"); System.out.println("**************************...
Java
package entity; public class OperatoerDTO implements IOperatoerDTO{ private int oprId; private String oprForNavn, oprEfterNavn, ini, cpr, password; private boolean isActive; public OperatoerDTO(String forName, String efterName, String cpr, String ini, int oprId, String password, boolean isActive){ this.oprForN...
Java
package functionality; import java.util.ArrayList; import java.util.List; import java.util.Random; import entity.DALException; import entity.IOperatoerDTO; import entity.OperatoerDTO; public class OperatoerDAO implements IOperatoerDAO { private int oprID=11; List<IOperatoerDTO> oprList = new ArrayList<IOperatoerD...
Java
package functionality; import java.util.List; import entity.DALException; import entity.IOperatoerDTO; public interface IOperatoerDAO { /** * Returnerer operatør-objektet for det specifikke operatør ID der angives * @param oprId Operatør ID på den operatør man ønsker * @return Operatøren * @throws DALExcept...
Java
package boundary; import java.util.List; import entity.IOperatoerDTO; public interface IHovedmenu { /** * Viser startmenuen og beder brugeren foretage et valg * @return Brugerens valg */ int start(); /** * Viser operatør-administratorens menu * @return Administratorens valg */ int oprAdminMenu()...
Java
package boundary; import java.util.InputMismatchException; import java.util.List; import java.util.Scanner; import entity.IOperatoerDTO; public class Hovedmenu implements IHovedmenu { private Scanner scan; public Hovedmenu(Scanner scan){ this.scan = scan; } @Override public int start(){ System.out.printl...
Java
package controller; import entity.DALException; public interface IController { /** * Start() indeholder logikken til hovedmenuen (controller til hovedmenuen). */ public abstract void start() throws DALException; /** * oprAdminCon() indeholder logikken for hovedmenuens valg: "Operatør Administration". */ ...
Java
package controller; import java.io.BufferedWriter; import java.io.FileWriter; import java.io.IOException; import java.io.PrintWriter; import java.sql.Timestamp; import java.util.List; import boundary.IHovedmenu; import entity.DALException; import entity.IOperatoerDTO; import entity.WeightApp; import functionality.IOp...
Java
package br.com.fiap.dao; import java.util.List; import org.hibernate.Session; import br.com.fiap.entity.Cliente; import br.com.fiap.entity.ItemPedido; import br.com.fiap.entity.Pedido; import br.com.fiap.entity.Produto; public class DAO { @SuppressWarnings("unchecked") public List<Cliente> buscaCli...
Java
/* * Copyright (C) 2009 The Android Open Source Project * * 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 app...
Java
/* * Copyright (C) 2009 The Android Open Source Project * * 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 app...
Java
/* * Copyright (C) 2009 The Android Open Source Project * * 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 app...
Java
/* * Copyright (C) 2009 The Android Open Source Project * * 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 app...
Java
/* * Copyright (C) 2009 The Android Open Source Project * * 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 app...
Java
/* * Copyright (C) 2009 The Android Open Source Project * * 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 app...
Java
/* * Copyright (C) 2009 The Android Open Source Project * * 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 app...
Java
/* * Copyright (C) 2008 The Android Open Source Project * * 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 app...
Java
/* * Copyright (C) 2009 The Android Open Source Project * * 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 app...
Java
/* * Copyright (C) 2009 The Android Open Source Project * * 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 app...
Java
/* * Copyright (C) 2009 The Android Open Source Project * * 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 app...
Java
/* * Copyright (C) 2008 The Android Open Source Project * * 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 app...
Java
/* * Copyright (C) 2009 The Android Open Source Project * * 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 app...
Java
/* * Copyright (C) 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 agree...
Java
/* * Copyright (C) 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 agree...
Java
/* * Copyright (C) 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 agree...
Java
/* * Copyright (C) 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 agree...
Java
/* * Copyright (C) 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 agree...
Java
/* * Copyright (C) 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 agree...
Java
/* * Copyright (C) 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 agree...
Java
/* * Copyright (C) 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 agree...
Java
/* * Copyright (C) 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 agree...
Java
/* * Copyright (C) 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 agree...
Java
/* * Copyright (C) 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 agree...
Java
/* * Copyright (C) 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 agree...
Java
/* * Copyright (C) 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 agree...
Java
/* * Copyright (C) 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 ...
Java
/* * Copyright (C) 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 ...
Java
/* * Copyright (C) 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 agre...
Java
/* * Copyright (C) 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 ...
Java
/* * Copyright (C) 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 agre...
Java
/* * Copyright (C) 2008 The Android Open Source Project * * 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 app...
Java
/* * Copyright (C) 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 ...
Java
/* * Copyright (C) 2009 The Android Open Source Project * * 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 requir...
Java
package net.clc.bt; import net.clc.bt.Connection.OnConnectionLostListener; import net.clc.bt.Connection.OnConnectionServiceReadyListener; import net.clc.bt.Connection.OnIncomingConnectionListener; import net.clc.bt.Connection.OnMaxConnectionsReachedListener; import net.clc.bt.Connection.OnMessageReceivedListen...
Java
/* * Copyright (C) 2009 The Android Open Source Project * * 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 requir...
Java
/* * Copyright (C) 2009 The Android Open Source Project * * 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 requir...
Java
/* * Copyright (C) 2009 The Android Open Source Project * * 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 requir...
Java
/* * Copyright (C) 2009 The Android Open Source Project * * 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 requir...
Java
/* * Copyright (C) 2009 The Android Open Source Project * * 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 app...
Java
/* * Copyright (C) 2009 The Android Open Source Project * * 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 app...
Java
package net.clc.bt; import net.clc.bt.Connection.OnConnectionLostListener; import net.clc.bt.Connection.OnConnectionServiceReadyListener; import net.clc.bt.Connection.OnIncomingConnectionListener; import net.clc.bt.Connection.OnMaxConnectionsReachedListener; import net.clc.bt.Connection.OnMessageReceivedListen...
Java
/* * Copyright (C) 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 agree...
Java