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 assertion; import static org.fest.assertions.Assertions.assertThat; import junit.framework.Assert; import models.Race; import org.fest.assertions.GenericAssert; public class RaceAssert extends GenericAssert<RaceAssert, Race> { protected RaceAssert(Race actual) { super(RaceAssert.class, actual); } publ...
128
github-java-corpus
2,012
package functional; import litmus.functional.FunctionalTest; import org.junit.Test; public class HomePageTest extends FunctionalTest { @Test public void homepageIsAccessible(){ assertThat(get("/")).isHtml().isOk(); } }
48
github-java-corpus
2,012
package functional; import litmus.functional.FunctionalTest; import org.junit.Test; public class SecurityFunctionalTest extends FunctionalTest { @Test public void loginPageIsAccessible(){ assertThat(get("/auth/login")).isHtml().isOk(); } }
52
github-java-corpus
2,012
package functional; import models.Horse; import models.HorseBuilder; import models.stable.Box; import org.junit.Test; import static models.RaceBuilder.aRace; import static models.stable.BoxBuilder.aBox; public class DashboardTest extends HoldYourHorsesFunctionalTest { @Test public void whenNotLoggedInICannotSeeTh...
213
github-java-corpus
2,012
package functional; import litmus.functional.Html; import models.Horse; import models.HorseBuilder; import models.stable.Box; import models.stable.BoxBuilder; import models.stock.Food; import org.junit.Test; public class HorseDetailsFunctionalTest extends HoldYourHorsesFunctionalTest { @Test public void statsAreS...
300
github-java-corpus
2,012
package functional; import litmus.functional.FunctionalTest; import litmus.functional.Request; import litmus.functional.Response; import models.PlayerBuilder; public abstract class HoldYourHorsesFunctionalTest extends FunctionalTest { @Override protected Response login(String username, String password) { ...
118
github-java-corpus
2,012
package functional; import litmus.functional.FunctionalTest; import litmus.functional.Request; import litmus.functional.Response; import org.junit.Test; public class SignupFunctionalTest extends FunctionalTest { @Test public void signupPageIsAccessible(){ assertThat(get("/auth/signup")).isHtml().isO...
121
github-java-corpus
2,012
package domainservices; import models.*; import org.fest.assertions.Assertions; import org.junit.Before; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; public class RandomHorsesBreederIntegrationTest extends IntegrationTest { @Rule public ExpectedException expectedException...
356
github-java-corpus
2,012
package domainservices; import org.junit.rules.ExternalResource; import org.mockito.Mockito; public class ServiceMocker extends ExternalResource { private RandomHorsesBreeder originalRandomHorsesBreeder; public static ServiceMocker create() { return new ServiceMocker(); } @Override protected void before()...
146
github-java-corpus
2,012
package util; import play.db.jpa.Model; public abstract class AbstractBuilder<T extends Model> { public abstract T build(); public T save() { return build().save(); } }
38
github-java-corpus
2,012
package jobs; import models.Horse; import models.stable.Box; import models.stable.BoxBuilder; import play.jobs.Job; import play.jobs.OnApplicationStart; import static models.HorseBuilder.aHorse; import static models.PlayerBuilder.aPlayer; import static models.RaceBuilder.aRace; import static play.Play.mode; @OnAppli...
294
github-java-corpus
2,012
package jobs; import assertion.HoldYourHorseAssertions; import models.Horse; import models.HorseBuilder; import models.IntegrationTest; import models.Race; import org.junit.After; import org.junit.Before; import org.junit.Test; import play.db.jpa.JPA; import java.util.Date; import java.util.List; import static model...
500
github-java-corpus
2,012
package jobs; import models.IntegrationTest; import models.Race; import org.fest.assertions.Assertions; import org.junit.Before; import org.junit.Test; public class RaceSchedulingJobIntegrationTest extends IntegrationTest { private RaceSchedulingJob job; @Before public void setup() { job = new RaceSchedulingJ...
108
github-java-corpus
2,012
package securesocial; import litmus.unit.UnitTest; import org.junit.Test; import securesocial.provider.SocialUser; import static models.PlayerBuilder.*; import static securesocial.SocialUserFactory.create; public class SocialUserFactoryTest extends UnitTest { @Test public void create_returnsSocialUser() { Socia...
220
github-java-corpus
2,012
package securesocial; import litmus.unit.UnitTest; import models.HorseNamePrefix; import models.HorseNameSuffix; import models.Player; import models.PlayerBuilder; import org.fest.assertions.Assertions; import org.junit.Before; import org.junit.Test; import play.db.jpa.JPA; import play.test.Fixtures; import securesoci...
967
github-java-corpus
2,012
package webdriver; import litmus.webdriver.WebdriverTest; import models.PlayerBuilder; import org.junit.Before; import org.junit.Test; import play.test.Fixtures; import webdriver.pages.HorsesLoginPage; public class HorseMarketTest extends WebdriverTest { @Before public void setupUser() { Fixtures.deleteDataba...
204
github-java-corpus
2,012
package webdriver.pages; import org.openqa.selenium.WebElement; import org.openqa.selenium.support.FindBy; import litmus.webdriver.Page; public class HorsesLoginPage extends AbstractHorsesPage<HorsesLoginPage> { @FindBy(id = "userName") private WebElement username; @FindBy(id = "password") private WebElement...
159
github-java-corpus
2,012
package webdriver.pages; import org.openqa.selenium.Keys; import org.openqa.selenium.WebElement; import org.openqa.selenium.support.FindBy; import static org.fest.assertions.Assertions.assertThat; public class FoodMarketPage extends AbstractHorsesPage<FoodMarketPage> { @FindBy(id = "foodmarketHeader") priva...
344
github-java-corpus
2,012
package webdriver.pages; import litmus.webdriver.Page; import org.openqa.selenium.WebElement; import org.openqa.selenium.support.FindBy; import com.sun.java.swing.plaf.windows.WindowsBorders.DashedBorder; public class MainPage extends AbstractHorsesPage<MainPage> { @FindBy(id = "welcomeHeader") private WebElemen...
100
github-java-corpus
2,012
package webdriver.pages; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.support.FindBy; import org.openqa.selenium.support.ui.WebDriverWait; import com.google.common.base.Function; import litmus.webdriver.Page; public abstract c...
265
github-java-corpus
2,012
package webdriver.pages; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.support.FindBy; import org.openqa.selenium.support.ui.WebDriverWait; import com.google.common.base.Function; public class DashboardPage extends AbstractHorse...
111
github-java-corpus
2,012
package models; import javax.persistence.Entity; import play.db.jpa.Model; @Entity public class HorseNameSuffix extends Model { public HorseNameSuffix(String suffix) { this.suffix = suffix; } public String suffix; }
46
github-java-corpus
2,012
package models.stock; public enum Food { POWER_BISCUITS("Power biscuits", 12), CARROTS("Carrots", 6), HAY("Hay", 0); public int price; public String label; private Food(String label, int price) { this.label = label; this.price = price; } }
72
github-java-corpus
2,012
package models.stock; import java.util.ArrayList; import java.util.Collection; import java.util.List; import javax.persistence.CascadeType; import javax.persistence.Entity; import javax.persistence.OneToMany; import models.Purchase; import play.db.jpa.Model; @Entity public class Stock extends Model { @OneToMany(...
320
github-java-corpus
2,012
package models.stock; import javax.persistence.Entity; import play.db.jpa.Model; @Entity public class StockItem extends Model { public Food supply; public int amount = 0; public StockItem(Food supply) { this.supply = supply; this.amount++; } public StockItem(Food supply, int amount) { this.supply = sup...
105
github-java-corpus
2,012
package models; import com.google.common.collect.Lists; import com.google.common.collect.Maps; import play.data.validation.Required; import play.db.jpa.Model; import javax.persistence.Entity; import javax.persistence.ManyToMany; import javax.persistence.OneToOne; import java.util.*; import static java.util.Collectio...
625
github-java-corpus
2,012
package models.stable; import static domainservices.ServiceLocator.randomHorsesBreeder; import javax.persistence.Entity; import javax.persistence.OneToOne; import models.Horse; import play.db.jpa.Model; @Entity public class Box extends Model { @OneToOne public Horse horse; public static Box createBox() { ret...
118
github-java-corpus
2,012
package models.randomizer; public interface RandomizerProvider { int get(int max); }
17
github-java-corpus
2,012
package models.randomizer; import java.util.Date; import java.util.Random; public class RandomizerProviderImpl implements RandomizerProvider { @Override public int get(int max) { return new Random(new Date().getTime()).nextInt(max); } }
51
github-java-corpus
2,012
package models; import play.db.jpa.Model; import javax.persistence.Entity; import java.util.List; import static org.apache.commons.lang.builder.EqualsBuilder.reflectionEquals; import static org.apache.commons.lang.builder.HashCodeBuilder.reflectionHashCode; import static org.apache.commons.lang.builder.ToSt...
396
github-java-corpus
2,012
package models; import static com.google.common.collect.Collections2.filter; import static com.google.common.collect.Collections2.transform; import static com.google.common.collect.Sets.newHashSet; import static models.stable.Box.createBoxWithRandomHorse; import java.util.Date; import java.util.List; import java.util...
818
github-java-corpus
2,012
package models; import javax.persistence.Entity; import play.db.jpa.Model; @Entity public class HorseNamePrefix extends Model { public String prefix; public HorseNamePrefix(String prefix) { this.prefix = prefix; } }
45
github-java-corpus
2,012
package models; import models.stock.Food; public class Purchase { public Food foodId; public String amount; public int getPrice() { return Integer.parseInt(amount)* foodId.price; } }
42
github-java-corpus
2,012
package models; import com.google.common.collect.Sets; import models.randomizer.RandomizerProvider; import models.randomizer.RandomizerProviderImpl; import models.stock.Food; import play.db.jpa.Model; import javax.persistence.Entity; import javax.persistence.EnumType; import javax.persistence.Enumerated; import javax...
579
github-java-corpus
2,012
package models; import javax.persistence.Entity; import play.db.jpa.Model; @Entity public class Jockey extends Model { private String name; public Jockey(String name) { this.name = name; } public String getName() { return name; } }
54
github-java-corpus
2,012
package models; import java.util.Arrays; import java.util.Date; import java.util.List; import java.util.Random; import org.joda.time.DateTime; import play.Play; public class RaceFactory { static final List<Integer> SUBSCRIPTION_FEES = Arrays.asList(10, 25, 50, 100, 250, 500); public Race create() { Intege...
154
github-java-corpus
2,012
package results; import play.libs.MimeTypes; import play.mvc.Http.Request; import play.mvc.Http.Response; import play.templates.TemplateLoader; public class BadRequest extends play.mvc.results.BadRequest { @Override public void apply(Request request, Response response) { try { super.apply(request,...
119
github-java-corpus
2,012
package controllers; import java.util.List; import models.Player; import models.Purchase; import models.stock.Food; import play.mvc.Controller; import play.mvc.With; import controllers.securesocial.SecureSocial; import static com.google.common.collect.Lists.newArrayList; @With(SecureSocial.class) public class Food...
238
github-java-corpus
2,012
package controllers; import play.Play; import play.mvc.Controller; import play.mvc.With; import play.vfs.VirtualFile; import java.util.List; @With(OnlyInDevMode.class) public class Mockups extends Controller { public static void showList(){ List<VirtualFile> mockups = Play.getVirtualFile("/app/views/Moc...
108
github-java-corpus
2,012
package controllers; import play.mvc.Controller; import play.mvc.With; import controllers.securesocial.SecureSocialPublic; @With(SecureSocialPublic.class) public class Application extends Controller { public static void index() { render(); } }
49
github-java-corpus
2,012
package controllers; import play.jobs.Job; import play.mvc.Controller; import play.mvc.With; import java.io.File; import java.util.ArrayList; import java.util.Arrays; import java.util.List; @With(OnlyInDevMode.class) public class Jobs extends Controller { public static void index() { File jobsDir = new File("a...
190
github-java-corpus
2,012
package controllers; import controllers.securesocial.SecureSocial; import models.Race; import play.mvc.Controller; import play.mvc.With; @With(SecureSocial.class) public class Races extends Controller { public static void showAllUpcoming(){ render(); } }
55
github-java-corpus
2,012
package controllers; import static controllers.PlayerUtil.*; import static models.Race.findUpcomingRaces; import java.util.List; import models.Player; import models.Race; import play.mvc.Controller; import play.mvc.With; import controllers.securesocial.SecureSocial; @With(SecureSocial.class) public class Dashboard ...
140
github-java-corpus
2,012
package controllers; import controllers.securesocial.SecureSocial; import play.mvc.Scope.RenderArgs; import play.mvc.With; import securesocial.provider.SocialUser; import models.Player; @With(SecureSocial.class) public class PlayerUtil { public static Player getCurrentPlayer(RenderArgs renderArgs) { return Playe...
81
github-java-corpus
2,012
package controllers; import controllers.securesocial.SecureSocial; import play.mvc.*; @With(SecureSocial.class) public class Players extends Controller { public static void index() { render(); } }
42
github-java-corpus
2,012
package controllers; import play.Play; import play.mvc.Before; import play.mvc.Controller; import play.mvc.results.NotFound; public class OnlyInDevMode extends Controller { @Before public static void checkIfInDevMode() { if(!Play.mode.isDev()) { throw new NotFound("Page not found"); ...
70
github-java-corpus
2,012
package controllers; import models.Horse; import models.stock.Food; import play.data.validation.Required; import play.data.validation.Validation; import play.i18n.Messages; import play.mvc.Controller; import play.mvc.With; import results.BadRequest; import controllers.securesocial.SecureSocial; import java.util.EnumS...
281
github-java-corpus
2,012
package domainservices; import models.Horse; import models.HorseNamePrefix; import models.HorseNameSuffix; import models.Race; import java.util.Date; import java.util.List; import java.util.Random; public class RandomHorsesBreeder { public Horse createRandomHorse() { if (allRandomHorsesAreExhausted()) {...
309
github-java-corpus
2,012
package domainservices; public class ServiceLocator { public static RandomHorsesBreeder randomHorsesBreeder = new RandomHorsesBreeder(); }
32
github-java-corpus
2,012
package jobs; import java.util.List; import models.Race; import play.db.jpa.JPABase; import play.jobs.Job; public class RaceRunningJob extends Job<Void> { @Override public void doJob() throws Exception { List<Race> allRaces = Race.findAll(); for (Race race : allRaces) { if (!race.hasRun() && !race.startTime...
106
github-java-corpus
2,012
package jobs; import models.HorseNamePrefix; import models.HorseNameSuffix; import play.jobs.Job; import play.jobs.OnApplicationStart; import java.util.List; import static com.google.common.collect.Lists.newArrayList; @OnApplicationStart public class HorseNameBootstrapper extends Job { private static List<Stri...
235
github-java-corpus
2,012
package jobs; import models.Race; import models.RaceFactory; import play.jobs.Job; import play.jobs.On; @On("0 0 0 * * ?") public class RaceSchedulingJob extends Job { private RaceFactory factory; public RaceSchedulingJob() { super(); setFactory(new RaceFactory()); } @Override public void doJob() throws Ex...
110
github-java-corpus
2,012
package securesocial; import models.Player; import play.libs.Codec; import securesocial.provider.SocialUser; import securesocial.provider.UserId; import securesocial.provider.UserService; public class CustomSecureSocialPlayerService implements UserService.Service { @Override public SocialUser find(UserId id) { P...
271
github-java-corpus
2,012
package securesocial; import models.Player; import securesocial.provider.ProviderType; import securesocial.provider.SocialUser; import securesocial.provider.UserId; public class SocialUserFactory { public static SocialUser create(Player player) { SocialUser socialUser = new SocialUser(); socialUser.id = create...
223
github-java-corpus
2,012
package ru.imobilco.builder.logger; import org.json.simple.JSONObject; import java.io.File; /** * A single file that belongs to a parent compiled file */ public class ModuleFile { private String fileName; private String md5; public ModuleFile(String fileName) { this.fileName = fileName; }...
359
github-java-corpus
2,012
package ru.imobilco.builder.logger; import java.io.File; import java.util.ArrayList; import java.util.List; import org.json.simple.JSONArray; import org.json.simple.JSONObject; import ru.imobilco.builder.ant.FileEntity; /** * A bundle logger record that contains list of files that where compiled into * a single li...
916
github-java-corpus
2,012
package ru.imobilco.builder.logger; import java.io.File; import java.io.FileInputStream; import java.io.InputStream; import java.security.MessageDigest; public class MD5Checksum { public static byte[] createChecksum(String filename) throws Exception { InputStream fis = new FileInputStream(filename); byte[] buff...
248
github-java-corpus
2,012
package ru.imobilco.builder.logger; import java.io.File; import org.apache.tools.ant.util.FileUtils; public class DefaultPathProcessor implements IPathProcessor { private File baseDir; public DefaultPathProcessor(File baseDir) { this.baseDir = baseDir; } public String getPath(String path) { try { if (b...
105
github-java-corpus
2,012
package ru.imobilco.builder.logger; /** * Path processor interface that should transform all module's file path into * another path (for example, convert absolute paths to relative ones) * @author sergey * */ public interface IPathProcessor { /** * Get new path for nodule's file * @param path Absolute file p...
87
github-java-corpus
2,012
package ru.imobilco.builder.logger; import java.io.File; import org.apache.tools.ant.util.FileUtils; public class XSLCatalogPathProcessor implements IPathProcessor { private File container; private boolean ensureAbsolute; public XSLCatalogPathProcessor(File container, boolean ensureAbsolute) { this.container...
184
github-java-corpus
2,012
package ru.imobilco.builder.logger; import java.io.File; import java.io.FileOutputStream; import java.io.OutputStreamWriter; import java.util.ArrayList; import java.util.List; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import org.apache.tools.ant.Project; import org.js...
1,336
github-java-corpus
2,012
package ru.imobilco.builder.ant.css; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.IOException; import java.io.OutputStreamWriter; import java.io.StringReader; import org.apache.tools.ant.BuildException; import org.apache.tools.ant.types.FileSet; import ru.imobilco.builder.ant.FileEntity;...
772
github-java-corpus
2,012
package ru.imobilco.builder.ant.css; import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStreamReader; import java.util.ArrayList; import java.util.List; import java.util.regex.Matcher; import java.util.regex.Pattern; import ru.imobilco.b...
845
github-java-corpus
2,012
package ru.imobilco.builder.ant; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStreamWriter; import java.util.ArrayList; import java.util.List; import org.apache.tools.ant.DirectoryScanner; import org.apache.tools.ant.Project; import org.apache.tools.ant.Task; ...
596
github-java-corpus
2,012
package ru.imobilco.builder.ant; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; public class FileEntity { private String baseDir; private String filePath; /** * @param baseDir File's base dir * @param filePath File's path, relative to baseDir */...
195
github-java-corpus
2,012
package ru.imobilco.builder.ant.js; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.io.SequenceInputStream; import java.nio.charset.Charset; import java.util.ArrayList; im...
1,649
github-java-corpus
2,012
package ru.imobilco.builder.ant; import java.io.File; import org.apache.tools.ant.BuildException; import org.apache.tools.ant.Task; import ru.imobilco.builder.logger.BundleLogger; import ru.imobilco.builder.logger.XSLCatalogPathProcessor; public class SaveCatalog extends Task { private File webRoot; private...
395
github-java-corpus
2,012
package ru.imobilco.builder.ant; import java.io.File; import java.util.ArrayList; import java.util.Collection; import java.util.Iterator; import java.util.List; import org.apache.tools.ant.BuildException; import org.apache.tools.ant.taskdefs.Zip; import org.apache.tools.ant.util.FileUtils; import ru.imobilco.builder...
304
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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,581
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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...
430
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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...
386
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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...
653
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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,205
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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 * versio...
2,222
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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...
3,840
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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...
314
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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...
2,098
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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,350
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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 * versio...
530
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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...
2,008
github-java-corpus
2,012
package com.gisgraphy.domain.valueobject; import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; import java.util.Map; import java.util.Map.Entry; /** * @author <a href="mailto:david.masclet@gisgraphy.com">David Masclet</a> * */ public class CountriesStaticData { public final static ...
3,093
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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...
646
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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...
468
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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...
445
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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...
466
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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...
2,122
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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,908
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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...
459
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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...
454
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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...
990
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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 * versio...
324
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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 * versio...
572
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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 * versio...
303
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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 * versio...
431
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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...
855
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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 * versio...
4,668
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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 * versio...
755
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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...
466
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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,318
github-java-corpus
2,012
/******************************************************************************* * Gisgraphy Project * * 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...
697