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 com.googlecode.wicket.jquery.ui.samples.pages.kendo.combobox;
import java.util.Arrays;
import java.util.List;
import org.apache.wicket.IClusterable;
import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.markup.html.form.Form;
import org.apache.wicket.markup.html.panel.FeedbackPanel;
import... | 956 |
github-java-corpus | 2,012 | package com.googlecode.wicket.jquery.ui.samples.pages.wizard;
import java.util.Arrays;
import java.util.List;
import org.apache.wicket.ajax.AjaxEventBehavior;
import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.extensions.wizard.IWizardModel;
import org.apache.wicket.extensions.wizard.dynamic.Dy... | 2,417 |
github-java-corpus | 2,012 | package com.googlecode.wicket.jquery.ui.samples.pages.wizard;
import java.util.Arrays;
import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.extensions.wizard.StaticContentStep;
import org.apache.wicket.extensions.wizard.WizardModel;
import org.apache.wicket.extensions.wizard.WizardStep;
import or... | 1,075 |
github-java-corpus | 2,012 | package com.googlecode.wicket.jquery.ui.samples.pages.wizard;
import java.util.Arrays;
import java.util.List;
import com.googlecode.wicket.jquery.ui.samples.SamplePage;
import com.googlecode.wicket.jquery.ui.samples.pages.wizard.DefaultWizardPage;
abstract class AbstractWizardPage extends SamplePage
{
private stati... | 132 |
github-java-corpus | 2,012 | package com.googlecode.wicket.jquery.ui.samples;
import java.util.ArrayList;
import java.util.List;
import org.apache.wicket.Session;
import org.apache.wicket.protocol.http.WebSession;
import org.apache.wicket.request.Request;
import com.googlecode.wicket.jquery.ui.IJQuerySecurityProvider;
public class SampleSessio... | 310 |
github-java-corpus | 2,012 | package com.googlecode.wicket.jquery.ui.samples;
public class HomePage extends TemplatePage
{
private static final long serialVersionUID = 1L;
public HomePage()
{
super();
}
}
| 39 |
github-java-corpus | 2,012 | package embedded.jetty;
import org.apache.wicket.util.time.Duration;
import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.server.bio.SocketConnector;
import org.eclipse.jetty.server.ssl.SslSocketConnector;
import org.eclipse.jetty.util.resource.Resource;
import org.eclipse.jetty.util.ssl.SslContextFactory;... | 715 |
github-java-corpus | 2,012 | import org.apache.wicket.ajax.AjaxRequestTarget;
import com.googlecode.wicket.jquery.ui.widget.dialog.AbstractDialog;
import com.googlecode.wicket.jquery.ui.widget.dialog.DialogButton;
public class MyDialog extends AbstractDialog<String>
{
private static final long serialVersionUID = 1L;
public MyDialog(String id... | 96 |
github-java-corpus | 2,012 | import org.apache.wicket.Component;
import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.event.IEvent;
import org.apache.wicket.markup.html.basic.Label;
import com.googlecode.wicket.jquery.ui.IJQueryWidget;
import com.googlecode.wicket.jquery.ui.JQueryBehavior;
import com.googlecode.wicket.jquery.... | 471 |
github-java-corpus | 2,012 | package org.half.userinterface;
import org.powerbot.concurrent.strategy.Strategy;
import org.powerbot.game.api.methods.input.Mouse;
import org.powerbot.game.bot.event.listener.PaintListener;
import java.awt.*;
/**
* Draw a mouse trail and pointer.
* <p/>
* Note: The original code is from Deprecated (http://github... | 415 |
github-java-corpus | 2,012 | package org.half;
import org.half.dungeon.Avatar;
import org.half.dungeon.Dungeon;
import org.half.dungeon.doors.Door;
import org.half.dungeon.rooms.Room;
import org.half.dungeon.strategies.DungeonStart;
import org.half.dungeon.strategies.Lobby;
import org.half.dungeon.strategies.RoomMonitor;
import org.half.userinter... | 959 |
github-java-corpus | 2,012 | package org.half.dungeon.items;
public enum Key
{
BLUE_CORNER(0, "Blue corner"),
BLUE_CRESCENT(0, "Blue crescent"),
BLUE_DIAMOND(0, "Blue diamond"),
BLUE_PENTAGON(0, "Blue pentagon"),
BLUE_TRIANGLE(0, "Blue triangle"),
BLUE_RECTANGLE(0, "Blue rectangle"),
BLUE_SHIELD(0, "Blue shield"),
... | 912 |
github-java-corpus | 2,012 | package org.half.dungeon;
import org.half.dungeon.rooms.HomeRoom;
import org.half.dungeon.rooms.Room;
import org.powerbot.game.api.methods.Widgets;
import org.powerbot.game.api.wrappers.Tile;
import java.util.ArrayList;
/**
* Thread safe 'class' to hold some of the dungeon properties.
*/
public enum Dungeon
{
... | 532 |
github-java-corpus | 2,012 | package org.half.dungeon.skills;
public abstract class Skill
{
private final int _id;
private final String _name;
/**
* Creates a skill object from a known id and name.
*/
public Skill(int id, String name)
{
_id = id;
_name = name;
}
/**
* Gets the skill id.... | 121 |
github-java-corpus | 2,012 | package org.half.dungeon.strategies;
import org.half.utils.Misc;
import org.powerbot.concurrent.Task;
import org.powerbot.concurrent.strategy.Condition;
import org.powerbot.concurrent.strategy.Strategy;
import org.powerbot.game.api.methods.Widgets;
import org.powerbot.game.api.methods.input.Mouse;
import org.powerbot.... | 858 |
github-java-corpus | 2,012 | package org.half.dungeon.strategies;
import org.half.dungeon.Avatar;
import org.half.dungeon.Dungeon;
import org.half.dungeon.doors.Door;
import org.half.dungeon.rooms.Room;
import org.half.dungeon.rooms.RoomTile;
import org.powerbot.concurrent.Task;
import org.powerbot.concurrent.strategy.Strategy;
import org.powerbo... | 673 |
github-java-corpus | 2,012 | package org.half.dungeon.strategies;
import org.half.dungeon.Dungeon;
import org.powerbot.concurrent.Task;
import org.powerbot.concurrent.strategy.Strategy;
import org.powerbot.game.api.methods.node.SceneEntities;
import org.powerbot.game.api.wrappers.node.SceneObject;
public class DungeonStart extends Strategy imple... | 362 |
github-java-corpus | 2,012 | package org.half.dungeon;
import org.half.dungeon.rooms.Room;
import org.powerbot.game.api.methods.interactive.Players;
import org.powerbot.game.api.wrappers.Tile;
import org.powerbot.game.api.wrappers.interactive.Player;
/**
* Thread safe 'class' to hold some of the avatar properties.
*/
public enum Avatar
{
S... | 309 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
/**
* Frozen C6 = 2+2 statues
*
* RuneScape Wikia: http://runescape.wikia.com/wiki/Dungeoneering/Puzzles#Ten_statue_weapon
*/
public class MirrorStatueWeaponPuzzleRoom extends PuzzleRoom
{
protected MirrorStatueWeaponPuzzl... | 114 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
public class BossRoom extends Room
{
protected BossRoom(final Rectangle bounds, final Point coordinates, final Door[] doors)
{
super(bounds, coordinates, doors);
}
@Override
public String toString()
... | 83 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
public class RamokeeFamiliarsPuzzleRoom extends PuzzleRoom
{
protected RamokeeFamiliarsPuzzleRoom(final Rectangle bounds, final Point coordinates, final Door[] doors)
{
super(bounds, coordinates, doors);
}
}
| 78 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
public class SeekerSentinelPuzzleRoom extends PuzzleRoom
{
protected SeekerSentinelPuzzleRoom(final Rectangle bounds, final Point coordinates, final Door[] doors)
{
super(bounds, coordinates, doors);
}
}
| 72 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
public class PuzzleRoom extends Room
{
protected PuzzleRoom(final Rectangle bounds, final Point coordinates, final Door[] doors)
{
super(bounds, coordinates, doors);
}
@Override
public String toString(... | 84 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
public class PondskatersPuzzleRoom extends PuzzleRoom
{
protected PondskatersPuzzleRoom(final Rectangle bounds, final Point coordinates, final Door[] doors)
{
super(bounds, coordinates, doors);
}
}
| 70 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
public class ColouredFerretsPuzzleRoom extends PuzzleRoom
{
protected ColouredFerretsPuzzleRoom(final Rectangle bounds, final Point coordinates, final Door[] doors)
{
super(bounds, coordinates, doors);
}
}
| 74 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
public class CollapsingPuzzleRoom extends PuzzleRoom
{
protected CollapsingPuzzleRoom(final Rectangle bounds, final Point coordinates, final Door[] doors)
{
super(bounds, coordinates, doors);
}
}
| 70 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
public class FishingFerretPuzzleRoom extends PuzzleRoom
{
protected FishingFerretPuzzleRoom(final Rectangle bounds, final Point coordinates, final Door[] doors)
{
super(bounds, coordinates, doors);
}
}
| 72 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
public class FlipTilesPuzzleRoom extends PuzzleRoom
{
protected FlipTilesPuzzleRoom(final Rectangle bounds, final Point coordinates, final Door[] doors)
{
super(bounds, coordinates, doors);
}
}
| 68 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
public class FollowTheLeaderPuzzleRoom extends PuzzleRoom
{
protected FollowTheLeaderPuzzleRoom(final Rectangle bounds, final Point coordinates, final Door[] doors)
{
super(bounds, coordinates, doors);
}
}
| 70 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
public class HomeRoom extends Room
{
protected HomeRoom(final Rectangle bounds, final Point coordinates, final Door[] doors)
{
super(bounds, coordinates, doors);
}
@Override
public String toString()
... | 83 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.powerbot.game.api.methods.Game;
import org.powerbot.game.api.methods.Walking;
import org.powerbot.game.api.wrappers.Tile;
public class RoomTile extends Tile
{
public static final int FLAG_DUNGEON_BLOCK = 0x200000;
public static final int FLAG_WALL_NORTHWEST = 0x1;
... | 417 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
public class MagicalConstructPuzzleRoom extends PuzzleRoom
{
protected MagicalConstructPuzzleRoom(final Rectangle bounds, final Point coordinates, final Door[] doors)
{
super(bounds, coordinates, doors);
}
}
| 68 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
public class MercenaryLeaderPuzzleRoom extends PuzzleRoom
{
protected MercenaryLeaderPuzzleRoom(final Rectangle bounds, final Point coordinates, final Door[] doors)
{
super(bounds, coordinates, doors);
}
}
| 70 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
public class WinchBridgePuzzleRoom extends PuzzleRoom
{
protected WinchBridgePuzzleRoom(final Rectangle bounds, final Point coordinates, final Door[] doors)
{
super(bounds, coordinates, doors);
}
}
| 70 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
public class LeversPuzzleRoom extends PuzzleRoom
{
protected LeversPuzzleRoom(final Rectangle bounds, final Point coordinates, final Door[] doors)
{
super(bounds, coordinates, doors);
}
}
| 68 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
public class ToxinMazePuzzleRoom extends PuzzleRoom
{
protected ToxinMazePuzzleRoom(final Rectangle bounds, final Point coordinates, final Door[] doors)
{
super(bounds, coordinates, doors);
}
}
| 72 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
public class SlidingStatuesPuzzleRoom extends PuzzleRoom
{
protected SlidingStatuesPuzzleRoom(final Rectangle bounds, final Point coordinates, final Door[] doors)
{
super(bounds, coordinates, doors);
}
}
| 72 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
public class CrystalPuzzleRoom extends PuzzleRoom
{
protected CrystalPuzzleRoom(final Rectangle bounds, final Point coordinates, final Door[] doors)
{
super(bounds, coordinates, doors);
}
}
| 66 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.Dungeon;
import org.half.dungeon.doors.BossDoor;
import org.half.dungeon.doors.Door;
import org.half.dungeon.doors.PuzzleDoor;
import org.half.utils.Misc;
import org.powerbot.game.api.methods.node.SceneEntities;
import org.powerbot.game.api.wrappers.Area;
import ... | 1,494 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
public class MonolithPuzzleRoom extends PuzzleRoom
{
protected MonolithPuzzleRoom(final Rectangle bounds, final Point coordinates, final Door[] doors)
{
super(bounds, coordinates, doors);
}
}
| 68 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
public class SlidingTilesPuzzleRoom extends PuzzleRoom
{
protected SlidingTilesPuzzleRoom(final Rectangle bounds, final Point coordinates, final Door[] doors)
{
super(bounds, coordinates, doors);
}
}
| 70 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
public class LodestonePowerPuzzleRoom extends PuzzleRoom
{
protected LodestonePowerPuzzleRoom(final Rectangle bounds, final Point coordinates, final Door[] doors)
{
super(bounds, coordinates, doors);
}
}
| 70 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
public class SleepingGuardsPuzzleRoom extends PuzzleRoom
{
protected SleepingGuardsPuzzleRoom(final Rectangle bounds, final Point coordinates, final Door[] doors)
{
super(bounds, coordinates, doors);
}
}
| 70 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
public class GhostsPuzzleRoom extends PuzzleRoom
{
protected GhostsPuzzleRoom(final Rectangle bounds, final Point coordinates, final Door[] doors)
{
super(bounds, coordinates, doors);
}
}
| 68 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
public class IcyPressurePadPuzzleRoom extends PuzzleRoom
{
protected IcyPressurePadPuzzleRoom(final Rectangle bounds, final Point coordinates, final Door[] doors)
{
super(bounds, coordinates, doors);
}
}
| 72 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
public class SuspiciousGroovesPuzzleRoom extends PuzzleRoom
{
protected SuspiciousGroovesPuzzleRoom(final Rectangle bounds, final Point coordinates, final Door[] doors)
{
super(bounds, coordinates, doors);
}
}
| 72 |
github-java-corpus | 2,012 | package org.half.dungeon.rooms;
import org.half.dungeon.doors.Door;
import java.awt.*;
public class ThreeStatueWeaponPuzzleRoom extends PuzzleRoom
{
protected ThreeStatueWeaponPuzzleRoom(final Rectangle bounds, final Point coordinates, final Door[] doors)
{
super(bounds, coordinates, doors);
}
}
| 72 |
github-java-corpus | 2,012 | package org.half.dungeon.doors;
import org.powerbot.game.api.wrappers.node.SceneObject;
public class KeyDoor extends Door
{
public static final int OBJECT_DOOR_KEY_ORANGE_TRIANGLE_FROZEN = 50353;
public static final int OBJECT_DOOR_KEY_ORANGE_DIAMOND_FROZEN = 50354;
public static final int OBJECT_DOOR_KEY... | 2,794 |
github-java-corpus | 2,012 | package org.half.dungeon.doors;
import org.powerbot.game.api.wrappers.node.SceneObject;
public class GuardianDoor extends Door
{
public static final int OBJECT_DOOR_GUARDIAN_FROZEN = 50346;
public static final int OBJECT_DOOR_GUARDIAN_ABANDONED = 50346;
public static final int[] OBJECT_DOOR_GUARDIAN = {
... | 295 |
github-java-corpus | 2,012 | package org.half.dungeon.doors;
import org.powerbot.game.api.wrappers.node.SceneObject;
public class NormalDoor extends Door
{
public static final int OBJECT_DOOR_NORMAL_FROZEN = 50342;
public static final int OBJECT_DOOR_NORMAL_ABANDONED = 50343;
public static final int[] OBJECT_DOOR_NORMAL = {
... | 261 |
github-java-corpus | 2,012 | package org.half.dungeon.doors;
import org.powerbot.game.api.wrappers.node.SceneObject;
public class SkillDoor extends Door
{
public static final int OBJECT_DOOR_SKILL_BARRED_CLOSED_FROZEN = 50272;
public static final int OBJECT_DOOR_SKILL_BARRED_OPEN_FROZEN = 50275;
public static final int OBJECT_DOOR_S... | 561 |
github-java-corpus | 2,012 | package org.half.dungeon.doors;
import org.powerbot.game.api.wrappers.node.SceneObject;
public class BossDoor extends Door
{
public static final int OBJECT_DOOR_BOSS_FROZEN = 50350;
public static final int OBJECT_DOOR_BOSS_ABANDONED = 50351;
public static final int[] OBJECT_DOOR_BOSS = {
OBJEC... | 266 |
github-java-corpus | 2,012 | package org.half.dungeon.doors;
import org.half.dungeon.rooms.Room;
import org.half.utils.Misc;
import org.powerbot.game.api.wrappers.node.SceneObject;
import java.awt.*;
public abstract class Door
{
private static final Color COLOR_CLOSED = new Color(255, 0, 0, 192);
private static final Color COLOR_OPENED ... | 1,188 |
github-java-corpus | 2,012 | package org.half.dungeon.doors;
import org.powerbot.game.api.wrappers.node.SceneObject;
public class PuzzleDoor extends Door
{
public static final int OBJECT_DOOR_PUZZLE_ICY_PRESSURE_PAD_FROZEN = 49335;
public static final int OBJECT_DOOR_PUZZLE_SLIDING_STATUES_FROZEN = 49375;
public static final int OBJE... | 753 |
github-java-corpus | 2,012 | package org.half.utils;
import org.powerbot.concurrent.strategy.Condition;
import org.powerbot.game.api.methods.Calculations;
import org.powerbot.game.api.methods.Game;
import org.powerbot.game.api.methods.interactive.Players;
import org.powerbot.game.api.methods.widget.WidgetComposite;
import org.powerbot.game.api.ut... | 1,134 |
github-java-corpus | 2,012 | package com.test;
import java.io.IOException;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* Servlet i... | 200 |
github-java-corpus | 2,012 | package com.test;
import java.io.IOException;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* Servlet i... | 203 |
github-java-corpus | 2,012 | package com.test;
import java.io.IOException;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebInitParam;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servl... | 244 |
github-java-corpus | 2,012 | package com.test;
import java.io.IOException;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* Servlet i... | 196 |
github-java-corpus | 2,012 | // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
//
// TagSoup is licensed under the Apache License,
// Version 2.0. You may obtain a copy of this license at
// http://www.apache.org/licenses/LICENSE-2.0 . You may also have
// additional legal rights not granted by this license.
//
// TagSoup... | 2,347 |
github-java-corpus | 2,012 | // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
//
// TagSoup is licensed under the Apache License,
// Version 2.0. You may obtain a copy of this license at
// http://www.apache.org/licenses/LICENSE-2.0 . You may also have
// additional legal rights not granted by this license.
//
// TagSoup... | 528 |
github-java-corpus | 2,012 | // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
//
// TagSoup is licensed under the Apache License,
// Version 2.0. You may obtain a copy of this license at
// http://www.apache.org/licenses/LICENSE-2.0 . You may also have
// additional legal rights not granted by this license.
//
// TagSoup... | 1,904 |
github-java-corpus | 2,012 | // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
//
// TagSoup is licensed under the Apache License,
// Version 2.0. You may obtain a copy of this license at
// http://www.apache.org/licenses/LICENSE-2.0 . You may also have
// additional legal rights not granted by this license.
//
// TagSoup... | 330 |
github-java-corpus | 2,012 | // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
//
// TagSoup is licensed under the Apache License,
// Version 2.0. You may obtain a copy of this license at
// http://www.apache.org/licenses/LICENSE-2.0 . You may also have
// additional legal rights not granted by this license.
//
// TagSoup... | 317 |
github-java-corpus | 2,012 | // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
//
// TagSoup is licensed under the Apache License,
// Version 2.0. You may obtain a copy of this license at
// http://www.apache.org/licenses/LICENSE-2.0 . You may also have
// additional legal rights not granted by this license.
//
// TagSoup... | 9,595 |
github-java-corpus | 2,012 | // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
//
// TagSoup is licensed under the Apache License,
// Version 2.0. You may obtain a copy of this license at
// http://www.apache.org/licenses/LICENSE-2.0 . You may also have
// additional legal rights not granted by this license.
//
// TagSoup... | 1,196 |
github-java-corpus | 2,012 | // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
//
// TagSoup is licensed under the Apache License,
// Version 2.0. You may obtain a copy of this license at
// http://www.apache.org/licenses/LICENSE-2.0 . You may also have
// additional legal rights not granted by this license.
//
// TagSoup... | 706 |
github-java-corpus | 2,012 | // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
//
// TagSoup is licensed under the Apache License,
// Version 2.0. You may obtain a copy of this license at
// http://www.apache.org/licenses/LICENSE-2.0 . You may also have
// additional legal rights not granted by this license.
//
// TagSoup... | 799 |
github-java-corpus | 2,012 | // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
//
// TagSoup is licensed under the Apache License,
// Version 2.0. You may obtain a copy of this license at
// http://www.apache.org/licenses/LICENSE-2.0 . You may also have
// additional legal rights not granted by this license.
//
// TagSoup... | 460 |
github-java-corpus | 2,012 | // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
//
// TagSoup is licensed under the Apache License,
// Version 2.0. You may obtain a copy of this license at
// http://www.apache.org/licenses/LICENSE-2.0 . You may also have
// additional legal rights not granted by this license.
//
// TagSoup... | 1,207 |
github-java-corpus | 2,012 | // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
//
// TagSoup is licensed under the Apache License,
// Version 2.0. You may obtain a copy of this license at
// http://www.apache.org/licenses/LICENSE-2.0 . You may also have
// additional legal rights not granted by this license.
//
// TagSoup... | 981 |
github-java-corpus | 2,012 | // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
//
// TagSoup is licensed under the Apache License,
// Version 2.0. You may obtain a copy of this license at
// http://www.apache.org/licenses/LICENSE-2.0 . You may also have
// additional legal rights not granted by this license.
//
// TagSoup... | 685 |
github-java-corpus | 2,012 | // XMLWriter.java - serialize an XML document.
// Written by David Megginson, david@megginson.com
// and placed by him into the public domain.
// Extensively modified by John Cowan for TagSoup.
// TagSoup is licensed under the Apache License,
// Version 2.0. You may obtain a copy of this license at
// http://www.apach... | 4,263 |
github-java-corpus | 2,012 | // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
//
// TagSoup is licensed under the Apache License,
// Version 2.0. You may obtain a copy of this license at
// http://www.apache.org/licenses/LICENSE-2.0 . You may also have
// additional legal rights not granted by this license.
//
// TagSoup... | 1,079 |
github-java-corpus | 2,012 | // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
//
// TagSoup is licensed under the Apache License,
// Version 2.0. You may obtain a copy of this license at
// http://www.apache.org/licenses/LICENSE-2.0 . You may also have
// additional legal rights not granted by this license.
//
// TagSoup... | 6,856 |
github-java-corpus | 2,012 | // XMLWriter.java - serialize an XML document.
// Written by David Megginson, david@megginson.com
// and placed by him into the public domain.
// Extensively modified by John Cowan for TagSoup.
// TagSoup is licensed under the Apache License,
// Version 2.0. You may obtain a copy of this license at
// http://www.apach... | 10,864 |
github-java-corpus | 2,012 | // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
//
// TagSoup is licensed under the Apache License,
// Version 2.0. You may obtain a copy of this license at
// http://www.apache.org/licenses/LICENSE-2.0 . You may also have
// additional legal rights not granted by this license.
//
// TagSoup... | 38,763 |
github-java-corpus | 2,012 | // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
//
// TagSoup is licensed under the Apache License,
// Version 2.0. You may obtain a copy of this license at
// http://www.apache.org/licenses/LICENSE-2.0 . You may also have
// additional legal rights not granted by this license.
//
// TagSoup... | 1,559 |
github-java-corpus | 2,012 | package com.bukkit.gemo.FalseBook.IC.ICs.selftriggered;
import com.bukkit.gemo.FalseBook.IC.ICs.BaseChip;
import com.bukkit.gemo.FalseBook.IC.ICs.ICGroup;
import com.bukkit.gemo.FalseBook.IC.ICs.Lever;
import com.bukkit.gemo.FalseBook.IC.ICs.SelftriggeredBaseIC;
import com.bukkit.gemo.utils.ICUtils;
import java.util.R... | 494 |
github-java-corpus | 2,012 | package com.bukkit.gemo.FalseBook.IC.ICs.selftriggered;
import com.bukkit.gemo.FalseBook.IC.ICs.BaseChip;
import com.bukkit.gemo.FalseBook.IC.ICs.ICGroup;
import com.bukkit.gemo.FalseBook.IC.ICs.Lever;
import com.bukkit.gemo.FalseBook.IC.ICs.SelftriggeredBaseIC;
import java.util.Random;
import org.bukkit.event.block.S... | 278 |
github-java-corpus | 2,012 | package com.bukkit.gemo.FalseBook.IC.ICs.selftriggered;
import com.bukkit.gemo.FalseBook.IC.ICs.BaseChip;
import com.bukkit.gemo.FalseBook.IC.ICs.ICGroup;
import com.bukkit.gemo.FalseBook.IC.ICs.Lever;
import com.bukkit.gemo.FalseBook.IC.ICs.SelftriggeredBaseIC;
import org.bukkit.event.block.SignChangeEvent;
public c... | 300 |
github-java-corpus | 2,012 | package com.bukkit.gemo.FalseBook.IC.ICs.selftriggered;
import com.bukkit.gemo.FalseBook.IC.ICs.ExternalICPackage;
import com.bukkit.gemo.FalseBook.IC.ICs.ICUpgrade;
import com.bukkit.gemo.FalseBook.IC.ICs.ICUpgraderMC;
public class SelftriggeredPackage extends ExternalICPackage {
public SelftriggeredPackage() {... | 631 |
github-java-corpus | 2,012 | package com.bukkit.gemo.FalseBook.IC.ICs.selftriggered;
import com.bukkit.gemo.FalseBook.IC.ICs.BaseChip;
import com.bukkit.gemo.FalseBook.IC.ICs.ICGroup;
import com.bukkit.gemo.FalseBook.IC.ICs.Lever;
import com.bukkit.gemo.FalseBook.IC.ICs.SelftriggeredBaseIC;
import com.bukkit.gemo.utils.BlockUtils;
import com.bukk... | 757 |
github-java-corpus | 2,012 | package com.bukkit.gemo.FalseBook.IC.ICs.selftriggered;
import com.bukkit.gemo.FalseBook.IC.ICs.BaseChip;
import com.bukkit.gemo.FalseBook.IC.ICs.ICGroup;
import com.bukkit.gemo.FalseBook.IC.ICs.Lever;
import com.bukkit.gemo.FalseBook.IC.ICs.SelftriggeredBaseIC;
import com.bukkit.gemo.utils.SignUtils;
import org.bukki... | 686 |
github-java-corpus | 2,012 | package com.bukkit.gemo.FalseBook.IC.ICs.selftriggered;
import com.bukkit.gemo.FalseBook.IC.ICs.BaseChip;
import com.bukkit.gemo.FalseBook.IC.ICs.ICGroup;
import com.bukkit.gemo.FalseBook.IC.ICs.Lever;
import com.bukkit.gemo.FalseBook.IC.ICs.SelftriggeredBaseIC;
import org.bukkit.event.block.SignChangeEvent;
public c... | 304 |
github-java-corpus | 2,012 | package com.bukkit.gemo.FalseBook.IC.ICs.selftriggered;
import com.bukkit.gemo.FalseBook.IC.ICs.BaseChip;
import com.bukkit.gemo.FalseBook.IC.ICs.ICGroup;
import com.bukkit.gemo.FalseBook.IC.ICs.Lever;
import com.bukkit.gemo.FalseBook.IC.ICs.SelftriggeredBaseIC;
import com.bukkit.gemo.utils.SignUtils;
import org.bukki... | 516 |
github-java-corpus | 2,012 | package com.bukkit.gemo.FalseBook.IC.ICs.selftriggered;
import com.bukkit.gemo.FalseBook.IC.ICs.BaseChip;
import com.bukkit.gemo.FalseBook.IC.ICs.ICGroup;
import com.bukkit.gemo.FalseBook.IC.ICs.Lever;
import com.bukkit.gemo.FalseBook.IC.ICs.SelftriggeredBaseIC;
import com.bukkit.gemo.utils.BlockUtils;
import com.bukk... | 1,362 |
github-java-corpus | 2,012 | package com.bukkit.gemo.FalseBook.IC.ICs.selftriggered;
import com.bukkit.gemo.FalseBook.IC.ICs.BaseChip;
import com.bukkit.gemo.FalseBook.IC.ICs.ICGroup;
import com.bukkit.gemo.FalseBook.IC.ICs.SelftriggeredBaseIC;
import com.bukkit.gemo.utils.SignUtils;
import org.bukkit.ChatColor;
import org.bukkit.World;
import or... | 633 |
github-java-corpus | 2,012 | package com.bukkit.gemo.FalseBook.IC.ICs.selftriggered;
import com.bukkit.gemo.FalseBook.IC.ICs.BaseChip;
import com.bukkit.gemo.FalseBook.IC.ICs.ExternalICPackage;
import com.bukkit.gemo.FalseBook.IC.ICs.ICGroup;
import com.bukkit.gemo.FalseBook.IC.ICs.Lever;
import com.bukkit.gemo.FalseBook.IC.ICs.SelftriggeredBaseI... | 1,019 |
github-java-corpus | 2,012 | package com.bukkit.gemo.FalseBook.IC.ICs.selftriggered;
import com.bukkit.gemo.FalseBook.IC.ICs.BaseChip;
import com.bukkit.gemo.FalseBook.IC.ICs.ICGroup;
import com.bukkit.gemo.FalseBook.IC.ICs.Lever;
import com.bukkit.gemo.FalseBook.IC.ICs.SelftriggeredBaseIC;
import org.bukkit.event.block.SignChangeEvent;
public c... | 296 |
github-java-corpus | 2,012 | package com.bukkit.gemo.FalseBook.IC.ICs.selftriggered;
import com.bukkit.gemo.FalseBook.IC.ICs.BaseChip;
import com.bukkit.gemo.FalseBook.IC.ICs.ICGroup;
import com.bukkit.gemo.FalseBook.IC.ICs.Lever;
import com.bukkit.gemo.FalseBook.IC.ICs.SelftriggeredBaseIC;
import com.bukkit.gemo.utils.SignUtils;
import org.bukki... | 508 |
github-java-corpus | 2,012 | package com.bukkit.gemo.FalseBook.IC.ICs.selftriggered;
import com.bukkit.gemo.FalseBook.IC.ICs.BaseChip;
import com.bukkit.gemo.FalseBook.IC.ICs.ICGroup;
import com.bukkit.gemo.FalseBook.IC.ICs.Lever;
import com.bukkit.gemo.FalseBook.IC.ICs.SelftriggeredBaseIC;
import com.bukkit.gemo.utils.BlockUtils;
import com.bukk... | 1,089 |
github-java-corpus | 2,012 | package com.bukkit.gemo.FalseBook.IC.ICs.selftriggered;
import com.bukkit.gemo.FalseBook.IC.ICs.BaseChip;
import com.bukkit.gemo.FalseBook.IC.ICs.ICGroup;
import com.bukkit.gemo.FalseBook.IC.ICs.Lever;
import com.bukkit.gemo.FalseBook.IC.ICs.SelftriggeredBaseIC;
import com.bukkit.gemo.utils.ICUtils;
import com.bukkit.... | 716 |
github-java-corpus | 2,012 | package com.bukkit.gemo.FalseBook.IC.ICs.selftriggered;
import com.bukkit.gemo.FalseBook.IC.ICs.BaseChip;
import com.bukkit.gemo.FalseBook.IC.ICs.ICGroup;
import com.bukkit.gemo.FalseBook.IC.ICs.Lever;
import com.bukkit.gemo.FalseBook.IC.ICs.SelftriggeredBaseIC;
import com.bukkit.gemo.utils.BlockUtils;
import com.bukk... | 2,021 |
github-java-corpus | 2,012 | package com.bukkit.gemo.FalseBook.IC.ICs.selftriggered;
import com.bukkit.gemo.FalseBook.IC.ICs.BaseChip;
import com.bukkit.gemo.FalseBook.IC.ICs.ICGroup;
import com.bukkit.gemo.FalseBook.IC.ICs.SelftriggeredBaseIC;
import com.bukkit.gemo.utils.Parser;
import com.bukkit.gemo.utils.SignUtils;
import org.bukkit.ChatColo... | 410 |
github-java-corpus | 2,012 | package com.bukkit.gemo.FalseBook.IC.ICs.selftriggered;
import com.bukkit.gemo.FalseBook.IC.ICs.BaseChip;
import com.bukkit.gemo.FalseBook.IC.ICs.ICGroup;
import com.bukkit.gemo.FalseBook.IC.ICs.Lever;
import com.bukkit.gemo.FalseBook.IC.ICs.SelftriggeredBaseIC;
import com.bukkit.gemo.utils.SignUtils;
import org.bukki... | 525 |
github-java-corpus | 2,012 | package com.bukkit.gemo.FalseBook.IC.ICs.selftriggered;
import com.bukkit.gemo.FalseBook.IC.ICs.BaseChip;
import com.bukkit.gemo.FalseBook.IC.ICs.ICGroup;
import com.bukkit.gemo.FalseBook.IC.ICs.Lever;
import com.bukkit.gemo.FalseBook.IC.ICs.SelftriggeredBaseIC;
import com.bukkit.gemo.utils.SignUtils;
import org.bukki... | 526 |
github-java-corpus | 2,012 | package uk.ac.ed.inf.sdp2012.group7.simulator;
import java.awt.event.ActionListener;
import java.awt.image.BufferedImage;
import java.io.File;
import javax.imageio.ImageIO;
import org.apache.log4j.BasicConfigurator;
import org.apache.log4j.Level;
import org.apache.log4j.Logger;
import uk.ac.ed.inf.sdp2012.group7.vi... | 406 |
github-java-corpus | 2,012 | package uk.ac.ed.inf.sdp2012.group7.simulator;
import java.awt.Color;
import java.awt.Graphics2D;
import java.awt.geom.AffineTransform;
import java.awt.geom.Point2D;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.io.InputStream;
import java.net.Socket;
import net.phys2d.math.Vector2f;
im... | 1,232 |
github-java-corpus | 2,012 | package uk.ac.ed.inf.sdp2012.group7.simulator;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import javax.swing.JFrame;
import javax.swing.JLabel;
import net.phys2d.math.Vecto... | 1,364 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.