Source
stringclasses
1 value
Date
int32
2.01k
2.01k
Text
stringlengths
3
15.9M
Token_count
int32
1
2.44M
github-java-corpus
2,012
/** * */ package com.rxavier.timesheet.manager; import java.util.List; import com.rxavier.timesheet.dao.ConnectionFactory; import com.rxavier.timesheet.dao.DAOAplicacao; import com.rxavier.timesheet.modelo.Aplicacao; /** * @author rodrigo * */ public class ControladorAplicacao { public void save(Aplicacao o...
304
github-java-corpus
2,012
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.rxavier.timesheet.manager; import com.rxavier.timesheet.dao.ConnectionFactory; import com.rxavier.timesheet.modelo.Recurso; import com.rxavier.timesheet.dao.DAORecurso; import java.util.List; /** * * @aut...
213
github-java-corpus
2,012
/** * */ package com.rxavier.timesheet.manager; import java.util.List; import com.rxavier.timesheet.dao.ConnectionFactory; import com.rxavier.timesheet.dao.DAOProjeto; import com.rxavier.timesheet.modelo.Projeto; /** * @author rodrigo * */ public class ControladorProjeto { public void save(Projeto obj) thro...
278
github-java-corpus
2,012
/** * */ package com.rxavier.timesheet.manager; import com.rxavier.timesheet.modelo.Fase; import java.util.List; import com.rxavier.timesheet.dao.ConnectionFactory; import com.rxavier.timesheet.dao.DAOTarefa; import com.rxavier.timesheet.modelo.Tarefa; import javax.xml.bind.ValidationException; /** * @author rod...
416
github-java-corpus
2,012
/** * */ package com.rxavier.timesheet.manager; import com.rxavier.timesheet.modelo.Projeto; import java.util.List; import com.rxavier.timesheet.dao.ConnectionFactory; import com.rxavier.timesheet.dao.DAOFase; import com.rxavier.timesheet.modelo.Fase; /** * @author rodrigo * */ public class ControladorFase { ...
326
github-java-corpus
2,012
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.rxavier.timesheet.manager; import com.rxavier.timesheet.dao.ConnectionFactory; import com.rxavier.timesheet.dao.DAOApontamento; import com.rxavier.timesheet.modelo.Apontamento; import com.rxavier.timesheet.m...
796
github-java-corpus
2,012
/** * */ package com.rxavier.timesheet.modelo; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.ManyToOne; /** * @author rodrigo * */ @Entity public class Tarefa { @Id @GeneratedValue private int id; private String n...
661
github-java-corpus
2,012
/** * */ package com.rxavier.timesheet.modelo; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; /** * @author rodrigo * */ @Entity public class Aplicacao { @Id @GeneratedValue private int id; private String nome; /** * @return the id */ public i...
165
github-java-corpus
2,012
/** * */ package com.rxavier.timesheet.modelo; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; /** * @author rodrigo * */ @Entity public class Recurso { @Id @GeneratedValue private int id; private String nome; private boolean desativado...
246
github-java-corpus
2,012
/** * */ package com.rxavier.timesheet.modelo; import javax.persistence.CascadeType; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.OneToOne; /** * @author rodrigo * */ @Entity public class Fase { @Id @GeneratedValue private in...
330
github-java-corpus
2,012
/** * */ package com.rxavier.timesheet.modelo; import java.util.List; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.ManyToMany; /** * @author rodrigo * */ @Entity public class Projeto { @Id @GeneratedValue private int id; pri...
530
github-java-corpus
2,012
/** * */ package com.rxavier.timesheet.modelo; import java.util.Date; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.OrderColumn; import javax.persistence.Tempora...
470
github-java-corpus
2,012
/** * */ package com.rxavier.timesheet.dao; import com.rxavier.timesheet.modelo.Fase; import java.io.Serializable; import java.util.List; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; import javax.persistence.Query; import com.rxavier.timesheet.modelo.Tarefa; import javax.pers...
424
github-java-corpus
2,012
package com.rxavier.timesheet.dao; import java.io.Serializable; import javax.persistence.EntityManager; import javax.persistence.EntityManagerFactory; import javax.persistence.Persistence; public class ConnectionFactory implements Serializable { private static EntityManagerFactory entityManagerFactory =...
110
github-java-corpus
2,012
/** * */ package com.rxavier.timesheet.dao; import java.io.Serializable; import java.util.List; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; import javax.persistence.Query; import com.rxavier.timesheet.modelo.Aplicacao; import javax.persistence.EntityTransaction; public clas...
339
github-java-corpus
2,012
/** * */ package com.rxavier.timesheet.dao; import java.io.Serializable; import java.util.List; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; import javax.persistence.Query; import com.rxavier.timesheet.modelo.Apontamento; import javax.persistence.EntityTransaction; import jav...
447
github-java-corpus
2,012
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.rxavier.timesheet.dao; import com.rxavier.timesheet.modelo.Projeto; import java.io.Serializable; import java.util.List; import javax.persistence.EntityManager; import javax.persistence.EntityTransaction; imp...
339
github-java-corpus
2,012
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.rxavier.timesheet.dao; import com.rxavier.timesheet.modelo.Recurso; import java.util.List; import javax.persistence.EntityManager; import javax.persistence.EntityTransaction; import javax.persistence.Query; ...
233
github-java-corpus
2,012
/** * */ package com.rxavier.timesheet.dao; import com.rxavier.timesheet.modelo.Projeto; import java.io.Serializable; import java.util.List; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; import javax.persistence.Query; import com.rxavier.timesheet.modelo.Fase; import javax.per...
425
github-java-corpus
2,012
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * JRecurso.java * * Created on 05/10/2011, 20:34:55 */ package com.rxavier.timesheet.boudary; import com.rxavier.timesheet.manager.ControladorRecurso; import com.rxavier.timesheet.modelo.Recurso; import java.uti...
2,609
github-java-corpus
2,012
package com.rxavier.timesheet.boudary; import com.rxavier.timesheet.dao.ConnectionFactory; import com.rxavier.timesheet.dao.DAOAplicacao; import com.rxavier.timesheet.manager.ControladorAplicacao; import com.rxavier.timesheet.manager.ControladorTarefa; import com.rxavier.timesheet.modelo.Aplicacao; import com.rxavier....
553
github-java-corpus
2,012
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.rxavier.timesheet.boudary; import javax.swing.DefaultComboBoxModel; /** * * @author rxavier */ public class ObjectComboBoxModel extends DefaultComboBoxModel { private Object rowObject[]; public...
155
github-java-corpus
2,012
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * JProjeto.java * * Created on 05/10/2011, 20:34:55 */ package com.rxavier.timesheet.boudary; import com.rxavier.timesheet.manager.ControladorApontamento; import com.rxavier.timesheet.modelo.Apontamento; import ...
1,728
github-java-corpus
2,012
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * JAplicacao.java * * Created on 05/10/2011, 20:34:55 */ package com.rxavier.timesheet.boudary; import com.rxavier.timesheet.manager.ControladorAplicacao; import com.rxavier.timesheet.modelo.Aplicacao; import ja...
2,410
github-java-corpus
2,012
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * JTarefa.java * * Created on 05/10/2011, 20:34:55 */ package com.rxavier.timesheet.boudary; import com.rxavier.timesheet.manager.ControladorFase; import com.rxavier.timesheet.manager.ControladorProjeto; import ...
3,539
github-java-corpus
2,012
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * JProjeto.java * * Created on 05/10/2011, 20:34:55 */ package com.rxavier.timesheet.boudary; import com.rxavier.timesheet.manager.ControladorAplicacao; import com.rxavier.timesheet.manager.ControladorProjeto; i...
8,740
github-java-corpus
2,012
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.rxavier.timesheet.boudary; import javax.swing.table.DefaultTableModel; /** * * @author rodrigo */ public class ObjectTableModel extends DefaultTableModel { private Object rowObject[]; public Ob...
138
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
1,281
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
871
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
1,243
github-java-corpus
2,012
/** * TODO Escrever. * * @author cleverson.sacramento@gmail.com */ /* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as...
229
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
1,178
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
1,286
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
1,399
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
265
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
1,948
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
884
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
990
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
1,862
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
304
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
761
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
491
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
862
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
263
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
418
github-java-corpus
2,012
/** * TODO Escrever. * * @author cleverson.sacramento@gmail.com */ /* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as...
229
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
304
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
364
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
298
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
222
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
585
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
287
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
344
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
723
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
265
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
1,007
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
805
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
411
github-java-corpus
2,012
@Namespace(value = "http://rasea.org/server", prefix = "org.rasea.core.util") @AutoCreate /* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public...
258
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
374
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
606
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
602
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
439
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
1,119
github-java-corpus
2,012
/** * TODO Escrever. * * @author cleverson.sacramento@gmail.com */ /* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as...
229
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
1,109
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
866
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
918
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
777
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
4,050
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
1,032
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
777
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
895
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
942
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
319
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
839
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
220
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
360
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
223
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
355
github-java-corpus
2,012
/** * TODO Escrever. * * @author cleverson.sacramento@gmail.com */ /* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as...
229
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
325
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
642
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
1,711
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
289
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
465
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
2,882
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
1,589
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
220
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
528
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
486
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
723
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
1,025
github-java-corpus
2,012
/** * TODO Escrever. * * @author cleverson.sacramento@gmail.com */ /* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as...
229
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
250
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
1,512
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
758
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
764
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
724
github-java-corpus
2,012
/* * Rasea Server * * Copyright (c) 2008, Rasea <http://rasea.org>. All rights reserved. * * Rasea Server 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 3 of the License. * ...
1,007