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 iryrwarosh.screens; import iryrwarosh.Creature; import iryrwarosh.World; import java.awt.event.KeyEvent; import asciiPanel.AsciiPanel; public class JumpScreen implements Screen { private Screen previous; private World world; private Creature player; public JumpScreen(Screen previous, World world, Crea...
397
github-java-corpus
2,012
package iryrwarosh.screens; import java.awt.event.KeyEvent; import asciiPanel.AsciiPanel; public class VictoryScreen implements Screen { private Screen previous; public VictoryScreen(Screen previous){ this.previous = previous; } @Override public void displayOutput(AsciiPanel terminal) { previous.display...
164
github-java-corpus
2,012
package iryrwarosh.screens; import iryrwarosh.Common; import iryrwarosh.Creature; import iryrwarosh.Factory; import iryrwarosh.Item; import iryrwarosh.MessageBus; import iryrwarosh.Point; import iryrwarosh.Tile; import iryrwarosh.World; import iryrwarosh.WorldCreated; import iryrwarosh.Worldgen; import java.awt.Color...
1,239
github-java-corpus
2,012
package iryrwarosh.screens; import iryrwarosh.Creature; import iryrwarosh.Item; import iryrwarosh.World; import java.awt.event.KeyEvent; import asciiPanel.AsciiPanel; public class PickupItemScreen implements Screen { private Screen previous; private World world; private Creature player; public PickupItemScree...
299
github-java-corpus
2,012
package iryrwarosh.screens; import java.awt.event.KeyEvent; import asciiPanel.AsciiPanel; public class LostScreen implements Screen { private Screen previous; public LostScreen(Screen previous){ this.previous = previous; } @Override public void displayOutput(AsciiPanel terminal) { previous.displayOutput...
166
github-java-corpus
2,012
package iryrwarosh.screens; import iryrwarosh.Common; import java.awt.event.KeyEvent; import asciiPanel.AsciiPanel; public class HelpScreen implements Screen { private Screen previous; private String[] lines; private int scroll; public HelpScreen(Screen previous){ this.previous = previous; this.lines =...
1,293
github-java-corpus
2,012
package iryrwarosh.screens; import iryrwarosh.Creature; import iryrwarosh.Item; import iryrwarosh.Tile; import iryrwarosh.World; import java.awt.event.KeyEvent; import asciiPanel.AsciiCharacterData; import asciiPanel.AsciiPanel; import asciiPanel.TileTransformer; public class LookAtScreen implements Screen { priva...
778
github-java-corpus
2,012
package iryrwarosh.screens; import iryrwarosh.Creature; import iryrwarosh.Point; import iryrwarosh.Projectile; import iryrwarosh.Tile; import iryrwarosh.Common; import iryrwarosh.World; import java.awt.event.KeyEvent; import asciiPanel.AsciiPanel; public class CastSpellScreen implements Screen { private Screen pre...
829
github-java-corpus
2,012
package iryrwarosh.screens; import java.awt.event.KeyEvent; import asciiPanel.AsciiPanel; public interface Screen { public void displayOutput(AsciiPanel terminal); public Screen respondToUserInput(KeyEvent key); }
46
github-java-corpus
2,012
package iryrwarosh.screens; import iryrwarosh.Point; import iryrwarosh.Tile; import iryrwarosh.WorldMap; import iryrwarosh.WorldScreen; import java.awt.event.KeyEvent; import asciiPanel.AsciiPanel; public class WorldMapScreen implements Screen { private Screen previous; private WorldMap map; private Point player...
1,158
github-java-corpus
2,012
package iryrwarosh.screens; import iryrwarosh.Creature; import iryrwarosh.World; import java.awt.event.KeyEvent; import asciiPanel.AsciiCharacterData; import asciiPanel.AsciiPanel; import asciiPanel.TileTransformer; public class SneakScreen implements Screen { private Screen previous; private World world; privat...
510
github-java-corpus
2,012
package iryrwarosh.screens; import iryrwarosh.Creature; import iryrwarosh.FameHandler; import iryrwarosh.GainedFame; import iryrwarosh.SaidOutLoud; import iryrwarosh.Trait; import iryrwarosh.Factory; import iryrwarosh.Handler; import iryrwarosh.Item; import iryrwarosh.Killed; import iryrwarosh.Message; import iryrwaro...
2,939
github-java-corpus
2,012
package iryrwarosh.screens; import iryrwarosh.MessageBus; import java.awt.event.KeyEvent; import asciiPanel.AsciiPanel; public class ConfirmationScreen implements Screen { private PlayScreen previous; private Screen next; private String confirmation; public ConfirmationScreen(PlayScreen previous, Screen next,...
189
github-java-corpus
2,012
package iryrwarosh.screens; import iryrwarosh.Creature; import iryrwarosh.World; import java.awt.event.KeyEvent; import asciiPanel.AsciiCharacterData; import asciiPanel.AsciiPanel; import asciiPanel.TileTransformer; public class DiveScreen implements Screen { private Screen previous; private World world; private...
533
github-java-corpus
2,012
package iryrwarosh; public class Evaded extends Message { public Creature attacker; public Creature evader; public Evaded(World world, Creature attacker, Creature evader){ super(world, addArticle("The", evader.name()) + " evaded " + addArticle("the", attacker.name())); this.attacker = attacker; this.evader ...
105
github-java-corpus
2,012
package iryrwarosh; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.List; public class Worldgen { private WorldScreen[][] cells; private Tile[][] tiles; private int screenWidth = 19; private int screenHeight = 9; private String dirs = "NSWE"; public Worldgen...
15,125
github-java-corpus
2,012
package iryrwarosh; import java.util.ArrayList; import java.util.List; public class World { private WorldMap map; private Tile[][] tiles; private List<Creature> creatures; public List<Creature> creatures() { return creatures; } private Item[][] items; private List<Item> itemList; private List<Projectile>...
1,678
github-java-corpus
2,012
package iryrwarosh; public class Pair<T,U> { public T first; public U second; public Pair(T first, U second){ this.first = first; this.second = second; } }
45
github-java-corpus
2,012
package iryrwarosh; public class ReducedEvasion extends Message { public Creature attacker; public Creature attacked; public ReducedEvasion(World world, Creature attacker, Creature attacked){ super(world, "The " + attacker.name() + "'s attack reduced the " + attacked.name() + "'s ability to evade"); this.atta...
105
github-java-corpus
2,012
package iryrwarosh; import iryrwarosh.screens.CastSpellScreen; import iryrwarosh.screens.DiveScreen; import iryrwarosh.screens.JumpScreen; import iryrwarosh.screens.Screen; import iryrwarosh.screens.SneakScreen; import iryrwarosh.screens.WorldMapScreen; import java.awt.Color; import java.util.ArrayList; import java.u...
8,560
github-java-corpus
2,012
package iryrwarosh; public class DroppedWeapon extends Message { public Creature creature; public Item weapon; public DroppedWeapon(World world, Creature creature, Item weapon){ super(world, addArticle("The", creature.name()) + " dropped " + weapon.name()); this.creature = creature; this.weapon = weapon; }...
91
github-java-corpus
2,012
package iryrwarosh; import java.util.Collections; import java.util.Comparator; import java.util.Hashtable; import java.util.List; public class FameHandler implements Handler { private Hashtable<Creature, Integer> fame; public FameHandler(){ fame = new Hashtable<Creature, Integer>(); } public List<Creature> ...
650
github-java-corpus
2,012
package iryrwarosh; public class ExploredNewBiome extends Message { public Creature creature; public ExploredNewBiome(World world, Creature creature, String text) { super(world, text); this.creature = creature; } @Override public boolean involves(Creature player) { return creature == player; } }
74
github-java-corpus
2,012
package iryrwarosh; import java.util.Arrays; import java.util.Collections; import java.util.List; public class Point { public int x; public int y; public Point(int x, int y){ this.x = x; this.y = y; } public Point copy() { return new Point(x, y); } public int distanceTo(Point other){ return Math....
273
github-java-corpus
2,012
package iryrwarosh; public class CallForHelp extends Message { public Creature attacked; public Creature attacker; public CallForHelp(World world, Creature attacked, Creature attacker){ super(world, addArticle("The", attacked.name()) + " calls for help"); this.attacked = attacked; this.attacker = attacker; ...
94
github-java-corpus
2,012
package iryrwarosh; import java.util.ArrayList; import java.util.List; public class MessageBus { private static List<Handler> handlers = new ArrayList<Handler>(); public static void publish(Message message){ for (Handler handler : handlers) handler.handle(message); } public static void subscribe(Handler...
94
github-java-corpus
2,012
package iryrwarosh; public class DeflectRanged extends Message { public Creature creature; public Projectile projectile; public DeflectRanged(World world, Creature creature, Projectile projectile) { super(world, addArticle("The", creature.name()) + " deflected the projectile"); this.creature = creature; thi...
94
github-java-corpus
2,012
package iryrwarosh; public class DiscoveredLostArtifact extends Message { public Creature creature; public Item item; public DiscoveredLostArtifact(World world, Creature creature, Item item) { super(world, addArticle("The", creature.name()) + " has discovered a lost treasure: " + item.name()); this.creature =...
97
github-java-corpus
2,012
package iryrwarosh; public class ExploredNewLocation extends Message { public Creature creature; public ExploredNewLocation(World world, Creature creature, String text) { super(world, text); this.creature = creature; } @Override public boolean involves(Creature player) { return false; } }
70
github-java-corpus
2,012
package iryrwarosh; import java.awt.Color; import java.util.ArrayList; import java.util.Collections; import java.util.List; import asciiPanel.AsciiPanel; public class Creature { public Point position; public Point homeScreenPosition; public Point lastMovedDirection = new Point(0,0); public Point lastMovedDirec...
4,618
github-java-corpus
2,012
package iryrwarosh; import java.awt.Color; public class Common { public static Color guiForeground = hsv(120, 5, 66); public static Color guiBackground = hsv(120, 5, 5); public static Color playScreenForeground = hsv(20, 33, 66); public static Color playScreenBackground = hsv(20, 30, 15); public static Colo...
124
github-java-corpus
2,012
package iryrwarosh; public class HitSpikes extends Message { public Creature attacker; public Creature attacked; public HitSpikes(World world, Creature attacker, Creature attacked){ super(world, addArticle("The", attacker.name()) + " bumped into " + addArticle("the", attacked.name()) + "'s spikes"); this.atta...
107
github-java-corpus
2,012
package iryrwarosh; public class WorldScreen { public static final int WALL = 0, TOP_LEFT = 1, CENTER = 2, BOTTOM_RIGHT = 3, WIDE = 4; public Tile defaultGround = Tile.GREEN_DIRT; public Tile defaultWall = Tile.GR...
163
github-java-corpus
2,012
package iryrwarosh; public class Poisoned extends Message { public Creature attacker; public Creature attacked; public Poisoned(World world, Creature attacker, Creature attacked){ super(world, "The " + attacker.name() + " poisoned the " + attacked.name()); this.attacker = attacker; this.attacked = attacked;...
94
github-java-corpus
2,012
package iryrwarosh; public class Note extends Message { public Creature creature; public Note(World world, Creature creature, String text){ super(world, text); this.creature = creature; } @Override public boolean involves(Creature player) { return creature == player; } }
64
github-java-corpus
2,012
package iryrwarosh; public class Moved extends Message { public Creature creature; public Moved(World world, Creature creature){ super(world, "The " + creature.name() + " moved"); this.creature = creature; } @Override public boolean involves(Creature player) { return creature == player; } }
70
github-java-corpus
2,012
package iryrwarosh; import java.awt.Color; import asciiPanel.AsciiPanel; public enum Tile { WHITE_WALL (' ', Common.hsv( 0, 0, 0), Common.hsv( 0, 0, 40), "wall"), WHITE_TILE1 (' ', Common.hsv( 0, 0, 0), Common.hsv( 0, 0, 8), "tile"), WHITE_TILE2 (' ', Common.hsv( 0, 0, 0), Common.hsv( 0, 0, 10), ...
2,209
github-java-corpus
2,012
package iryrwarosh; public interface Handler { void handle(Message message); }
16
github-java-corpus
2,012
package iryrwarosh; public enum Trait { WALKER("walker"), SWIMMER("swimmer"), FLIER("flier"), JUMPER("jumper"), EXTRA_HP("healty"), STRONG_ATTACK("strong"), EXTRA_EVADE("evasive"),EXTRA_DEFENSE("shelled"), DOUBLE_ATTACK("double attack"), DOUBLE_MOVE("double move"), SPIKED("spiked"), REGENERATES("regenerates"), POI...
295
github-java-corpus
2,012
package iryrwarosh; public class BumpedIntoObsticle extends Message { public Creature creature; public int x; public int y; public BumpedIntoObsticle(World world, Creature creature, int x, int y) { super(world, addArticle("The", creature.name()) + " bumped into the " + world.tile(x, y).description()); this.c...
118
github-java-corpus
2,012
package iryrwarosh; public class ItemSpecialsSaga implements Handler { @Override public void handle(Message message) { if (Attacked.class.isAssignableFrom(message.getClass())) onAttacked((Attacked)message); if (Evaded.class.isAssignableFrom(message.getClass())) onEvaded((Evaded)message); if (Moved....
563
github-java-corpus
2,012
package iryrwarosh; public class EquipedItem extends Message { public Creature creature; public Item item; public EquipedItem(World world, Creature creature, Item item){ super(world, addArticle("The", creature.name()) + " equipped " + item.name()); this.creature = creature; this.item = item; } @Override ...
91
github-java-corpus
2,012
package iryrwarosh; public class Jumped extends Message { public Creature creature; public Jumped(World world, Creature creature){ super(world, "The " + creature.name() + " jumped"); this.creature = creature; } @Override public boolean involves(Creature player) { return creature == player || player.canSe...
77
github-java-corpus
2,012
package iryrwarosh; public class Killed extends Message { public Creature attacker; public Creature attacked; public Killed(World world, Creature attacker, Creature attacked){ super(world, addArticle("The", attacker.name()) + " killed " + addArticle("the", attacked.name())); this.attacker = attacker; this.a...
97
github-java-corpus
2,012
package iryrwarosh; public class GainedFame extends Message { public Creature creature; public GainedFame(World world, Creature creature, String text) { super(world, text); this.creature = creature; } @Override public boolean involves(Creature player) { return true; } }
68
github-java-corpus
2,012
package iryrwarosh; public class ArmosSaga implements Handler { @Override public void handle(Message message) { if (BumpedIntoObsticle.class.isAssignableFrom(message.getClass())) handle((BumpedIntoObsticle)message); } public void handle(BumpedIntoObsticle message) { if (message.world.tile(message.x, messa...
245
github-java-corpus
2,012
package iryrwarosh; import iryrwarosh.screens.Screen; import java.awt.Color; import java.util.ArrayList; import java.util.List; public class Item { private int collectableValue; public int collectableValue() { return collectableValue; } public void collectableValue(int value) { collectableValue = value; } priva...
387
github-java-corpus
2,012
package iryrwarosh; import asciiPanel.AsciiPanel; public class LootSaga implements Handler { @Override public void handle(Message message) { if (Killed.class.isAssignableFrom(message.getClass())) handle((Killed)message); if (Moved.class.isAssignableFrom(message.getClass())) handle((Moved)message); ...
660
github-java-corpus
2,012
package iryrwarosh; public abstract class Message { public World world; private String text; public String text(){ return text; } public Message(World world, String text){ this.world = world; this.text = text; } abstract public boolean involves(Creature player); protected static String addArticle(Stri...
101
github-java-corpus
2,012
package iryrwarosh; public class DeflectedMelee extends Message { public Creature attacker; public Creature attacked; public DeflectedMelee(World world, Creature attacker, Creature attacked){ super(world, addArticle("The", attacked.name()) + " deflects the attack."); this.attacker = attacker; this.attacked ...
97
github-java-corpus
2,012
package iryrwarosh; import java.util.ArrayList; import java.util.Arrays; import java.util.List; public class RivalAi { private int[][] baseValue; protected List<Trait> scaryTraits; private double explorationPercent; private double talkativeness; public RivalAi(double explorationPercent, double talkativeness)...
2,100
github-java-corpus
2,012
package iryrwarosh; public class CreatureAiHandler implements Handler { @Override public void handle(Message message) { if (CallForHelp.class.isAssignableFrom(message.getClass())) handle((CallForHelp)message); if (Attacked.class.isAssignableFrom(message.getClass())) handle((Attacked)message); } publ...
175
github-java-corpus
2,012
package iryrwarosh; public class WorldCreated extends Message { public Creature player; public WorldCreated(World world, Creature player, String text) { super(world, text); this.player = player; } @Override public boolean involves(Creature player) { return false; } }
63
github-java-corpus
2,012
package iryrwarosh; public class Attacked extends Message { public Creature attacker; public Creature attacked; public Attacked(World world, Creature attacker, Creature attacked, String specialType){ super(world, addArticle("The", attacker.name()) + " attacked " + addArticle("the", attacked.name()) + (specialTy...
119
github-java-corpus
2,012
package iryrwarosh; import java.applet.Applet; import java.awt.event.KeyEvent; import java.awt.event.KeyListener; import asciiPanel.AsciiPanel; public class AppletMain extends Applet implements KeyListener { private static final long serialVersionUID = 1L; private AsciiPanel terminal; private iryrwarosh.screens...
238
github-java-corpus
2,012
package iryrwarosh; import iryrwarosh.screens.StartScreen; import java.awt.event.KeyEvent; import java.awt.event.KeyListener; import javax.swing.JFrame; import asciiPanel.AsciiPanel; public class ApplicationMain extends JFrame implements KeyListener { private static final long serialVersionUID = 1L; private As...
253
github-java-corpus
2,012
package iryrwarosh; import java.awt.Color; public class Projectile { public Point position; public Point velocity; private Creature origin; private boolean isDone; public boolean isDone() { return isDone; } private String name; public String name() { return name; } private char glyph; public char glyph(...
398
github-java-corpus
2,012
package iryrwarosh; import java.util.ArrayList; import java.util.List; public class WorldMap { private WorldScreen[][] screens; private int[][] exploration; public int width() { return screens.length; } public int height() { return screens[0].length; } public WorldMap(WorldScreen[][] screens){ this.screens...
560
github-java-corpus
2,012
package iryrwarosh; public class BlockSomeDamage extends Message { public Creature creature; public Creature attacker; public Item armor; public BlockSomeDamage(World world, Creature attacker, Creature creature, Item armor) { super(world, addArticle("The", (armor != null ? armor.name() : creature.name())) + " ...
119
github-java-corpus
2,012
package iryrwarosh; public class Unhid extends Message { public Creature creature; public Unhid(World world, Creature creature){ super(world, "The " + creature.name() + " came out of the " + world.tile(creature.position.x, creature.position.y).description() + "."); this.creature = creature; } @Override pu...
97
github-java-corpus
2,012
package iryrwarosh; public class Hid extends Message { public Creature creature; public Hid(World world, Creature creature){ super(world, "The " + creature.name() + " hid in the " + world.tile(creature.position.x, creature.position.y).description() + "."); this.creature = creature; } @Override public bool...
96
github-java-corpus
2,012
package iryrwarosh; import java.util.ArrayList; import java.util.Hashtable; import java.util.List; public class MapExplorationHandler implements Handler { private Hashtable<Creature, boolean[][]> exploration; private Hashtable<Creature, List<Tile>> biomes; public MapExplorationHandler(){ exploration = new Hash...
479
github-java-corpus
2,012
/* * Copyright 2011 fest-assert-goodies Committers * * 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 applicab...
204
github-java-corpus
2,012
/* * Copyright 2011 fest-assert-goodies Committers * * 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 applicab...
295
github-java-corpus
2,012
package org.festassertgoodies; import static org.fest.assertions.Assertions.assertThat; import java.util.List; import org.fest.assertions.AssertExtension; import org.festassertgoodies.DeepEqual; /** * To override the DeepEqual object. */ public class DeepListEqual implements AssertExtension { /** The actual. */...
235
github-java-corpus
2,012
/* * Copyright 2011 fest-assert-goodies Committers * * 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 applicab...
431
github-java-corpus
2,012
/* * Copyright 2011 fest-assert-goodies Committers * * 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 applicab...
413
github-java-corpus
2,012
package org.festassertgoodies; /* * Copyright 2011 fest-assert-goodies Committers * * 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 ...
807
github-java-corpus
2,012
/* * Copyright 2011 fest-assert-goodies Committers * * 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 applicab...
417
github-java-corpus
2,012
package org.jboss.forge.spec.spring.mvc.impl; import java.io.InputStream; import java.util.ArrayList; import java.util.Arrays; import java.util.LinkedList; import java.util.List; import java.util.Queue; import java.util.regex.Matcher; import javax.inject.Inject; import org.jboss.forge.parser.xml.Node; import org.jbo...
3,268
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the ...
5,016
github-java-corpus
2,012
package org.jboss.forge.spec.spring.mvc; import java.util.List; import org.jboss.forge.project.Facet; import org.jboss.forge.resources.FileResource; import org.jboss.forge.resources.Resource; import org.jboss.forge.project.Project; /** * If installed, this {@link Project} supports features from Spring MVC. * * @...
771
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the ...
384
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the ...
638
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms ...
387
github-java-corpus
2,012
package org.jboss.forge.scaffold.spring.metawidget.inspectionresultprocessor; import static org.metawidget.inspector.InspectionResultConstants.TRUE; import java.util.Map; import org.metawidget.inspectionresultprocessor.impl.BaseInspectionResultProcessor; import org.metawidget.statically.StaticXmlWidget; public clas...
130
github-java-corpus
2,012
package org.jboss.forge.scaffold.spring.metawidget.widgetprocessor; import static org.metawidget.inspector.InspectionResultConstants.*; import static org.jboss.forge.scaffold.spring.metawidget.inspector.ForgeInspectionResultConstants.*; import java.util.Map; import org.metawidget.statically.StaticXmlWidget; import o...
257
github-java-corpus
2,012
//Metawidget // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the ho...
762
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms ...
434
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms ...
4,323
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms ...
638
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms ...
896
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the ...
651
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the ...
563
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms ...
469
github-java-corpus
2,012
// Metawidget // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the h...
257
github-java-corpus
2,012
package org.jboss.forge.scaffold.spring.metawidget.widgetbuilder; import static org.metawidget.inspector.InspectionResultConstants.*; import java.util.Collection; import java.util.Map; import org.metawidget.statically.StaticXmlMetawidget; import org.metawidget.statically.StaticXmlStub; import org.metawidget.staticall...
326
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the ...
2,381
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the ...
1,268
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the ...
362
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the ...
496
github-java-corpus
2,012
// Metawidget // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the h...
1,058
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms ...
534
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the ...
9,474
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2011, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the ...
575
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2010, Red Hat, Inc. and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the G...
1,776
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2010, Red Hat, Inc. and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the G...
760
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2010, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms ...
1,121
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2010, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the ...
432
github-java-corpus
2,012
/* * JBoss, Home of Professional Open Source * Copyright 2010, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the ...
416