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 enable.bean; public class Hello { String name; public void setName(String name) { this.name = name; } public void sayHello() { System.out.println("Hello " + name); } }
46
github-java-corpus
2,012
package enable; import org.springframework.context.support.GenericXmlApplicationContext; import enable.support.BeanDefinitionUtils; public class InfrastructureBeans { public static void main(String[] args) { GenericXmlApplicationContext ac = new GenericXmlApplicationContext(InfrastructureBeans.class, "infrastruct...
67
github-java-corpus
2,012
package enable.support; import java.util.ArrayList; import java.util.List; import org.springframework.context.support.GenericApplicationContext; public class BeanDefinitionUtils { public static void printBeanDefinitions(GenericApplicationContext cwac) { List<List<String>> roleBeanInfos = new ArrayList<List<String...
193
github-java-corpus
2,012
package br.com.wbotelhos.starting.functional; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; import org.junit.Before; import org.junit.Test; import org.mockito.MockitoAnnotations; import org.mockito.Spy; import br.com.caelum.vraptor.Result; import br.com.caelum.vraptor.util....
261
github-java-corpus
2,012
package br.com.wbotelhos.starting.functional; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; import static org.mockito.Mockito.verify; import java.lang.reflect.Method; import org.junit.B...
683
github-java-corpus
2,012
package br.com.wbotelhos.starting.functional; import static br.com.wbotelhos.starting.util.Utils.i18n; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; import static org.mockito.Mockito.verify; import java.util.ArrayList; import java...
1,486
github-java-corpus
2,012
package br.com.wbotelhos.starting.unit; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; import org.junit.Test; import br.com.wbotelhos.starting.util.Image; public class ImageTest { private String fileName; @Test public void dev...
420
github-java-corpus
2,012
package br.com.wbotelhos.starting.unit; import static org.junit.Assert.assertEquals; import org.junit.Test; import br.com.wbotelhos.starting.util.Utils; public class UtilsTest { @Test public void deveriaNaoAcharI18N() { // given String key = "çâçísãò"; // when String actual = Utils.i18n(key); /...
180
github-java-corpus
2,012
package br.com.wbotelhos.starting.helper; import java.util.ArrayList; import java.util.Collection; import java.util.List; import br.com.wbotelhos.starting.model.Usuario; import br.com.wbotelhos.starting.model.UsuarioImage; import br.com.wbotelhos.starting.model.common.EntityWrapper; import br.com.wbotelhos.starting.m...
826
github-java-corpus
2,012
package br.com.wbotelhos.starting.helper; import java.io.Writer; import com.thoughtworks.xstream.XStream; import com.thoughtworks.xstream.io.HierarchicalStreamWriter; import com.thoughtworks.xstream.io.json.JsonHierarchicalStreamDriver; import com.thoughtworks.xstream.io.json.JsonWriter; public class Serializer { ...
176
github-java-corpus
2,012
package br.com.wbotelhos.starting.integration; import static junit.framework.Assert.assertNotNull; import static org.junit.Assert.assertNull; import org.junit.After; import org.junit.Before; import org.junit.BeforeClass; import org.junit.Test; import br.com.wbotelhos.starting.business.LoginBusiness; import br.com.wb...
356
github-java-corpus
2,012
package br.com.wbotelhos.starting.integration; import static junit.framework.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; import static org.junit.Assert.assertTrue; import static org.junit.Assert.fail; import ...
1,176
github-java-corpus
2,012
package br.com.wbotelhos.starting.component; import java.util.ArrayList; import java.util.Collection; import java.util.List; import javax.servlet.http.HttpServletResponse; import br.com.caelum.vraptor.interceptor.TypeNameExtractor; import br.com.caelum.vraptor.ioc.Component; import br.com.caelum.vraptor.serializatio...
270
github-java-corpus
2,012
package br.com.wbotelhos.starting.component; import java.io.Serializable; import br.com.caelum.vraptor.ioc.Component; import br.com.caelum.vraptor.ioc.SessionScoped; import br.com.wbotelhos.starting.model.Usuario; @Component @SessionScoped public class UserSession implements Serializable { private static final lon...
174
github-java-corpus
2,012
package br.com.wbotelhos.starting.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Retention(RetentionPolicy.RUNTIME) @Target({ ElementType.TYPE, ElementType.METHOD }) public @interface Public ...
62
github-java-corpus
2,012
package br.com.wbotelhos.starting.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import br.com.wbotelhos.starting.model.common.Perfil; @Retention(RetentionPolicy.RUNTIME) @Target({ ElementTyp...
82
github-java-corpus
2,012
package br.com.wbotelhos.starting.repository.common; import java.util.Collection; import br.com.wbotelhos.starting.exception.CommonException; import br.com.wbotelhos.starting.model.common.AbstractEntity; public interface GenericRepository<T extends AbstractEntity> { Collection<T> all(); T find(Long id); void r...
79
github-java-corpus
2,012
package br.com.wbotelhos.starting.repository.common; import br.com.caelum.vraptor.interceptor.multipart.UploadedFile; import br.com.wbotelhos.starting.exception.CommonException; import br.com.wbotelhos.starting.exception.UploadException; import br.com.wbotelhos.starting.model.common.AbstractImage; import br.com.wbotel...
151
github-java-corpus
2,012
package br.com.wbotelhos.starting.repository; import br.com.wbotelhos.starting.model.Usuario; import br.com.wbotelhos.starting.model.UsuarioImage; import br.com.wbotelhos.starting.repository.common.GenericImageRepository; import br.com.wbotelhos.starting.repository.common.GenericRepository; public interface UsuarioRe...
94
github-java-corpus
2,012
package br.com.wbotelhos.starting.repository; import br.com.wbotelhos.starting.model.Usuario; public interface LoginRepository { Usuario autenticar(String email, String senha); }
40
github-java-corpus
2,012
package br.com.wbotelhos.starting.exception; public class UploadException extends Exception { private static final long serialVersionUID = 1692477659813333477L; public UploadException(String mensagem) { super(mensagem); } public UploadException(String mensagem, Throwable e) { super(mensagem, e); ...
68
github-java-corpus
2,012
package br.com.wbotelhos.starting.exception; public class CommonException extends Exception { private static final long serialVersionUID = 5746751520999684832L; public CommonException(String mensagem) { super(mensagem); } public CommonException(String mensagem, Throwable e) { super(mensagem, e); ...
68
github-java-corpus
2,012
package br.com.wbotelhos.starting.util; import java.io.UnsupportedEncodingException; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; import java.util.Locale; import java.util.MissingResourceException; import java.util.ResourceBundle; public class Utils { public static String decod...
293
github-java-corpus
2,012
package br.com.wbotelhos.starting.util; public class Image { private static final String[] ALLOWED_FILE = { ".jpg", ".jpeg", ".gif", ".bmp", ".png" }; public static String getExtension(String fileName) { int last = fileName.lastIndexOf("."); String extension = (last > 0) ? fileName.substring(last) : ""; retu...
146
github-java-corpus
2,012
package br.com.wbotelhos.starting.util; import javax.mail.Authenticator; import javax.mail.PasswordAuthentication; import org.apache.commons.mail.HtmlEmail; import br.com.wbotelhos.starting.exception.CommonException; public class Email { private static final String SMTP = "smtp.gmail.com"; private static final S...
256
github-java-corpus
2,012
package br.com.wbotelhos.starting.model; import java.util.List; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EnumType; import javax.persistence.Enumerated; import javax.persistence.OneToMany; import org.hibernate.validator.Email; imp...
392
github-java-corpus
2,012
package br.com.wbotelhos.starting.model.common; import java.util.Collection; public class EntityWrapper<T extends AbstractEntity> { private Collection<T> entityList; private Integer total; public Collection<T> getEntityList() { return entityList; } public void setEntityList(Collection<T> entityList) { thi...
104
github-java-corpus
2,012
package br.com.wbotelhos.starting.model.common; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.MappedSuperclass; @MappedSuperclass public abstract class AbstractEntity implements java.io.Serializable { private static final long serialVersionUID = 956419232222987050L; ...
97
github-java-corpus
2,012
package br.com.wbotelhos.starting.model.common; import javax.persistence.MappedSuperclass; @MappedSuperclass public abstract class AbstractImageGallery extends AbstractEntity { private static final long serialVersionUID = 5035370118565309661L; private String imageName; private String titulo; private String desc...
151
github-java-corpus
2,012
package br.com.wbotelhos.starting.model.common; public enum Perfil { MEMBRO("Membro"), MODERADOR("Moderador"), ADMINISTRADOR("Administrador"); private String label; private Perfil(String label) { this.label = label; } public String getLabel() { return label; } public void setLabel(String label) { t...
89
github-java-corpus
2,012
package br.com.wbotelhos.starting.model.common; import java.awt.Graphics2D; import java.awt.RenderingHints; import java.awt.Transparency; import java.awt.image.BufferedImage; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.text.SimpleDa...
1,238
github-java-corpus
2,012
package br.com.wbotelhos.starting.model; import javax.persistence.Entity; import javax.persistence.ManyToOne; import br.com.wbotelhos.starting.model.common.AbstractImageGallery; @Entity public class UsuarioImage extends AbstractImageGallery { private static final long serialVersionUID = -5545470204682629302L; @M...
102
github-java-corpus
2,012
package br.com.wbotelhos.starting.business; import javax.persistence.EntityManager; import javax.persistence.NoResultException; import javax.persistence.Query; import br.com.caelum.vraptor.ioc.Component; import br.com.wbotelhos.starting.business.common.GenericImageBusiness; import br.com.wbotelhos.starting.exception....
288
github-java-corpus
2,012
package br.com.wbotelhos.starting.business.common; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import javax.persistence.EntityManager; import javax.persistence.Query; import org.apache.commons.io.IOUtils; import br.com.caelum.vraptor.interc...
756
github-java-corpus
2,012
package br.com.wbotelhos.starting.business.common; import java.lang.reflect.ParameterizedType; import java.util.Collection; import javax.persistence.EntityManager; import javax.persistence.Query; import br.com.wbotelhos.starting.exception.CommonException; import br.com.wbotelhos.starting.model.common.AbstractEntity;...
260
github-java-corpus
2,012
package br.com.wbotelhos.starting.business; import javax.persistence.EntityManager; import javax.persistence.NoResultException; import javax.persistence.Query; import br.com.caelum.vraptor.ioc.Component; import br.com.wbotelhos.starting.model.Usuario; import br.com.wbotelhos.starting.repository.LoginRepository; @Com...
185
github-java-corpus
2,012
package br.com.wbotelhos.starting.interceptor; import static br.com.caelum.vraptor.view.Results.http; import static br.com.wbotelhos.starting.util.Utils.i18n; import java.util.Arrays; import java.util.Collection; import br.com.caelum.vraptor.Intercepts; import br.com.caelum.vraptor.Result; import br.com.caelum.vrapt...
460
github-java-corpus
2,012
package br.com.wbotelhos.starting.controller; import static br.com.caelum.vraptor.view.Results.referer; import static br.com.wbotelhos.starting.util.Utils.i18n; import java.util.Locale; import br.com.caelum.vraptor.Delete; import br.com.caelum.vraptor.Get; import br.com.caelum.vraptor.Post; import br.com.caelum.vrap...
1,332
github-java-corpus
2,012
package br.com.wbotelhos.starting.controller; import static br.com.caelum.vraptor.view.Results.referer; import static br.com.wbotelhos.starting.util.Utils.i18n; import br.com.caelum.vraptor.Get; import br.com.caelum.vraptor.Post; import br.com.caelum.vraptor.Resource; import br.com.caelum.vraptor.Result; import br.com...
350
github-java-corpus
2,012
package br.com.wbotelhos.starting.controller; import br.com.caelum.vraptor.Get; import br.com.caelum.vraptor.Path; import br.com.caelum.vraptor.Resource; import br.com.caelum.vraptor.Result; import br.com.wbotelhos.starting.annotation.Public; @Public @Resource public class IndexController { private final Result res...
154
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
163
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
218
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
2,953
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
1,771
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
672
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
174
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
290
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
311
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
217
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
483
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
537
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
488
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
177
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
276
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
173
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
166
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
382
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
405
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
222
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
835
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
838
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
169
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
254
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
604
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
203
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
286
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
982
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
240
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
495
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
192
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
2,968
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
2,020
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
787
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
629
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
187
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
438
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
333
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
934
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
539
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
167
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
513
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
2,755
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
213
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
562
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
1,699
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
350
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
185
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
468
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
187
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
376
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
953
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
340
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
352
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
510
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
388
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
458
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
315
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
161
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
173
github-java-corpus
2,012
/** * Copyright (C) 2011 WRML.org <mark@wrml.org> * * 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 applic...
175