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 scenes.TitleScene.GUI;
import graphics.NES;
import graphics.Sprite;
import java.awt.Graphics;
import scenes.HUD;
import scenes.TitleScene.System.IntroState;
import scenes.TitleScene.System.TitleSystem;
/**
* TitleGGUI
* @author nhydock
*
* TitleScreen is very basic with a select menu for starting a new
... | 300 |
github-java-corpus | 2,012 | package scenes.TitleScene.GUI;
import graphics.SWindow;
import graphics.Sprite;
import java.awt.Graphics;
import scenes.HUD;
/**
* TitleScreen
* @author nhydock
*
* Main title screen
*/
public class TitleScreen extends HUD {
Sprite background; //title screen background image
SWindow window; //window fram... | 253 |
github-java-corpus | 2,012 | package scenes;
import engine.Input;
/**
* GameState
* @author nhydock
*
* State class for systems to handle themselves
*/
public abstract class GameState {
protected GameSystem parent;
protected int index;
protected int minIndex = 0;
protected int maxIndex = Integer.MAX_VALUE;
/**
... | 435 |
github-java-corpus | 2,012 | package groups;
/**
* Formation.java
* @author Nicholas Hydock
*
* Description: A special form of ActorGroup that keeps track of
* enemy objects. It can create new enemies using
* just strings. It can also create multiple enemies
* at a time using an array of names.
*/
import graphics.Sprite;
... | 642 |
github-java-corpus | 2,012 | package groups;
/**
* Party.java
* @author Nicholas Hydock
*
* Description: A special form of ActorGroup that keeps track of
* player objects. It can create new players using
* just strings
*/
import java.io.File;
import java.io.IOException;
import java.util.prefs.BackingStoreException;
import java.... | 854 |
github-java-corpus | 2,012 | package groups;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import item.Item;
/**
* Inventory
* @author nhydock
*
* Group classing that holds items for a party or formation
* Inventory hold both items and currency
*/
public class Inventory extends HashMap<String, Byte>{
publ... | 969 |
github-java-corpus | 2,012 | package groups;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.prefs.BackingStoreException;
import org.ini4j.InvalidFileFormatException;
import actors.Actor;
/**
* ActorGroup
* @author nhydock
*
* @param ... | 385 |
github-java-corpus | 2,012 | package graphics;
import java.awt.Graphics;
import java.io.File;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.Scanner;
/**
* Animation
* @author nhydock
*
* Graphics class adapted from UlDunAd, it handles drawing of images to the screen
* in an automated sequence to show an ... | 1,437 |
github-java-corpus | 2,012 | package graphics;
/**
* NES
* @author nhydock
*
* NES Holds the core graphics components used throughout many of the
* HUD elements. This includes the arrow, window style, and various colours
*/
import java.awt.Color;
public class NES
{
public static final Color BLUE = Color.decode("#24188c");
public static f... | 193 |
github-java-corpus | 2,012 | package graphics;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.image.BufferedImage;
import scenes.Scene;
import core.GameRunner;
import engine.Engine;
import graphics.transitions.*;
/**
* ContentPanel
* @author nhydock
*
* Content Panel holds all the rendering code for drawing the
* graphi... | 1,077 |
github-java-corpus | 2,012 | package graphics;
import java.awt.AlphaComposite;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.image.BufferedImage;
/**
* Window
* @author nhydock
*
* Graphical frame that is designed to look like it's holding content
*/
public class SWindow... | 1,167 |
github-java-corpus | 2,012 | package graphics;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Rectangle;
import java.awt.geom.AffineTransform;
import java.awt.image.AffineTransformOp;
import java.awt.image.BufferedImage;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.HashMap;
import javax.imag... | 2,830 |
github-java-corpus | 2,012 | package graphics;
/**
* SFont.java
* @author nhydock
*
* SFont is an extended functionality wrapper to drawing strings in java's Graphics class.
* Too many times have I had to do silly math to right align things or get font to look like
* it's being rendered inside of a "window", so this was created to help h... | 3,031 |
github-java-corpus | 2,012 | package graphics.transitions;
import java.awt.Graphics;
public class IrisOut extends Iris {
@Override
protected int getDiameter()
{
return (int)(endRadius*timePercentage)*2;
}
@Override
public void paint(Graphics g)
{
if (irisG == null)
return;
diameter = getDiameter();
irisG.drawImage(buf... | 235 |
github-java-corpus | 2,012 | package graphics.transitions;
import graphics.NES;
import java.awt.Color;
import java.awt.Graphics;
/**
* HorizontalCurtain
* @author nhydock
*
* A curtain closing like transition that closes horizontally
*/
abstract public class HorizontalCurtain extends Transition {
Color c = NES.BLACK; //color to cut to
... | 161 |
github-java-corpus | 2,012 | package graphics.transitions;
import java.awt.Graphics;
/**
* HorizontalCurtainOut
* @author nhydock
*
* A curtain closing like transition that closes horizontally
*/
public class HorizontalCurtainOut extends HorizontalCurtain {
@Override
public void updateHeight() {
rHeight = (int)((HEIGHT/2.0)-((HEIGHT/2.... | 84 |
github-java-corpus | 2,012 | package graphics.transitions;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.image.BufferedImage;
abstract public class Iris extends Transition {
protected static Color clearColor = new Color(0,0,0,255);
protected int diameter = 1; //diameter of the circle
protected BufferedImage blackIris; //... | 264 |
github-java-corpus | 2,012 | package graphics.transitions;
import java.awt.Graphics;
import java.awt.image.BufferedImage;
import core.GameFrame;
import core.GameRunner;
/**
* Transition
* @author nhydock
*
* Abstract class for building different scene changing transition effects
* Depending on how you want to do things, you can alter a sav... | 560 |
github-java-corpus | 2,012 | package graphics.transitions;
import java.awt.Color;
public class FadeIn extends FadeToBlack {
@Override
protected Color getCurrentAlpha() {
int index = (int)(timePercentage*(alpha.length-1));
return alpha[index];
}
}
| 50 |
github-java-corpus | 2,012 | package graphics.transitions;
import java.awt.Graphics;
/**
* HorizontalCurtain
* @author nhydock
*
* A curtain closing like transition that closes horizontally
*/
public class HorizontalCurtainIn extends HorizontalCurtain {
@Override
public void updateHeight() {
rHeight = (int)((HEIGHT/2.0)*timePercentage)... | 76 |
github-java-corpus | 2,012 | package graphics.transitions;
import java.awt.Color;
public class FadeOut extends FadeToBlack {
@Override
protected Color getCurrentAlpha() {
int index = (alpha.length-1) - (int)(timePercentage*(alpha.length-1));
return alpha[index];
}
}
| 57 |
github-java-corpus | 2,012 | package graphics.transitions;
import java.awt.Color;
import java.awt.Graphics;
/**
* FadeToBlack
* @author nhydock
*
* Simple Fade to Black transition
*/
abstract public class FadeToBlack extends Transition{
protected static final Color[] alpha = {
new Color(0,0,0,0),
new Color(0,0,0,25),
new Color(0,... | 227 |
github-java-corpus | 2,012 | package graphics.transitions;
import java.awt.Graphics;
public class IrisIn extends Iris {
private int previousDia = endRadius;
@Override
protected int getDiameter()
{
return (int)(endRadius-endRadius*timePercentage)*2;
}
@Override
public boolean isDone()
{
if (super.isDone())
{
irisG.dispose()... | 306 |
github-java-corpus | 2,012 | package spell;
import java.io.File;
import java.io.IOException;
import java.util.HashMap;
import java.util.prefs.Preferences;
import org.ini4j.Ini;
import org.ini4j.IniPreferences;
import org.ini4j.InvalidFileFormatException;
import actors.Actor;
/**
* Spell.java
* @author nhydock
*
* Base class for Spell. Spe... | 1,421 |
github-java-corpus | 2,012 | package editor;
import java.io.File;
import java.io.FilenameFilter;
import javax.swing.JFrame;
import javax.swing.JTabbedPane;
import javax.swing.WindowConstants;
import editor.EnemyEditor.EnemyEditorGUI;
import editor.ItemEditor.ItemEditorGUI;
import editor.MapEditor.MapEditorGUI;
import editor.PassabilityEditor.Pa... | 1,107 |
github-java-corpus | 2,012 | package editor.PassabilityEditor;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.Rectangle;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.... | 1,784 |
github-java-corpus | 2,012 | package editor.PassabilityEditor;
import java.awt.Color;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.PrintWriter;
import ... | 924 |
github-java-corpus | 2,012 | package editor.ItemEditor;
import item.Item;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.io.File;
import java.io.FilenameFilter;
i... | 1,813 |
github-java-corpus | 2,012 | package editor.SpriteCreator;
import editor.ToolKit;
import graphics.Sprite;
/**
* Layer.java
* @author nhydock
*
* Layer class for the sprite creator of the tool kit.
*/
public class Layer extends Sprite{
int category;
int element;
/**
* Loads a layer by category and element
* @param c
* @param e
... | 279 |
github-java-corpus | 2,012 | package editor.SpriteCreator;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.image.BufferedImage;
import java.io.File;
import java.util.Vector;
import javax.imageio.ImageIO;
import javax.swing.JButton;
impo... | 3,172 |
github-java-corpus | 2,012 | package editor.SpriteCreator;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.DefaultComboBoxModel;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JComponent;
import ja... | 1,251 |
github-java-corpus | 2,012 | package editor.MapEditor;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.Rectangle;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.event.MouseMot... | 3,432 |
github-java-corpus | 2,012 | package editor.MapEditor;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JDialog;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import editor.ToolKit;
/**
* NewMapDialog
* @author nhydock
*
* Litt... | 402 |
github-java-corpus | 2,012 | package editor.MapEditor;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Vector;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JDialog;
import javax.swing.JLabel;
import javax.swing.JList;
import javax.swing.JScrollPane;
import actors.Enemy;
... | 920 |
github-java-corpus | 2,012 | package editor.MapEditor;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Vector;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JDialog;
import javax.swing.JLabel;
import javax.swing.JList;
import javax.swing.JScrollPane;
import javax.swing.JSpi... | 1,353 |
github-java-corpus | 2,012 | package editor.MapEditor;
import java.awt.Component;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JTextField;
/**
* NewMapDialog
* @author nhydock
*
* ... | 576 |
github-java-corpus | 2,012 | package editor.MapEditor;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.Rectangle;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.event.Mo... | 1,613 |
github-java-corpus | 2,012 | package editor.MapEditor;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.PrintWriter;
im... | 3,254 |
github-java-corpus | 2,012 | package editor.EnemyEditor;
import graphics.Sprite;
import item.Item;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import ... | 3,602 |
github-java-corpus | 2,012 | package editor.SpellEditor;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.io.File;
import java.io.FilenameFilter;
import java.util.Ve... | 3,277 |
github-java-corpus | 2,012 | package audio;
import java.io.File;
import javax.sound.sampled.AudioFormat;
import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.Clip;
import javax.sound.sampled.DataLine;
import javax.sound.sampled.Line;
/**
* SoundEffect
* @author nhydock
*
* Simple sou... | 491 |
github-java-corpus | 2,012 | package audio;
import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import javazoom.jl.decoder.JavaLayerException;
import javazoom.jl.player.advanced.AdvancedPlayer;
import javazoom.jl.player.advanced.PlaybackEvent;
import javazoom.jl.player.advan... | 1,298 |
github-java-corpus | 2,012 | package actors;
import graphics.Sprite;
import java.awt.Graphics;
import spell.Spell;
import commands.Command;
/**
* Actor.java
* @author Nicholas Hydock
*
* Description: Base actor class, keeps track of stats and other things
* for combatants. Actors are comparable on terms of their speed
* to de... | 2,375 |
github-java-corpus | 2,012 | package actors;
/**
* Enemy.java
* @author Nicholas Hydock
*
* Description: Computer controllable actors
*/
import graphics.Sprite;
import java.io.File;
import java.util.ArrayList;
import java.util.prefs.Preferences;
import org.ini4j.Ini;
import org.ini4j.IniPreferences;
public class Enemy extends Actor {
... | 975 |
github-java-corpus | 2,012 | package actors;
import engine.Engine;
import graphics.Sprite;
import item.Item;
import java.awt.Graphics;
import java.io.File;
import java.io.FileInputStream;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Scanner;
import java.util.prefs.Preferences;
import org.ini4j.Ini... | 6,028 |
github-java-corpus | 2,012 | package map;
import graphics.Sprite;
import groups.Formation;
import java.util.Formatter;
import java.util.List;
import java.util.Vector;
import java.util.prefs.BackingStoreException;
import java.util.prefs.Preferences;
import org.ini4j.Ini;
/**
* Terrain
* @author nhydock
*
* Terrains handle a lot for maps whe... | 848 |
github-java-corpus | 2,012 | package map;
import java.awt.Graphics;
import java.util.prefs.Preferences;
public class Event extends NPC{
public Event(Map m, Preferences node)
{
super(m, node);
map.removeNPC(x, y); //remove from npc list
map.putEvent(x, y, this);//add to event list
}
/**
* Events should not have an appearance
... | 96 |
github-java-corpus | 2,012 | package map;
import engine.Engine;
import graphics.Sprite;
import java.awt.Graphics;
import java.util.prefs.Preferences;
import scenes.ShopScene.System.Shop;
/**
* NPC
* @author nhydock
*
* Non playable characters
* All they are is a sprite on a map that is interactable with and
* can wander around.
*/
publi... | 2,016 |
github-java-corpus | 2,012 | package map;
import graphics.Sprite;
import java.awt.Graphics;
import java.io.FileInputStream;
import java.util.Scanner;
/**
* TileSet
* @author nhydock
*
* Special sprite class for tile set handling
*/
public class TileSet extends Sprite{
public final static int TILE_DIMENSION = 32; //drawn size
public fin... | 1,093 |
github-java-corpus | 2,012 | package map;
import graphics.ContentPanel;
import java.awt.Color;
import java.awt.Graphics;
import java.io.File;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
import java.util.prefs.BackingStoreException;
import java.util.prefs.Preferences;
import ... | 2,288 |
github-java-corpus | 2,012 | package engine;
import graphics.ContentPanel;
import graphics.Sprite;
import groups.Formation;
import groups.Party;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;
import java.util.prefs.BackingStoreException;
import java.util.prefs.Preferences;
import ma... | 2,270 |
github-java-corpus | 2,012 | package engine;
import java.awt.event.KeyEvent;
/**
* Input
* @author nhydock
*
* Helper file that contains final static variables
* to simplify looking at key input
*/
public abstract class Input {
//basic input keys
public final static int KEY_A = KeyEvent.VK_X;
public final static int KEY_B = KeyEvent... | 246 |
github-java-corpus | 2,012 | package com.nfc.utils;
import android.nfc.NdefMessage;
import android.nfc.NdefRecord;
import java.util.ArrayList;
import java.util.List;
/**
* Created by IntelliJ IDEA.
* User: ykkuumar
* Date: 1/3/11
* Time: 3:47 PM
* To change this template use File | Settings | File Templates.
*/
public class NdefMessagePar... | 214 |
github-java-corpus | 2,012 | package com.nfc.utils;
/**
* Created by IntelliJ IDEA.
* User: ykkuumar
* Date: 1/3/11
* Time: 3:49 PM
* To change this template use File | Settings | File Templates.
*/
public interface ParsedNdefRecord {
/**
* Returns a view to display this record.
*/
public String getText();
}
| 82 |
github-java-corpus | 2,012 | package com.nfc.utils;
import android.nfc.NdefRecord;
import com.google.common.base.Preconditions;
import java.io.UnsupportedEncodingException;
import java.util.Arrays;
/**
* Created by IntelliJ IDEA.
* User: ykkuumar
* Date: 1/3/11
* Time: 3:51 PM
* To change this template use File | Settings | File Templates.... | 583 |
github-java-corpus | 2,012 | package com.nfc.activities;
import android.app.Activity;
import android.content.Intent;
import android.nfc.FormatException;
import android.nfc.NdefMessage;
import android.nfc.NfcAdapter;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.Toa... | 831 |
github-java-corpus | 2,012 | package com.nfc.activities;
import android.app.Activity;
import android.content.SharedPreferences;
import android.nfc.NdefMessage;
import android.nfc.NdefRecord;
import android.nfc.NfcAdapter;
import android.nfc.Tag;
import android.nfc.tech.Ndef;
import android.os.Bundle;
import android.preference.PreferenceManager;
i... | 763 |
github-java-corpus | 2,012 | package com.nfc.activities;
import android.app.Activity;
import android.content.ContentValues;
import android.content.Intent;
import android.net.Uri;
import android.nfc.NdefMessage;
import android.nfc.NdefRecord;
import android.nfc.NfcAdapter;
import android.os.Bundle;
import android.os.Parcelable;
import android.util... | 672 |
github-java-corpus | 2,012 | package com.nfc.activities;
import android.app.Activity;
import android.content.Intent;
import android.nfc.NfcAdapter;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;
/**
* Created by IntelliJ IDEA.
* User: ykkuumar
* Date: 1/3/11
* Time: 7:07 PM
* T... | 287 |
github-java-corpus | 2,012 | package com.nfc.activities;
import android.app.Activity;
import android.content.Context;
import android.content.DialogInterface;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.preference.PreferenceActivity;
import android.preference.PreferenceManager;
import android.view.View;
impor... | 140 |
github-java-corpus | 2,012 | /**
* Copyright 2011 Shopzilla.com
*
* 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 ag... | 854 |
github-java-corpus | 2,012 | /*
* Copyright 2011 Shopzilla.com
*
* 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 ... | 357 |
github-java-corpus | 2,012 | /*
* Copyright 2011 Shopzilla.com
*
* 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 ... | 387 |
github-java-corpus | 2,012 | /*
* Copyright 2011 Shopzilla.com
*
* 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 ... | 178 |
github-java-corpus | 2,012 | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.shopzilla.api.client.model.response;
/**
*
* @author sachar
*/
public abstract class BaseResponse {
private String serviceUrl;
public String getServiceUrl() {
return serviceUrl;
}
... | 88 |
github-java-corpus | 2,012 | /**
* Copyright (C) 2004 - 2011 Shopzilla, Inc.
* All rights reserved. Unauthorized disclosure or distribution is prohibited.
*/
package com.shopzilla.api.client.model.response;
import com.shopzilla.api.client.model.MerchantInfo;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang... | 182 |
github-java-corpus | 2,012 | package com.shopzilla.api.client.model.response;
import com.shopzilla.api.client.model.Category;
import java.util.List;
/**
* @author Praveena Subrahmanyam
* @since 1/10/12
*/
public class CategoryResponse extends BaseResponse {
private List<Category> categories;
public List<Category> getCategories() {
... | 97 |
github-java-corpus | 2,012 | /**
* Copyright (C) 2004 - 2012 Shopzilla, Inc.
* All rights reserved. Unauthorized disclosure or distribution is prohibited.
*/
package com.shopzilla.api.client.model.response;
import java.util.ArrayList;
import java.util.List;
import com.shopzilla.api.client.model.Suggestion;
/**
*
* @author Tom Suthanurak... | 318 |
github-java-corpus | 2,012 | /**
* Copyright (C) 2004 - 2012 Shopzilla, Inc.
* All rights reserved. Unauthorized disclosure or distribution is prohibited.
*/
package com.shopzilla.api.client.model;
import java.util.List;
import org.apache.commons.lang.BooleanUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogF... | 568 |
github-java-corpus | 2,012 | /**
* Copyright 2012 Shopzilla.com
*
* 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 ag... | 624 |
github-java-corpus | 2,012 | /**
* Copyright 2011 Shopzilla.com
*
* 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 ag... | 265 |
github-java-corpus | 2,012 | /**
* Copyright (C) 2004 - 2012 Shopzilla, Inc.
* All rights reserved. Unauthorized disclosure or distribution is prohibited.
*/
package com.shopzilla.api.client.model;
/**
* Description of what the class is about
*
* @author Tom Suthanurak
*
* @since Jan 3, 2012
*/
public class Suggestion {
public sta... | 345 |
github-java-corpus | 2,012 | /**
* Copyright 2011 Shopzilla.com
*
* 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 ag... | 655 |
github-java-corpus | 2,012 | /**
* Copyright 2011 Shopzilla.com
*
* 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 ag... | 1,551 |
github-java-corpus | 2,012 | /**
* Copyright 2011 Shopzilla.com
*
* 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 ag... | 484 |
github-java-corpus | 2,012 | /**
* Copyright 2011 Shopzilla.com
*
* 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 ag... | 2,313 |
github-java-corpus | 2,012 | /**
* Copyright (C) 2004 - 2012 Shopzilla, Inc.
* All rights reserved. Unauthorized disclosure or distribution is prohibited.
*/
package com.shopzilla.api.client.model.request;
/**
* Description of what the class is about
*
* @author Tom Suthanurak
*
* @since Jan 3, 2012
*/
public class ClassificationReque... | 166 |
github-java-corpus | 2,012 | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.shopzilla.api.client.model.request;
/**
*
* @author sachar
*/
public enum EnumSortOrder {
prob_desc, name_asc, name_desc;
}
| 57 |
github-java-corpus | 2,012 | /**
* Copyright 2011 Shopzilla.com
*
* 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 ag... | 915 |
github-java-corpus | 2,012 | /*
* Copyright 2011 Shopzilla.com
*
* 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 ... | 2,294 |
github-java-corpus | 2,012 | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.shopzilla.api.client.model.request;
/**
*
* @author sachar
*/
public class CategorySearchRequest extends AbstractSearchRequest {
private String keyword;
private Long categoryId;
priv... | 287 |
github-java-corpus | 2,012 | /**
* Copyright (C) 2004 - 2011 Shopzilla, Inc.
* All rights reserved. Unauthorized disclosure or distribution is prohibited.
*/
package com.shopzilla.api.client.model.request;
/**
* Request class for Merchant service
*
* @author Emanuele Blanco
* @since 06/03/12
*/
public class MerchantRequest extends Abstr... | 123 |
github-java-corpus | 2,012 | /*
* Copyright 2011 Shopzilla.com
*
* 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 ... | 220 |
github-java-corpus | 2,012 | /**
* Copyright 2011 Shopzilla.com
*
* 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 ag... | 809 |
github-java-corpus | 2,012 | /**
* Copyright 2012 Shopzilla.com
*
* 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 ag... | 428 |
github-java-corpus | 2,012 | /**
* Copyright 2011 Shopzilla.com
*
* 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 ag... | 521 |
github-java-corpus | 2,012 | /**
* Copyright 2011 Shopzilla.com
*
* 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 ag... | 591 |
github-java-corpus | 2,012 | /**
* Copyright 2011 Shopzilla.com
*
* 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 ag... | 681 |
github-java-corpus | 2,012 | /**
* Copyright 2011 Shopzilla.com
*
* 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 ag... | 375 |
github-java-corpus | 2,012 | /**
* Copyright 2011 Shopzilla.com
*
* 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 ag... | 432 |
github-java-corpus | 2,012 | /**
* Copyright 2011 Shopzilla.com
*
* 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 ag... | 302 |
github-java-corpus | 2,012 | /**
* Copyright 2011 Shopzilla.com
*
* 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 ag... | 286 |
github-java-corpus | 2,012 | /**
* Copyright 2011 Shopzilla.com
*
* 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 ag... | 417 |
github-java-corpus | 2,012 | /*
* Copyright 2011 Shopzilla.com
*
* 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 ... | 461 |
github-java-corpus | 2,012 | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.shopzilla.api.client;
import com.shopzilla.api.client.model.request.CategorySearchRequest;
import com.shopzilla.services.catalog.TaxonomyResponse;
import org.springframework.beans.factory.annotation.Required... | 418 |
github-java-corpus | 2,012 | /**
* Copyright 2011 Shopzilla.com
*
* 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 ag... | 653 |
github-java-corpus | 2,012 | /**
* Copyright 2011 Shopzilla.com
*
* 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 ag... | 884 |
github-java-corpus | 2,012 | /**
* Copyright 2011 Shopzilla.com
*
* 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 ag... | 1,971 |
github-java-corpus | 2,012 | /**
* Copyright 2011 Shopzilla.com
*
* 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 ag... | 621 |
github-java-corpus | 2,012 | /**
* Copyright 2011 Shopzilla.com
*
* 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 ag... | 371 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.