code stringlengths 3 1.18M | language stringclasses 1
value |
|---|---|
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package desu.nya.DAO;
import desu.db.HibernateUtil;
import desu.nya.Owner;
import java.sql.SQLException;
import java.util.List;
import javax.swing.JOptionPane;
import org.hibernate.Session;
/**
*
* @author Fess
*/
p... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package desu.nya.DAO;
import desu.nya.Genre;
import java.sql.SQLException;
import java.util.List;
/**
*
* @author Fess
*/
public interface GenreDAO {
public void addGenre(Genre genre) throws SQLException;
pu... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package desu.nya.DAO;
import desu.db.HibernateUtil;
import desu.nya.Genre;
import java.sql.SQLException;
import java.util.List;
import javax.swing.JOptionPane;
import org.hibernate.Criteria;
import org.hibernate.Query;
... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package desu.nya.DAO;
import desu.nya.Cover;
import java.sql.SQLException;
import java.util.List;
import org.primefaces.model.StreamedContent;
/**
*
* @author Fess
*/
public interface CoverDAO {
public void addC... | Java |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package desu.db;
import desu.nya.*;
import desu.nya.DAO.AnimeFactory;
import java.io.Serializable;
import java.util.List;
/**
*
* @author Fess
*/
public class Anime_full implements Serializable{
private List<Alt... | Java |
package desu.db;
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
import org.hibernate.cfg.AnnotationConfiguration;
import org.hibernate.SessionFactory;
/**
* Hibernate Utility class with a convenient method to get Session Factory object.
*
* @author Fess
*/
pub... | Java |
package ferus.tigris.lines;
import ferus.tigris.lines.data.Config;
import ferus.tigris.lines.data.DB;
import android.os.Bundle;
import android.app.Activity;
import android.content.pm.ActivityInfo;
import android.util.DisplayMetrics;
import android.view.Menu;
import android.view.Window;
import android.view.WindowManage... | Java |
package ferus.tigris.lines.views;
import ferus.tigris.lines.GameView;
import ferus.tigris.lines.R;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Point;
import android.graphics.Rect;
public class BackgroundView implements AbstractView {
... | Java |
package ferus.tigris.lines.views;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Point;
import android.graphics.Rect;
public class LinearSprite implements AbstractView{
private int width;
private int height;
private int realWidth;
private Point position = new Point(0, 0);
... | Java |
package ferus.tigris.lines.views;
import java.util.Random;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.Point;
import android.graphics.Rect;
public class Sprite implements AbstractView{
private int width;
private int height;
private int rea... | Java |
package ferus.tigris.lines.views;
import java.util.ArrayList;
import java.util.Collections;
import ferus.tigris.lines.GameView;
import ferus.tigris.lines.Builders.ImagesPool;
import ferus.tigris.lines.data.DB;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Point;
import androi... | Java |
package ferus.tigris.lines.views;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
import android.graphics.Canvas;
import android.graphics.Point;
public class ComposeSprite implements AbstractView {
private List<LinearSprite> views = new ArrayList<LinearSprite>();
private int currentRow ... | Java |
package ferus.tigris.lines.views;
import ferus.tigris.lines.GameView;
import ferus.tigris.lines.Builders.ImagesPool;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Point;
import android.graphics.Rect;
public class NumberView implements AbstractView {
private Bitmap digitSpri... | Java |
package ferus.tigris.lines.views;
import ferus.tigris.lines.GameManager;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Point;
import android.graphics.Rect;
public class ButtonView implements AbstractView {
private Bitmap icon;
private int x;
private int y;
private Rect sr... | Java |
package ferus.tigris.lines.views;
import ferus.tigris.lines.GameManager;
import ferus.tigris.lines.Builders.ImagesPool;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Point;
public class CommonStatisticView implements AbstractView {
private GameManager gameManager;
Bitmap pr... | Java |
package ferus.tigris.lines.views;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.Point;
import android.graphics.Rect;
public class SimpleLinearSprite implements AbstractView{
private int width;
private int height;
private Point position = new ... | Java |
package ferus.tigris.lines.views;
import android.graphics.Canvas;
import android.graphics.Point;
public interface AbstractView {
void draw(Canvas canvas);
void setPosition(Point position);
void setRealSpriteWidth(int px);
}
| Java |
package ferus.tigris.lines.views;
import ferus.tigris.lines.GameView;
import android.graphics.Canvas;
public class StaticNumberView extends NumberView {
private int number;
public StaticNumberView(GameView view, int number) {
super(view);
this.number = number;
}
public void draw(Canvas canvas) {
draw(nu... | Java |
package ferus.tigris.lines.views;
import ferus.tigris.lines.GameView;
import ferus.tigris.lines.R;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Point;
import android.graphics.Rect;
public class SoundToggle implements AbstractView{
priv... | Java |
package ferus.tigris.lines.views;
import ferus.tigris.lines.GameView;
import ferus.tigris.lines.R;
import ferus.tigris.lines.Builders.ImagesPool;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.Point;
import a... | Java |
package ferus.tigris.lines.views;
import ferus.tigris.lines.GameManager;
import ferus.tigris.lines.GameView;
import ferus.tigris.lines.Builders.ImagesPool;
public class ShowResultsButton extends ButtonView{
GameView view;
public ShowResultsButton(GameView view) {
super(ImagesPool.instance(view).getShowTopButton(... | Java |
package ferus.tigris.lines;
import android.app.Application;
public class AnimalsLines extends Application {
}
| Java |
package ferus.tigris.lines;
import java.util.ArrayDeque;
import java.util.Deque;
import ferus.tigris.lines.views.NumberView;
import ferus.tigris.lines.views.ShowResultsButton;
import ferus.tigris.lines.views.TopResultsView;
import ferus.tigris.lines.personages.AbstractBehavior;
import ferus.tigris.lines.data.Config;
... | Java |
package ferus.tigris.lines.data;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
public class Config {
private SharedPreferences pref;
public Config(SharedPreferences pref) {
this.pref = pref;
Editor ed = pref.edit();
ed.putString("asd", "hello, world!");
ed.com... | Java |
package ferus.tigris.lines.data;
public class PersonageInfo {
public String name;
public int x;
public int y;
}
| Java |
package ferus.tigris.lines.data;
import java.util.ArrayList;
import java.util.List;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.util.Log;
public cl... | Java |
package ferus.tigris.lines.exceptions;
public class AbstractOpearationException extends Exception {
private static final long serialVersionUID = 1L;
}
| Java |
package ferus.tigris.lines.Builders;
import java.util.ArrayList;
import java.util.List;
import android.graphics.Bitmap;
import ferus.tigris.lines.GameView;
import ferus.tigris.lines.views.ComposeSprite;
import ferus.tigris.lines.views.LinearSprite;
import ferus.tigris.lines.personages.AbstractBehavior;
import ferus.t... | Java |
package ferus.tigris.lines.Builders;
import java.util.ArrayList;
import java.util.List;
import android.graphics.Bitmap;
import ferus.tigris.lines.GameView;
import ferus.tigris.lines.views.ComposeSprite;
import ferus.tigris.lines.views.LinearSprite;
import ferus.tigris.lines.personages.AbstractBehavior;
import ferus.t... | Java |
package ferus.tigris.lines.Builders;
import java.util.ArrayList;
import java.util.List;
import ferus.tigris.lines.GameView;
import ferus.tigris.lines.views.ComposeSprite;
import ferus.tigris.lines.views.LinearSprite;
import ferus.tigris.lines.personages.AbstractBehavior;
import ferus.tigris.lines.personages.Cat;
impo... | Java |
package ferus.tigris.lines.Builders;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
import android.graphics.Bitmap;
import ferus.tigris.lines.personages.AbstractBehavior;
import ferus.tigris.lines.personages.EmptyMark;
import ferus.tigris.lines.personages.Mark;
import ferus.tigris.lines.... | Java |
package ferus.tigris.lines.Builders;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import ferus.tigris.lines.GameView;
import ferus.tigris.lines.R;
public class ImagesPool {
public Bitmap bug1, bug2;
public Bitmap cat1, cat2, cat3;
public Bitmap mouse1;
public Bitmap bird1;
private Bitma... | Java |
package ferus.tigris.lines.Builders;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
import ferus.tigris.lines.GameView;
import ferus.tigris.lines.personages.AbstractBehavior;
public class BuilderWith8Builders extends AbstractBehaviorBuilder {
public AbstractBehavior createRandomMark(Ga... | Java |
package ferus.tigris.lines.Builders;
import java.util.ArrayList;
import java.util.List;
import android.graphics.Bitmap;
import ferus.tigris.lines.GameView;
import ferus.tigris.lines.views.ComposeSprite;
import ferus.tigris.lines.views.LinearSprite;
import ferus.tigris.lines.personages.AbstractBehavior;
import ferus.t... | Java |
package ferus.tigris.lines.Builders;
import java.util.ArrayList;
import java.util.List;
import android.graphics.Bitmap;
import ferus.tigris.lines.GameView;
import ferus.tigris.lines.views.ComposeSprite;
import ferus.tigris.lines.views.LinearSprite;
import ferus.tigris.lines.personages.AbstractBehavior;
import ferus.t... | Java |
package ferus.tigris.lines.Builders;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
import ferus.tigris.lines.GameView;
import ferus.tigris.lines.personages.AbstractBehavior;
public class BuilderWith7Builders extends AbstractBehaviorBuilder {
public AbstractBehavior createRandomMark(Ga... | Java |
package ferus.tigris.lines.Builders;
import java.util.ArrayList;
import java.util.List;
import android.graphics.Bitmap;
import ferus.tigris.lines.GameView;
import ferus.tigris.lines.views.ComposeSprite;
import ferus.tigris.lines.views.LinearSprite;
import ferus.tigris.lines.personages.AbstractBehavior;
import ferus.t... | Java |
package ferus.tigris.lines.Builders;
import java.util.ArrayList;
import java.util.List;
import android.graphics.Bitmap;
import ferus.tigris.lines.GameView;
import ferus.tigris.lines.views.ComposeSprite;
import ferus.tigris.lines.views.LinearSprite;
import ferus.tigris.lines.personages.AbstractBehavior;
import ferus.t... | Java |
package ferus.tigris.lines.Builders;
import java.util.ArrayList;
import java.util.List;
import android.graphics.Bitmap;
import ferus.tigris.lines.GameView;
import ferus.tigris.lines.personages.AbstractBehavior;
import ferus.tigris.lines.personages.Bird;
import ferus.tigris.lines.personages.KillerBehavior;
import feru... | Java |
package ferus.tigris.lines;
import android.graphics.Canvas;
public class GameDrawManager extends Thread {
static final long FPS = 10;
private GameView view;
private boolean running = false;
public GameDrawManager (GameView view) {
this.view = view;
}
public void setRunning(boolean run) {
running = run;
}... | Java |
package ferus.tigris.lines;
import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Deque;
import java.util.List;
import android.graphics.Point;
import ferus.tigris.lines.levels.LevelManager;
import ferus.tigris.lines.personages.AbstractBehavior;
import ferus.tigris.lines.data.DB;
import ferus.tigri... | Java |
package ferus.tigris.lines;
import java.util.ArrayList;
import java.util.List;
import java.util.Vector;
import ferus.tigris.lines.Builders.AbstractBehaviorBuilder;
import ferus.tigris.lines.personages.AbstractBehavior;
import android.graphics.Point;
public class Matrix {
private int columns = 6;
private int rows ... | Java |
package ferus.tigris.lines.levels;
import java.util.List;
import android.graphics.Point;
import ferus.tigris.lines.data.PersonageInfo;
import ferus.tigris.lines.personages.AbstractBehavior;
public interface AbstractLevel {
abstract public AbstractLevel nextLevel();
abstract public AbstractLevel clone();
abstract ... | Java |
package ferus.tigris.lines.levels;
import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Deque;
import java.util.List;
import android.graphics.Point;
import android.util.Log;
import ferus.tigris.lines.Builders.AbstractBehaviorBuilder;
import ferus.tigris.lines.Builders.BuilderWith7Builders;
import... | Java |
package ferus.tigris.lines.levels;
import java.util.List;
import android.graphics.Point;
import android.util.Log;
import ferus.tigris.lines.GameManager;
import ferus.tigris.lines.data.PersonageInfo;
import ferus.tigris.lines.personages.AbstractBehavior;
public class LevelManager {
private AbstractLevel level;
priv... | Java |
package ferus.tigris.lines.levels;
import java.util.Random;
import ferus.tigris.lines.GameManager;
import ferus.tigris.lines.Matrix;
import ferus.tigris.lines.Builders.AbstractBehaviorBuilder;
import ferus.tigris.lines.personages.AbstractBehavior;
public class LevelWithRandomInit extends StaticLevel {
private GameM... | Java |
package ferus.tigris.lines.levels;
import java.util.Random;
import ferus.tigris.lines.GameManager;
import ferus.tigris.lines.Matrix;
import ferus.tigris.lines.Builders.AbstractBehaviorBuilder;
import ferus.tigris.lines.personages.AbstractBehavior;
public class LevelWithNullInit extends StaticLevel {
private GameMan... | Java |
package ferus.tigris.lines.levels;
import java.util.Random;
import ferus.tigris.lines.GameManager;
import ferus.tigris.lines.Matrix;
import ferus.tigris.lines.Builders.AbstractBehaviorBuilder;
import ferus.tigris.lines.Builders.BuilderWith7Builders;
import ferus.tigris.lines.Builders.BuilderWith8Builders;
import feru... | Java |
package ferus.tigris.lines;
import android.app.Activity;
import android.content.Intent;
import android.content.pm.ActivityInfo;
import android.os.Bundle;
import android.view.View;
import android.view.Window;
import android.view.WindowManager;
public class StartMenuActivity extends Activity{
public void onCreate(Bu... | Java |
package ferus.tigris.lines.personages;
import android.graphics.Canvas;
import android.graphics.Point;
import ferus.tigris.lines.Matrix;
public class BehaviorDelegate implements AbstractBehavior, AbstractViewManager {
private BehaviorDelegate delegate = null;
private BehaviorDelegate parent = null;
public Behavio... | Java |
package ferus.tigris.lines.personages;
import ferus.tigris.lines.GameView;
public class Buggy extends Mark {
private GameView view;
public Buggy(BehaviorDelegate delegate, GameView gameView) {
super(delegate, gameView, gameView.gameField());
this.view = gameView;
}
protected void onPlaySound() {
view.so... | Java |
package ferus.tigris.lines.personages;
import ferus.tigris.lines.GameView;
public class Rabbit extends Mark {
private GameView view;
public Rabbit(BehaviorDelegate delegate, GameView gameView) {
super(delegate, gameView, gameView.gameField());
this.view = gameView;
}
protected void onPlaySound() {
view.... | Java |
package ferus.tigris.lines.personages;
import android.graphics.Canvas;
import android.graphics.Point;
import ferus.tigris.lines.Matrix;
public class NullMarkBehavior implements AbstractBehavior {
public void update() {}
public void draw(Canvas canvas) {}
public String getType() {
return getClass().toString();... | Java |
package ferus.tigris.lines.personages;
import android.graphics.Rect;
import ferus.tigris.lines.GameView;
public class Cat extends Mark {
private GameView view;
public Cat(BehaviorDelegate delegate, GameView gameView, Rect screen) {
super(delegate, gameView, screen);
this.view = gameView;
}
protected void ... | Java |
package ferus.tigris.lines.personages;
import android.graphics.Rect;
import ferus.tigris.lines.GameView;
public class Frog extends Mark {
private GameView view;
public Frog(BehaviorDelegate delegate, GameView gameView, Rect screen) {
super(delegate, gameView, screen);
this.view = gameView;
}
protected voi... | Java |
package ferus.tigris.lines.personages;
public class SelfKillerBehavior extends BehaviorDelegate {
private boolean die = false;
private int elWidth = 0;
private int speed = 15;
public SelfKillerBehavior(BehaviorDelegate b) {
super(b);
}
public void onUpdate() {
elWidth -= speed ;
if(elWidth <= 0)
die... | Java |
package ferus.tigris.lines.personages;
import java.util.ArrayList;
import java.util.List;
import ferus.tigris.lines.Matrix;
import android.graphics.Point;
public class FriendsFinder {
List<AbstractBehavior> friends = new ArrayList<AbstractBehavior>();
public FriendsFinder() {
super();
}
public List<Abstra... | Java |
package ferus.tigris.lines.personages;
import ferus.tigris.lines.Matrix;
import ferus.tigris.lines.views.Sprite;
import android.graphics.Point;
import android.graphics.Rect;
public class AdditionViewBehavior extends ViewsManager {
private Matrix matrix = new Matrix();
private int elWidth;
private Rect screen = new... | Java |
package ferus.tigris.lines.personages;
import android.graphics.Canvas;
import android.graphics.Point;
import ferus.tigris.lines.views.AbstractView;
public class ViewsManager extends BehaviorDelegate {
private AbstractView view;
public ViewsManager(BehaviorDelegate delegate, AbstractView view) {
super(delegate);
... | Java |
package ferus.tigris.lines.personages;
import ferus.tigris.lines.GameView;
public class Mouse extends Mark {
private GameView view;
public Mouse(BehaviorDelegate delegate, GameView gameView) {
super(delegate, gameView, gameView.gameField());
this.view = gameView;
}
protected void onPlaySound() {
view.so... | Java |
package ferus.tigris.lines.personages;
import ferus.tigris.lines.GameView;
import ferus.tigris.lines.Matrix;
import android.graphics.Point;
import android.graphics.Rect;
public class Mark extends BehaviorDelegate {
private int elWidth;
private int elHeight;
private Matrix matrix;
private Rect screen = new Rect()... | Java |
package ferus.tigris.lines.personages;
import ferus.tigris.lines.GameView;
public class Pig extends Mark {
GameView view;
public Pig(BehaviorDelegate delegate, GameView gameView) {
super(delegate, gameView, gameView.gameField());
view = gameView;
}
protected void onPlaySound() {
view.sounds().playPig();
... | Java |
package ferus.tigris.lines.personages;
import android.graphics.Point;
import ferus.tigris.lines.Matrix;
public class KillerWithEffectBehavior extends KillerBehavior {
private Matrix matrix = new Matrix();
private Point pos = new Point();
private boolean block = false;
public KillerWithEffectBehavior(BehaviorDel... | Java |
package ferus.tigris.lines.personages;
public interface AbstractViewManager {
void setViewSize(int elWidth);
void setViewCenter(int x, int y);
}
| Java |
package ferus.tigris.lines.personages;
import ferus.tigris.lines.Matrix;
import android.graphics.Canvas;
import android.graphics.Point;
public interface AbstractBehavior {
abstract public void update();
abstract public void draw(Canvas canvas);
public abstract String getType();
abstract public boolean isDied();... | Java |
package ferus.tigris.lines.personages;
import ferus.tigris.lines.GameView;
public class Bird extends Mark {
private GameView view;
public Bird(BehaviorDelegate delegate, GameView gameView) {
super(delegate, gameView, gameView.gameField());
this.view = gameView;
}
protected void onPlaySound() {
view.soun... | Java |
package ferus.tigris.lines.personages;
import ferus.tigris.lines.GameView;
public class EmptyMark extends Mark {
public EmptyMark(GameView gameView) {
super(null, gameView, gameView.gameField());
}
public boolean isDied() {
return true;
}
public void update() {
}
}
| Java |
package ferus.tigris.lines.personages;
import ferus.tigris.lines.GameView;
public class Bear extends Mark {
GameView view;
public Bear(BehaviorDelegate delegate, GameView gameView) {
super(delegate, gameView, gameView.gameField());
view = gameView;
}
protected void onPlaySound() {
view.sounds().playBear()... | Java |
package ferus.tigris.lines.personages;
public class KillerBehavior extends BehaviorDelegate {
private boolean die = false;
public KillerBehavior(BehaviorDelegate b) {
super(b);
}
public boolean dead() {
return die;
}
public void onKill() {
die = true;
}
}
| Java |
package ferus.tigris.lines;
import android.content.Context;
import android.media.AudioManager;
import android.media.SoundPool;
public class SoundManager {
private SoundPool sounds;
private int sPuk;
private boolean enabled = true;
private int sBird;
private int sRabbit;
private int sCat;
private int sFrog;
... | Java |
/** Automatically generated file. DO NOT MODIFY */
package ferus.tigris.lines;
public final class BuildConfig {
public final static boolean DEBUG = true;
} | Java |
/*
* Copyright 2013 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in... | Java |
/*
* Copyright 2013 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in... | Java |
/*
* Copyright (C) 2013 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 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in w... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in w... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in w... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in w... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in w... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in w... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in... | Java |
/** Automatically generated file. DO NOT MODIFY */
package com.google.android.gcm;
public final class BuildConfig {
public final static boolean DEBUG = true;
} | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in w... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in w... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in w... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in w... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in w... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in w... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in w... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in w... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in w... | Java |
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in w... | Java |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.