Source
stringclasses
1 value
Date
int32
2.01k
2.01k
Text
stringlengths
3
15.9M
Token_count
int32
1
2.44M
github-java-corpus
2,012
package model.item; import java.awt.Dimension; import java.awt.Rectangle; import org.json.JSONObject; import event.Event; import event.EventBus; import event.Event.Property; import model.CollidableObject; import model.character.Player; /** * A medical kit. * * @author Johan * @author jesperpersson */ public...
488
github-java-corpus
2,012
package model; /** * Position * * @author Johan * @deprecated Using java.awt.Point instead (2012-03-29) */ public class Position { private final int x; private final int y; public Position(final int x, final int y) { this.x = x; this.y = y; } public Position(final Position p) { this.x = p.x; this...
259
github-java-corpus
2,012
package model; /** * An enum describing directions. * * @author Johan * */ public enum Direction { NORTH(0, -1), EAST(1, 0), SOUTH(0, 1), WEST(-1, 0), NORTH_EAST(0.7071, -0.7071), SOUTH_EAST(0.7071, 0.7071), NORTH_WEST( -0.7071, -0.7071), SOUTH_WEST(-0.7071, 0.7071), ORIGIN(0, 0); private final double...
336
github-java-corpus
2,012
/** * The main domain model. * * Includes classes related to physical objects, such as Player, Enemy, and more. * <code>CollidableObject</code> is the super class which includes functionality * for collisions, positions, and other relevant behavior. * * <p>This package includes subpackages such as <code>model.item</cod...
93
github-java-corpus
2,012
package model; import java.awt.Dimension; import java.awt.Rectangle; /** * A concrete implementation of CollidableObject. * * @author Johan */ public class ConcreteCollidableObject extends CollidableObject { /** * Create a concrete implementation of <code>CollidableObject</code>. * * @param collBox The...
159
github-java-corpus
2,012
package model; import static tools.Logger.log; import java.awt.Point; import java.util.List; import java.util.Random; import java.util.concurrent.CopyOnWriteArrayList; import model.character.AbstractCharacter; import model.character.Enemy; import model.character.Player; import model.weapon.Grenade; import model.weap...
3,791
github-java-corpus
2,012
package model.character; import java.awt.Dimension; import java.awt.Point; import java.awt.Rectangle; import model.CollidableObject; import org.json.JSONObject; import event.Event; import event.Event.Property; import event.EventBus; /** * An enemy. * * @author Johan * @author jesperpersson */ public class Ene...
528
github-java-corpus
2,012
/** * Character classes. * * Contains character classes, and a super class <code>AbstractCharacter</code> which * provides health and damage handling and the <code>attack()</code> method. * */ package model.character;
52
github-java-corpus
2,012
package model.character; import java.awt.Dimension; import java.awt.Rectangle; import org.json.JSONObject; import static tools.Logger.log; import event.Event; import event.EventBus; import event.Event.Property; import model.Direction; import model.Entity; import model.weapon.AbstractWeapon; import model.weapon.Pr...
1,099
github-java-corpus
2,012
package model.character; import java.awt.Dimension; import java.awt.Rectangle; import org.json.JSONObject; import model.CollidableObject; import model.Entity; import model.weapon.*; /** * A player. Has a weapon belt (inventory). * * @author Johan */ public class Player extends AbstractCharacter { private Weap...
570
github-java-corpus
2,012
package tools.datamanagement; import java.util.prefs.*; /** * Loads User Preferences stored in host platform preferences storage. * * @author chrisnordqvist * */ public class PreferenceLoader { private static Preferences prefs = Preferences.userNodeForPackage(PreferenceLoader.class); /** * Gets float va...
327
github-java-corpus
2,012
package tools.datamanagement; import java.io.File; import java.io.IOException; import java.util.IdentityHashMap; import java.util.TreeMap; import javax.media.opengl.GLAutoDrawable; import javax.media.opengl.GLException; import com.jogamp.opengl.util.texture.Texture; import com.jogamp.opengl.util.texture.TextureIO; ...
528
github-java-corpus
2,012
package tools.datamanagement; import graphics.opengl.tilemap.TileMap; import graphics.opengl.tilemap.TileSheet; import graphics.tools.PixelCastingTool; import java.awt.image.BufferedImage; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import jav...
1,984
github-java-corpus
2,012
package tools.timer; import java.util.HashMap; import java.util.Map; /** * A class used for keeping track of a bunch of CounterObjecs used for measuring * time and performance. * * @author John Barbero Unenge * */ public class CounterTool { private static Map<String, CounterObject> counters = new HashMap<St...
190
github-java-corpus
2,012
package tools.timer; import static tools.Logger.*; /** * An object used for measuring time and performance. * * @author John Barbero Unenge * */ public class CounterObject { private String name; private int counter; private long startTime; private long timeSpent; /** * Creates a CounterObject with the...
407
github-java-corpus
2,012
package tools.timer; import java.awt.Color; import java.awt.Font; import java.awt.Graphics2D; import controller.AppController; import static tools.Logger.*; /** * GraphicalFPSMeter * * Add an instance of this class to the screen, and the current FPS will be * shown. * * @author Johan */ public class Graphi...
468
github-java-corpus
2,012
package tools.timer; import static tools.Logger.*; /** * A tool for measuring time spend between to points. * * @author John Barbero Unenge * */ public class TimerTool { private static String label; private static long startTime; /** * Start the time taking. * * @param probeName * A na...
238
github-java-corpus
2,012
/** * Tool and util classes. */ package tools;
12
github-java-corpus
2,012
package tools; import controller.AppController; /** * Logger class * * <p>Only logs messages to the system out if app is in debug mode</p> * * @author Johan */ public final class Logger { private static Logger instance; private static String logFormat = "H:m:s"; private Logger() { } public static void ...
382
github-java-corpus
2,012
package tools.factory; import java.util.Collection; import java.util.HashMap; import java.util.Map; import org.json.JSONObject; import tools.datamanagement.ResourceLoader; /** * A class used to package all resources used in one level. * * @author John Barbero Unenge and Johan Brook * */ public class Level { ...
445
github-java-corpus
2,012
package tools.factory; import graphics.opengl.GLScreen; import graphics.opengl.animation.Actor; import graphics.opengl.bitmapfont.GLBitmapFont; import graphics.opengl.core.Size; import graphics.opengl.tilemap.TileMap; import java.awt.Dimension; import java.awt.Point; import java.awt.Rectangle; import java.util.ArrayL...
4,848
github-java-corpus
2,012
package tools; /** * A helper class with some simple math related methods. * * @author John Barbero Unenge and Johan Brook * */ public class Math { /** * Fibonacci implementation (recursive). * * @param n * @return The Fibonacci number for n */ public static int fib(int n) { if (n == 1 || n == 0...
942
github-java-corpus
2,012
package graphics.json; import org.json.JSONObject; /** * An interface for serializing and deserialization to and from JSON. * * @author John Barbero Unenge * */ public interface JSONSerializable { /** * Generates a JSON object representing the JSONSerializable. * * @return A JSON object representing t...
118
github-java-corpus
2,012
/** * Graphic classes - the View. * * Includes all rendering and view related functionality. Uses OpenGL to render * the models and the tilemap. */ package graphics;
37
github-java-corpus
2,012
package graphics.tools; import java.awt.image.DataBuffer; import java.awt.image.DataBufferByte; import java.awt.image.DataBufferInt; import java.awt.image.Raster; /** * A helper class used for manipulating arrays of integers, such as pixels in * images. * * @author John Barbero Unenge * */ public class PixelC...
775
github-java-corpus
2,012
/** * ITaggable.java * * @author Johan */ package graphics; public interface ITaggable { /** * Get this object's bit tag. * * @return The tag */ public int getTag(); /** * Set this object's tag (a bit on a certain position). * * @param bit The bit * @param position The desired position */ p...
102
github-java-corpus
2,012
package graphics.opengl.core; /** * A light weight size class. * * @author John Barbero Unenge * */ public class Size { private float width; private float height; /** * Creates a size with the given width and height. * * The values have to be floating point values. * * @param width The width ...
301
github-java-corpus
2,012
package graphics.opengl.core; /** * A light weight rectangle class. * * @author John Barbero Unenge * */ public class Rectangle { private float x; private float y; private Size size; /** * Creates a rectangle. * * @param x * The x position of the rectangle. * @param y * ...
976
github-java-corpus
2,012
package graphics.opengl.core; import javax.media.opengl.GLAutoDrawable; /** * An interface used by anything that should be rendered using OpenGL. * * @author John Barbero Unenge * */ public interface GLRenderableObject { /** * Render the GLRenderableObject. * * @param object * The rectan...
207
github-java-corpus
2,012
package graphics.opengl.bitmapfont; import graphics.json.JSONSerializable; import graphics.opengl.core.GLRenderableObject; import graphics.opengl.core.Rectangle; import java.util.HashMap; import java.util.Map; import javax.media.opengl.GLAutoDrawable; import org.json.JSONArray; import org.json.JSONException; import...
1,188
github-java-corpus
2,012
package graphics.opengl.bitmapfont; import javax.media.opengl.GLAutoDrawable; import org.json.JSONException; import org.json.JSONObject; import tools.Logger; import graphics.json.JSONSerializable; import graphics.opengl.animation.Sprite; import graphics.opengl.core.GLRenderableObject; import graphics.opengl.core.Re...
608
github-java-corpus
2,012
package graphics.opengl; import graphics.opengl.animation.Actor; import graphics.opengl.core.GLRenderableObject; import graphics.opengl.core.Rectangle; import java.awt.Point; import javax.media.opengl.GL; import javax.media.opengl.GL2; import javax.media.opengl.GLAutoDrawable; /** * A class used for drawing on scr...
1,968
github-java-corpus
2,012
package graphics.opengl.animation; import graphics.json.JSONSerializable; import graphics.opengl.core.GLRenderableObject; import graphics.opengl.core.Rectangle; import java.util.IdentityHashMap; import java.util.LinkedList; import java.util.List; import java.util.Map; import java.util.TreeMap; import javax.media.ope...
2,940
github-java-corpus
2,012
package graphics.opengl.animation; import graphics.json.JSONSerializable; import graphics.opengl.core.GLRenderableObject; import graphics.opengl.core.Rectangle; import java.util.LinkedList; import java.util.List; import javax.media.opengl.GLAutoDrawable; import org.json.JSONArray; import org.json.JSONException; imp...
1,453
github-java-corpus
2,012
package graphics.opengl.animation; public interface AnimationListener { /** * Called when an animation is completed * @param value A value */ public void animationDoneAnimating(Object value); }
41
github-java-corpus
2,012
package graphics.opengl.animation; import graphics.json.JSONSerializable; import graphics.opengl.core.GLRenderableObject; import graphics.opengl.core.Rectangle; import javax.media.opengl.GL; import javax.media.opengl.GL2; import javax.media.opengl.GLAutoDrawable; import org.json.JSONException; import org.json.JSONOb...
1,867
github-java-corpus
2,012
package graphics.opengl.tilemap; import graphics.json.JSONSerializable; import graphics.opengl.animation.Sprite; import graphics.opengl.core.GLRenderableObject; import graphics.opengl.core.Rectangle; import javax.media.opengl.GLAutoDrawable; import org.json.JSONException; import org.json.JSONObject; /** * A class...
836
github-java-corpus
2,012
package graphics.opengl.tilemap; import graphics.opengl.core.GLRenderableObject; import graphics.opengl.core.Rectangle; import graphics.opengl.core.Size; import graphics.tools.PixelCastingTool; import java.util.Random; import javax.media.opengl.GLAutoDrawable; /** * A class used to represent a tilemap. * * It ...
1,765
github-java-corpus
2,012
package graphics.opengl.tilemap; import graphics.json.JSONSerializable; import java.util.Collection; import java.util.HashMap; import java.util.Map; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; /** * A class used to map a tiletype to a tile that can be rendered. * * @au...
686
github-java-corpus
2,012
package audio; import java.net.URL; import java.util.Collections; import java.util.HashMap; import java.util.Map; /** * Sound library for Frank the Tank * * @author chrisnordqvist * */ public class SoundLibrary { private final Map<String, URL> fxSoundLibrary = initializeFXSoundLibrary(); private final Map<...
942
github-java-corpus
2,012
/** * The sound engine. * */ package audio;
11
github-java-corpus
2,012
package audio; /** * Constants used by AudioController * * * @author chrisnordqvist * */ public class AudioConstants { public static final float zROLLOFF = 100; public static final float standardFXVolume = 0.8f; public static final float standardBGMVolume = 0.8f; }
75
github-java-corpus
2,012
package gui; import java.awt.Dimension; import java.awt.Toolkit; import javax.swing.JFrame; import javax.swing.JPanel; import controller.AudioController; /** * * Launcher for Frank the Tank * * * @author chrisnordqvist * */ public class Launcher extends JFrame { private static final long serialVersion...
347
github-java-corpus
2,012
package gui; import javax.swing.JPanel; import java.awt.Color; import java.awt.Dimension; import javax.swing.JCheckBox; import javax.swing.JSlider; import javax.swing.JLabel; import javax.swing.SwingConstants; import javax.swing.JButton; import java.awt.Font; import java.awt.event.ActionListener; import java.awt.eve...
1,706
github-java-corpus
2,012
/** * The GUI of the system. * * Includes a simple launcher with an options panel. */ package gui;
24
github-java-corpus
2,012
package gui; import java.awt.Color; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.Rectangle; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.ImageIcon; import javax.swing.JButton; import javax.swing.JPanel; import javax.swing.Timer; import controlle...
972
github-java-corpus
2,012
package controller; import java.awt.Cursor; import java.awt.Dimension; import java.awt.GraphicsEnvironment; import java.awt.event.KeyListener; import java.awt.image.BufferedImage; import java.util.IdentityHashMap; import java.util.LinkedList; import java.util.List; import java.util.Map; import javax.media.opengl.GL;...
2,888
github-java-corpus
2,012
package controller.navigation; import java.awt.event.KeyEvent; import java.awt.event.KeyListener; import java.util.HashMap; import java.util.Map; import model.Direction; import event.Event; import event.EventBus; import event.IEventHandler; import event.IMessageSender; import event.Event.Property; import event.Messa...
1,527
github-java-corpus
2,012
/** * Navigation related classes. * * Includes a <code>NavigationController</code> and supporting classes such as * <code>Key</code> and <code>NavigationKeyQueue</code>. */ package controller.navigation;
51
github-java-corpus
2,012
package controller.navigation; import java.util.ArrayList; import java.util.Collection; import java.util.Iterator; import java.util.LinkedList; import java.util.List; import model.Direction; /** * A unique list with a maximum size. * * @author Johan */ public class NavigationKeyQueue implements Collection<Navi...
996
github-java-corpus
2,012
package controller.navigation; import model.Direction; /** * Callable interface. * * @author Johan */ interface Callable { /** * "On" callback - called on trigger, i.e. on a keydown event for example. */ public void on(); /** * "Off" callback - called on untrigger, i.e. on a keyup event for example. ...
636
github-java-corpus
2,012
/** * Controller classes. * * Includes the logic for different parts of the system. */ package controller;
23
github-java-corpus
2,012
package controller.ai; import java.awt.Point; import java.util.List; import model.Direction; import model.character.Enemy; import model.weapon.Projectile; /** * Class for representing a player. Each AIPlayer will control one enemy. Keeps * track of shortest path between the two, current cooldown and how many updat...
899
github-java-corpus
2,012
/** * Classes for the artificial intelligence. * * For controlling the enemies and pathfinding. */ package controller.ai;
25
github-java-corpus
2,012
package controller.ai; import java.awt.Point; import java.util.List; import java.util.concurrent.CopyOnWriteArrayList; import model.Direction; import model.GameModel; import model.character.Enemy; import model.character.Player; import model.weapon.Projectile; import event.Event; import event.IEventHandler; import eve...
2,304
github-java-corpus
2,012
package controller.ai; import java.awt.Point; import java.util.ArrayList; import java.util.List; import tools.factory.ObjectFactory; /** * Class capable of finding a path between different spots on a matrice of * tiles. Keeps a logic representation of that matrice using AStarTiles. * * @author jesperpersson ...
3,125
github-java-corpus
2,012
package controller.ai; import java.util.ArrayList; import java.util.List; public class AStarTile { private double g, h; private boolean open, closed; private boolean solid; private int row, column; // The parent of this AStarTile is the tile before this one in the currently // considered path. private ASta...
1,149
github-java-corpus
2,012
/** * AppController.java * * @author Johan */ package controller; import java.awt.Dimension; import tools.factory.Level; import tools.factory.ObjectFactory; import static tools.Logger.*; import controller.ai.AIController; import controller.navigation.NavigationController; import event.Event; import event.Event....
961
github-java-corpus
2,012
package controller; import model.Entity; import model.IGameModel; import model.weapon.Melee; import model.weapon.Projectile; import paulscode.sound.SoundSystem; import paulscode.sound.SoundSystemConfig; import paulscode.sound.SoundSystemException; import paulscode.sound.codecs.CodecJOrbis; import paulscode.sound.codec...
2,123
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey; import android...
260
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.analytics; impo...
572
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.sms; import jav...
324
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.net; import jav...
3,799
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.net; /** * <p>...
18,597
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.net; import jav...
459
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.net; import jav...
378
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.net; import jav...
2,345
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.net; import jav...
340
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.net; import jav...
372
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.actions; import...
181
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.actions.location...
719
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.actions.location...
348
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.actions.location...
316
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.actions; import...
530
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.actions; import...
624
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.actions; import...
464
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.actions; import...
306
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.actions; import...
310
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.actions; import...
1,285
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.actions.observer...
517
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.actions.observer...
823
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.actions.observer...
713
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.actions.observer...
126
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.actions.observer...
603
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.actions; import...
652
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.actions; import...
344
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.actions; import...
450
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.actions.parser; ...
1,047
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.actions.parser; ...
452
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey; import android...
141
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ //package com.prey; // //import j...
1,929
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey; public class P...
369
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.exceptions; pu...
151
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.exceptions; pub...
74
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.exceptions; pub...
128
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.preferences; im...
267
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.preferences; im...
160
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.preferences; im...
677
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.preferences; im...
205
github-java-corpus
2,012
/******************************************************************************* * Created by Carlos Yaconi * Copyright 2012 Fork Ltd. All rights reserved. * License: GPLv3 * Full license at "/LICENSE" ******************************************************************************/ package com.prey.preferences; im...
166