code
stringlengths
3
1.04M
repo_name
stringlengths
5
109
path
stringlengths
6
306
language
stringclasses
1 value
license
stringclasses
15 values
size
int64
3
1.04M
// ********************************************************************** // // Copyright (c) 2003-2013 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ***************************************************...
sbesson/zeroc-ice
java/src/IceInternal/DispatchObserverI.java
Java
gpl-2.0
1,162
package net.atec.analyzer; import java.io.BufferedReader; import java.io.DataOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import net.atec.sender.DeviceEvent; import android.util.Log; public class ServiceC...
eternnoir/ATEC
net/atec/analyzer/ServiceCenter.java
Java
gpl-2.0
3,208
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you...
BIORIMP/biorimp
BIO-RIMP/test_data/code/antapache/src/main/org/apache/tools/ant/PropertyHelper.java
Java
gpl-2.0
45,755
//: containers/Groundhog2.java package course.containers; /* Added by Eclipse.py */ // A class that's used as a key in a HashMap // must override hashCode() and equals(). public class Groundhog2 extends Groundhog { public Groundhog2(int n) { super(n); } public int hashCode() { return number; } public bool...
fengzhongdege/TIJ4
src/main/java/course/containers/Groundhog2.java
Java
gpl-2.0
440
package net.catqua.app.api; import java.io.ByteArrayInputStream; import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.util.HashMap; import java.util.Map; import net.catqua.app.AppContext; import net.catqua.app.AppException; import n...
ChingfanTsou/catqua
catqua-client/src/net/catqua/app/api/ApiClient.java
Java
gpl-2.0
22,701
package com.heesun.bbgame.model; public class Ball { private int ball; public Ball(int num) { this.ball = num; } public int getCount() { return ball; } }
heesunjeong/BaseballGame
src/main/java/com/heesun/bbgame/model/Ball.java
Java
gpl-2.0
167
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
codelibs/n2dms
src/main/java/com/openkm/module/jcr/stuff/apache/BasicCredentialsProvider.java
Java
gpl-2.0
4,835
/* * Copyright 2001 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundati...
TheTypoMaster/Scaper
openjdk/jdk/test/javax/print/applet/applet1/Applet1PrintServiceLookup.java
Java
gpl-2.0
2,027
/** * Instituto de Matemática e Estatística da Universidade de São Paulo (IME-USP) * iVProg is a open source and free software of Laboratório de Informática na * Educação (LInE) licensed under GNU GPL2.0 license. * Prof. Dr. Leônidas de Oliveira Brandão - leo@ime.usp.br * Romenig da Silva Ribeiro - romenig@...
Romenig/ivprog2-final
ivprog-final/tests/interpreter/expressions/arithmetic/SimpleSubtractionTest.java
Java
gpl-2.0
4,566
package models; import play.db.jpa.GenericModel; import javax.persistence.*; /** * Created by Robson on 13/03/2015. */ @Entity @Table(schema="alimentacao", name="PROMOCAO") public class PromocoesModel extends GenericModel { @Id @Column(name="ID") @GeneratedValue(strategy=GenerationType.SEQUENCE, genera...
langkammer/rtecnlogy-alimentacao
backend/app/models/PromocoesModel.java
Java
gpl-2.0
755
package org.libsdl.app; import java.io.IOException; import java.io.InputStream; import java.util.Arrays; import java.lang.reflect.Method; import android.app.*; import android.content.*; import android.content.res.Configuration; import android.text.InputType; import android.view.*; import android.view.inputmethod.Base...
limboemu/limbo
limbo-android-lib/src/main/java/org/libsdl/app/SDLActivity.java
Java
gpl-2.0
61,553
package org.android.black.quickreturn; import widget.view.pageslidingtab.PagerSlidingTabStrip; /** * Created by liumingkong on 15/6/25. */ public interface QuickReturnInterface { PagerSlidingTabStrip getTabs(); }
liumingkong/androidUI
app/src/main/java/org/android/black/quickreturn/QuickReturnInterface.java
Java
gpl-2.0
221
package net.cscott.sdr.util; import org.apache.commons.lang.builder.EqualsBuilder; import org.apache.commons.lang.builder.HashCodeBuilder; import org.apache.commons.lang.builder.ToStringBuilder; import org.apache.commons.lang.builder.ToStringStyle; /** A 2D point, where x and y coordinate are {@link Fraction}s. */ pu...
cscott/SDR
src/net/cscott/sdr/util/Point.java
Java
gpl-2.0
1,734
package com.plantsmiles.eats.web.filter.gzip; import javax.servlet.ServletOutputStream; import java.io.IOException; import java.io.OutputStream; class GZipServletOutputStream extends ServletOutputStream { private OutputStream stream; public GZipServletOutputStream(OutputStream output) throws IOEx...
plantsmiles/plantsmiles-eats
src/main/java/com/plantsmiles/eats/web/filter/gzip/GZipServletOutputStream.java
Java
gpl-2.0
912
package org.sun.demo.exception; /** * * @author zhang * @Date 2016年7月20日 下午1:59:25 * @doing */ public class ExceptionTest { public static void main(String[] args) throws Exception { ExceptionTest exceptionTest=new ExceptionTest(); System.out.println(exceptionTest.value()); System.out.println("===========...
muxiaobai/CourseExercises
java/ProjectTest/src/org/sun/demo/exception/ExceptionTest.java
Java
gpl-2.0
872
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
jackkiexu/tuomatuo
tuomatuo-mq/src/main/java/com/lami/tuomatuo/mq/jafka/common/InvalidMessageSizeException.java
Java
gpl-2.0
1,273
package com.deew.jt808.auth; import com.deew.jt808.conn.MessageCollector; import com.deew.jt808.msg.ServerGenericReply; import com.deew.jt808.conn.Connection; import com.deew.jt808.filter.MessageIdFilter; import com.deew.jt808.msg.AuthenticateRequest; public class AdvancedAuthentication { private static final Stri...
D-3/BS808
libjt808/src/main/java/com/deew/jt808/auth/AdvancedAuthentication.java
Java
gpl-2.0
5,293
/* * This Java file has been generated by smidump 0.4.5. It * is intended to be edited by the application programmer and * to be used within a Java AgentX sub-agent environment. * * $Id: SysOREntryImpl.java 4432 2006-05-29 16:21:11Z strauss $ */ /** This class extends the Java AgentX (JAX) implementation of ...
vertexclique/travertine
libsmi/test/dumps/jax/SysOREntryImpl.java
Java
gpl-2.0
857
package freenet.crypt; import freenet.node.FSParseException; import freenet.support.Base64; import freenet.support.Logger; import freenet.support.SimpleFieldSet; import java.security.*; import java.security.interfaces.ECPrivateKey; import java.security.interfaces.ECPublicKey; import java.security.spec.ECGenParameterS...
deepstupid/fred
src/freenet/crypt/ECDSA.java
Java
gpl-2.0
14,779
/* * Copyright (C) 2015-2021 52°North Spatial Information Research GmbH * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published * by the Free Software Foundation. * * If the program is linked with libraries which are l...
CarstenHollmann/series-sos-proxy
dao/src/main/java/org/n52/sensorweb/server/helgoland/adapters/config/ConfigurationReader.java
Java
gpl-2.0
2,344
/* * Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
34benma/openjdk
jdk/src/java.base/windows/classes/sun/io/Win32ErrorMode.java
Java
gpl-2.0
3,404
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package com.ec.vistas; import com.ec.entidades.Usuario; import com.ec.utilitarios.UserValidationIntegration; import com.ec.utilitarios...
cchristico/Quipus_V1.5
Quipus_v2.0/src/com/ec/vistas/Login.java
Java
gpl-2.0
11,346
package com.testpage.demo; public class TestAppend { public static void main(String[] args) { // TODO Auto-generated method stub StringBuffer aBuffer=new StringBuffer("111"); StringBuffer bBuffer=new StringBuffer("222"); System.out.println(aBuffer.append(bBuffer)); for (int i = 49990...
lujun500/MySelenium
src/main/java/com/testpage/demo/TestAppend.java
Java
gpl-2.0
404
package binnie.core.proxy; import binnie.core.AbstractMod; import binnie.core.BinnieCore; import binnie.core.network.BinnieCorePacketID; import binnie.core.network.INetworkedEntity; import binnie.core.network.packet.MessageUpdate; import binnie.core.resource.BinnieResource; import cpw.mods.fml.client.registry.Renderin...
draknyte1/MiscUtils
src/Java/binnie/core/proxy/BinnieProxy.java
Java
gpl-2.0
3,622
package de.metas.inoutcandidate.async; /* * #%L * de.metas.swat.base * %% * Copyright (C) 2015 metas GmbH * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 2 of the *...
klst-com/metasfresh
de.metas.swat/de.metas.swat.base/src/main/java/de/metas/inoutcandidate/async/GenerateReceiptScheduleWorkpackageProcessor.java
Java
gpl-2.0
2,821
package com.sismics.util.cert; import javax.net.ssl.X509TrustManager; import java.security.cert.CertificateException; import java.security.cert.X509Certificate; /** * A trust manager that trusts all certificates (unsecure). * * @author jtremeaux */ public class TrustAllManager implements X509TrustManager { @O...
sismics/reader
reader-core/src/main/java/com/sismics/util/cert/TrustAllManager.java
Java
gpl-2.0
675
/* * This is the source code of Telegram for Android v. 3.x.x. * It is licensed under GNU GPL v. 2 or later. * You should have received a copy of the license in this archive (see LICENSE). * * Copyright Nikolai Kudashov, 2013-2016. */ package com.panahit.ui.Cells; import android.annotation.SuppressLint; import ...
tooskagroup/test
TMessagesProj/src/main/java/com/panahit/ui/Cells/ContextLinkCell.java
Java
gpl-2.0
20,656
/* * Copyright 2007-2008 Sun Microsystems, Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * - Redistributions of source code must retain the above copyright * notice, this l...
retest/swingset3
src/org/retest/swingset3/demos/optionpane/OptionPaneDemo.java
Java
gpl-2.0
9,687
package wusc.edu.pay.facade.limit.entity; import java.io.Serializable; import java.util.List; import wusc.edu.pay.common.entity.BaseEntity; public class LimitSwitch extends BaseEntity implements Serializable { /** * 限制开关树形展现实体 */ private static final long serialVersionUID = -6854394410210712818L...
piaolinzhi/fight
dubbo/pay/pay-facade-limit/src/main/java/wusc/edu/pay/facade/limit/entity/LimitSwitch.java
Java
gpl-2.0
3,505
/** * Copyright (c) 2009--2010 Red Hat, Inc. * * This software is licensed to you under the GNU General Public License, * version 2 (GPLv2). There is NO WARRANTY for this software, express or * implied, including the implied warranties of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. You should have rece...
colloquium/spacewalk
java/code/src/com/redhat/rhn/frontend/action/channel/manage/AddCustomErrataAction.java
Java
gpl-2.0
8,833
/* * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Sof...
shannah/CodenameOne
CodenameOne/src/com/codename1/ui/tree/Tree.java
Java
gpl-2.0
21,134
/* * Copyright (C) 2009 AndroidNerds.org * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is...
androidnerds/aksunai
tests/src/org/androidnerds/app/aksunai/net/ConnectionManagerTest.java
Java
gpl-2.0
1,316
package com.markyshouse.mc; import net.minecraft.block.Block; import net.minecraft.block.BlockLiquid; import net.minecraft.block.BlockNewLog; import net.minecraft.block.BlockPlanks; import net.minecraft.block.material.Material; import net.minecraft.block.state.IBlockState; import net.minecraft.util.BlockPos; import ne...
PapaMarky/Castella
src/main/java/com/markyshouse/mc/TerrainMap.java
Java
gpl-2.0
7,283
/******************************************************************************* * Copyright (c) 2008 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is a...
bdaum/zoraPD
com.bdaum.zoom.ui.views.log/src/org/eclipse/ui/internal/views/log/LogFilesManager.java
Java
gpl-2.0
1,721
/* * Copyright (c) 1998-2011 Caucho Technology -- all rights reserved * * This file is part of Resin(R) Open Source * * Each copy or derived work must preserve the copyright notice and this * notice unmodified. * * Resin Open Source is free software; you can redistribute it and/or modify * it under the terms o...
dlitz/resin
modules/jcr/src/javax/jcr/ItemExistsException.java
Java
gpl-2.0
1,423
package window; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.MouseListener; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; import java.io.File; import java.io.FileNotFoundException; import java.io.PrintWriter; import java.io.UnsupportedEncoding...
TriCrose/Flow-Diagrams
src/window/MainWindow.java
Java
gpl-2.0
7,573
package fr.dauphine.mido.as.privatemarket.contrats.traitement; import java.io.IOException; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Date; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.Http...
pierreet/PrivateMarket
src/fr/dauphine/mido/as/privatemarket/contrats/traitement/ListeTitreEnchere.java
Java
gpl-2.0
1,747
package generated.test250; /** * Purpose: private access in overriden class * * @author Vaidas Gasiunas */ public cclass ClassA { public cclass InnerA { private int a; } } public cclass ClassB extends ClassA { public cclass InnerA { public void m() { a = 2; } } }
tud-stg-lang/caesar-compiler
test/CompilerErrorsTests/test250/CETestCase.java
Java
gpl-2.0
288
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2004-2010 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://...
lamsfoundation/lams
3rdParty_sources/ckeditor/net/fckeditor/response/GetResponse.java
Java
gpl-2.0
10,919
/* This file is part of tPortal. tPortal is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. tPortal is distributed in ...
seb0uil/tportal
src/net/tinyportal/service/google/GoogleService.java
Java
gpl-2.0
2,961
package ru.enjoy.server.data; public class MainCategory { public int id; public int categoryId; }
dmbel/Enjoy
app/src/main/java/ru/enjoy/server/data/MainCategory.java
Java
gpl-2.0
101
/** * Copyright (c) 2013, iquesters - All Rights Reserved. */ package com.iq.ams.action.apartment; import org.iq.action.Action; import org.iq.action.LaunchAction; /** * @author Nilotpal * */ @Action(id = "ApartmentSearchLA") public class ApartmentSearchLA extends LaunchAction { /** * *...
iquesters/ams
gen/com/iq/ams/action/apartment/ApartmentSearchLA.java
Java
gpl-2.0
608
/* * This source file is part of CaesarJ * For the latest info, see http://caesarj.org/ * * Copyright © 2003-2005 * Darmstadt University of Technology, Software Technology Group * Also see acknowledgements in readme.txt * * This program is free software; you can redistribute it and/or modify * it under the...
tud-stg-lang/caesar-compiler
src/org/caesarj/classfile/NoArgInstruction.java
Java
gpl-2.0
11,979
/* * The tracker package defines a set of video/image analysis tools * built on the Open Source Physics framework by Wolfgang Christian. * * Copyright (c) 2015 Douglas Brown * * Tracker is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by...
enati/tracker
src/org/opensourcephysics/cabrillo/tracker/DynamicParticle.java
Java
gpl-3.0
22,941
package at.fhv.audioracer.communication.world; public interface ICarClient { public byte getCarClientId(); public void updateVelocity(float speed, float direction); public void trim(); }
lumannnn/AudioRacer
AudioRacer-WorldCommunication/src/at/fhv/audioracer/communication/world/ICarClient.java
Java
gpl-3.0
207
/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any la...
queza85/edison
edison-portal-framework/edison-project-2016-portlet/docroot/WEB-INF/src/org/kisti/edison/project/model/impl/HistoryAppSimulationCacheModel.java
Java
gpl-3.0
5,779
/* * Copyright (C) 2014 Center of Excellence in Information Assurance * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later ve...
CoEIA/DEM
src/edu/coeia/chat/ChatPanel.java
Java
gpl-3.0
2,547
package net.java.dict4j.socket.command; import java.util.Arrays; import java.util.List; public class MockShowServerCommand extends MockCommand { @Override public String getCommandCode() { return "SHOW SERVER"; } @Override public String getTestCommandLine() { return "SHOW ...
ysaak/dict4j
src/test/java/net/java/dict4j/socket/command/MockShowServerCommand.java
Java
gpl-3.0
1,878
package com.envee.eshopping; import com.envee.eshopping.econtrol.SearchView; import com.envee.eshopping.econtrol.SearchView.OnServiewClickListener; import android.app.Activity; import android.os.Bundle; public class SearchActivity extends Activity { private SearchView searchView; @Override protected void onCre...
janchengit/android_sp
src/com/envee/eshopping/SearchActivity.java
Java
gpl-3.0
920
/** * Copyright (c) 2002-2012 "Neo Technology," * Network Engine for Objects in Lund AB [http://neotechnology.com] * * This file is part of Neo4j. * * Neo4j is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundati...
dksaputra/community
graph-algo/src/main/java/org/neo4j/graphalgo/impl/util/DoubleAdder.java
Java
gpl-3.0
1,043
package de.jClipCorn.util.listener; import de.jClipCorn.database.databaseElement.CCEpisode; public interface EpisodeSearchCallbackListener { void show(CCEpisode episode); }
Mikescher/jClipCorn
src/main/de/jClipCorn/util/listener/EpisodeSearchCallbackListener.java
Java
gpl-3.0
176
/*- * #%L * Genome Damage and Stability Centre SMLM ImageJ Plugins * * Software for single molecule localisation microscopy (SMLM) * %% * Copyright (C) 2011 - 2020 Alex Herbert * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as ...
aherbert/GDSC-SMLM
src/test/java/uk/ac/sussex/gdsc/smlm/function/gaussian/NbFreeCircularGaussian2DFunctionTest.java
Java
gpl-3.0
1,251
package fr.croixrouge.rdp.scheduler; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.springframework.web.context.ServletContextAware; import javax.servlet.ServletContext; public class ClockJob implements ServletContextAware { private ServletContext servletCo...
dev-mansonthomas/crf-rdp
JavaSource/fr/croixrouge/rdp/scheduler/ClockJob.java
Java
gpl-3.0
1,161
package br.edu.ifc.concordia.inf.veterinaria.model; import java.io.Serializable; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.OneToOne; import javax.persistence.Table; @Table(name="retorno") @E...
info-ifc-concordia/vetec
Veterinaria/src/main/java/br/edu/ifc/concordia/inf/veterinaria/model/Retorno.java
Java
gpl-3.0
1,631
package net.lecousin.media.jvlc.client; import java.rmi.RemoteException; import java.rmi.server.UnicastRemoteObject; import net.lecousin.framework.Pair; import net.lecousin.media.jvlc.server.IJVLCMedia; import net.lecousin.media.jvlc.client.IMediaListener; public class MediaListener extends UnicastRemoteObject impl...
lecousin/net.lecousin.media-0.1
net.lecousin.media.jvlc.client/library/src/net/lecousin/media/jvlc/client/MediaListener.java
Java
gpl-3.0
1,111
package bubbleindex; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.util.concurrent.Callable; /** * * @author t */ public class UpdateRunnable implements Callable<Integer> { private final String Category; private final String Selections; private final String Sources; ...
bigttrott/thebubbleindex
application/original-standalone/src/bubbleindex/UpdateRunnable.java
Java
gpl-3.0
3,865
package l2s.gameserver.model.entity.events.objects; import java.io.Serializable; import java.util.Comparator; import l2s.gameserver.model.Player; import l2s.gameserver.model.Skill; import l2s.gameserver.model.entity.events.impl.SiegeEvent; import l2s.gameserver.model.instances.NpcInstance; import l2s.gameserver.model...
pantelis60/L2Scripts_Underground
gameserver/src/main/java/l2s/gameserver/model/entity/events/objects/SiegeClanObject.java
Java
gpl-3.0
2,604
/** * Copyright (c) 2012 Todoroo Inc * * See the file "LICENSE" for the full license governing this code. */ package com.todoroo.astrid.reminders; import org.json.JSONObject; import android.app.Notification; import android.app.PendingIntent; import android.content.BroadcastReceiver; import android.content.Compone...
shaded2/Tasquid
astrid/plugin-src/com/todoroo/astrid/reminders/ReengagementReceiver.java
Java
gpl-3.0
5,544
package com.integreight.onesheeld.shields.fragments; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import com.integreight.onesheeld.R; import com.integreight.onesheeld.shields.ShieldFragmentParent; import com.integreight.onesheeld.shields.contro...
donaldhwong/1Sheeld
oneSheeld/src/main/java/com/integreight/onesheeld/shields/fragments/PatternFragment.java
Java
gpl-3.0
2,602
/* * HawkEye Redux * Copyright (C) 2012-2013 Cubeville <http://www.cubeville.org> and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * ...
Cubeville/HawkEye-Redux
impl/bukkit/src/main/java/org/cubeville/hawkeye/bukkit/listeners/InteractListener.java
Java
gpl-3.0
2,200
package com.bungie.netplatform.destiny.representation; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; import java.util.ArrayList; import java.util.List; import javax.annotation.Generated; @Generated("org.jsonschema2pojo") public class Trials { @SerializedName("hi...
jam01/LittleLight
littlelight/src/main/java/com/bungie/netplatform/destiny/representation/Trials.java
Java
gpl-3.0
1,300
package com.bytezone.diskbrowser.infocom; import java.util.ArrayList; import java.util.Collections; import java.util.List; import com.bytezone.diskbrowser.infocom.ZObject.Property; // -----------------------------------------------------------------------------------// class ObjectAnalyser // -----------------------...
dmolony/DiskBrowser
src/com/bytezone/diskbrowser/infocom/ObjectAnalyser.java
Java
gpl-3.0
7,536
/* * This file is part of EchoPet. * * EchoPet is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * EchoPet is distributed in th...
Samistine/EchoPetsDup
modules/EchoPet/src/main/java/com/samistine/echopet/api/pet/type/SquidPet.java
Java
gpl-3.0
1,228
/** * Copyright 2006 OCLC Online Computer Library Center 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 applicable law or * a...
repoxIST/repoxLight
repox-core/src/main/java/org/oclc/oai/server/verb/extension/GetMetadata.java
Java
gpl-3.0
5,548
package cn.jeesoft.qa.simple.db; /** * Entity mapped to table NOTE. */ public class Note { private Long id; /** Not-null value. */ private String text; private String comment; private java.util.Date date; public Note() { } public Note(Long id) { this.id = id; } pub...
tsdl2013/QuickAndroid
simple/src/cn/jeesoft/qa/simple/db/Note.java
Java
gpl-3.0
1,359
package com.matburt.mobileorg.gui; import android.app.SearchManager; import android.content.Intent; import android.database.Cursor; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import andr...
matburt/mobileorg-android
MobileOrg/src/main/java/com/matburt/mobileorg/gui/SearchActivity.java
Java
gpl-3.0
4,089
package org.xillium.core.intrinsic; import org.xillium.data.*; import org.xillium.core.*; import org.xillium.data.validation.*; /** * Ping &amp; echo. */ public class PingService implements Service { @Override public DataBinder run(DataBinder binder, Dictionary dict, Persistence persist) throws ServiceExce...
eztong/xillium
core/src/main/java/org/xillium/core/intrinsic/PingService.java
Java
gpl-3.0
431
package datamining.classification.knn.enums; public enum Bruises { bruises, no_bruises, }
fofferhorn/Data-Mining-Individual
src/datamining/classification/knn/enums/Bruises.java
Java
gpl-3.0
91
package no.shhsoft.basus.language.eval; import java.util.Set; import no.shhsoft.basus.language.eval.runtime.Console; import no.shhsoft.basus.language.eval.runtime.DrawingArea; import no.shhsoft.basus.utils.TextLocationHolder; import no.shhsoft.basus.value.ImageValue; import no.shhsoft.basus.value.Value; /** * @auth...
sverrehu/basus
evaluator/src/main/java/no/shhsoft/basus/language/eval/EvaluationContext.java
Java
gpl-3.0
1,227
package com.school.xiaoshidai.bean; /** * Created by hjs on 2016/3/17. */ public class ShouyeGridBean { private String topTextView; private String bottomTextView; public ShouyeGridBean(String topTextView, String bottomTextView, int shouyeImage) { this.topTextView = topTextView; this.bott...
hjshpu/xiaoshidai
app/src/main/java/com/school/xiaoshidai/bean/ShouyeGridBean.java
Java
gpl-3.0
955
package jsource.io.localization; /** * XMLBundleParser.java 12/28/02 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Library General Public License as published * by the Free Software Foundation; either version 2 of the License, or * (at your opt...
plevrakis/jsource
src/jsource/io/localization/XMLBundleParser.java
Java
gpl-3.0
3,543
/** * */ package de.zintel.sim.nbodies; import java.awt.Color; /** * @author friedo * */ public class SwingBodyProperty extends BodyProperty { /** * */ private static final long serialVersionUID = -4454748306686697295L; public static final String CLASSNAME = SwingBodyProperty.class.getSimpleName(); ...
friezi/sims-and-algs
src/main/java/de/zintel/sim/nbodies/SwingBodyProperty.java
Java
gpl-3.0
1,982
/* * Pixel Dungeon * Copyright (C) 2012-2015 Oleg Dolya * * Shattered Pixel Dungeon * Copyright (C) 2014-2021 Evan Debenham * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either vers...
00-Evan/shattered-pixel-dungeon
SPD-classes/src/main/java/com/watabou/noosa/Game.java
Java
gpl-3.0
7,664
/* * Copyright (c) 2016 ELAN e.V. * All rights reserved. This program and the accompanying materials * are made available under the terms of the GNU Public License v3.0 * which accompanies this distribution, and is available at * http://www.gnu.org/licenses/gpl.html */ package de.elanev.studip.android.app.user.d...
elan-ev/StudIPAndroidApp
app/src/test/java/de/elanev/studip/android/app/user/domain/GetUserDetailsTest.java
Java
gpl-3.0
1,843
package com.intfocus.hdmcre.util; import java.io.Serializable; /** * api 链接,宏 * * @author jay * @version 1.0 * @created 2016-01-06 * Created by lijunjie on 16/9/22. */ public class K extends PrivateURLs implements Serializable { public final static Integer kTimerInterval = 30; /** * API#paths */ ...
dengDWB/pm-android
app/src/main/java/com/intfocus/hdmcre/util/K.java
Java
gpl-3.0
4,948
package com.epam.jdi.uitests.testing.unittests.pageobjects.mainwindow.complextable; import com.epam.jdi.uitests.testing.unittests.composite.DynamicTable; import com.epam.jdi.uitests.win.winnium.elements.composite.Section; import com.epam.jdi.uitests.win.winnium.elements.pageobjects.annotations.objects.JTable; import c...
TAI-EPAM/JDI
Java/Tests/jdi-uitest-wintests/src/main/java/com/epam/jdi/uitests/testing/unittests/pageobjects/mainwindow/complextable/NestedComplexTableView.java
Java
gpl-3.0
1,095
package com.baeldung.java.reflection; @Greeter(greet="Good morning") public class Greetings { }
Niky4000/UsefulUtils
projects/tutorials-master/tutorials-master/core-java-modules/core-java-lang/src/main/java/com/baeldung/java/reflection/Greetings.java
Java
gpl-3.0
98
package com.g7s.zptdt.action; import org.openqa.selenium.WebElement; import com.g7s.zptdt.dto.BrowserElemtHandler; import com.g7s.zptdt.dto.LogoutPageAdaptor; public class Logout{ public static final Logout LogoutInstant = new Logout(); private Logout() { } public void logout( ) throws InterruptedException{ ...
sandyforawhile/ZptdtUIAutotest
com.g7s.zptdt/com/g7s/zptdt/action/Logout.java
Java
gpl-3.0
766
/* * Copyright (C) 2000 - 2008 TagServlet Ltd * * This file is part of Open BlueDragon (OpenBD) CFML Server Engine. * * OpenBD is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * Free Software Foundation,version 3. * * Open...
OpenBD/openbd-core
src/com/naryx/tagfusion/expression/function/ls/GetLocaleDisplayName.java
Java
gpl-3.0
2,649
package cn.kane.network.tcp; import java.io.BufferedReader; import java.io.Console; import java.io.File; import java.io.IOException; import java.io.InputStreamReader; import java.io.UnsupportedEncodingException; import java.lang.reflect.Constructor; import java.lang.reflect.Field; import java.nio.charset.Charset; impo...
kane-chen/jdkBaseTest
src/main/java/cn/kane/network/tcp/IoByteArrTest.java
Java
gpl-3.0
3,450
package com.example.dingyu.bean; import com.example.dingyu.support.utils.ObjectToStringUtility; import java.io.Serializable; /** * User: qii * Date: 12-9-26 */ public class UnreadBean implements Serializable { private int status; private int follower; private int cmt; private int dm; private i...
dingyu/Dingyu
src/com/example/dingyu/bean/UnreadBean.java
Java
gpl-3.0
2,118
package org.tic.floris.floristic; import android.os.Bundle; import android.support.v4.view.ViewPager; import android.support.v7.app.ActionBarActivity; import android.view.Menu; import android.view.MenuItem; import com.google.gson.Gson; import org.tic.floris.floristic.Adapters.GallerySwipeAdapter; import org.tic.flor...
AntoineAA/Useful-Plants-Android-Client
app/src/main/java/org/tic/floris/floristic/GalleryActivity.java
Java
gpl-3.0
2,544
/* * Pixel Dungeon * Copyright (C) 2012-2015 Oleg Dolya * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * T...
rodriformiga/pixel-dungeon
src/com/watabou/pixeldungeon/items/bags/ScrollHolder.java
Java
gpl-3.0
1,353
/* * Copyright (C) 2009-2017 by the geOrchestra PSC * * This file is part of geOrchestra. * * geOrchestra is free software: you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your opt...
MSHE-Ledoux/georchestra-geosync
mapfishapp/src/main/java/org/georchestra/mapfishapp/ws/UpLoadGeoFileController.java
Java
gpl-3.0
29,743
/* * Sweeper - Duplicate file cleaner * Copyright (C) 2012 Bogdan Ciprian Pistol * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) a...
bogdanu/sweeper
src/main/java/gg/pistol/sweeper/gui/component/MessageDialog.java
Java
gpl-3.0
3,558
/* * This file is part of SGEA - Sistema de Gestão de Eventos Acadêmicos - TADS IFNMG Campus Januária. * * SGEA is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or ...
petroniocandido/br.edu.ifnmg.core
src/br/edu/ifnmg/DomainModel/Services/LogService.java
Java
gpl-3.0
937
/* * This file is part of travel-expense by Elliot Colp. * * travel-expense is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. ...
TheLastBanana/travel-expense
src/ca/ualberta/cs/colpnotes/helper/ClaimHelper.java
Java
gpl-3.0
2,943
package br.org.otus.response.builders; import br.org.otus.response.info.AlreadyExist; public class User { public static AlreadyExist AlreadyExist; }
ccem-dev/otus-api
source/otus-business/src/main/java/br/org/otus/response/builders/User.java
Java
gpl-3.0
153
package com.dforensic.test.phonedata; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStream; import android.content.Context; import android.os.Environment; import android.util.Log; public class StorePhoneData { private File mFile = null; private String mFile...
SeoulTech/Manal
PhoneDataLeakTest/src/com/dforensic/test/phonedata/StorePhoneData.java
Java
gpl-3.0
1,668
/** * Java Settlers - An online multiplayer version of the game Settlers of Catan * This file Copyright (C) 2021 Jeremy D Monin <jeremy@nand.net> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foun...
jdmonin/JSettlers2
src/main/java/soc/extra/server/GameEventLog.java
Java
gpl-3.0
46,411
package org.flyve.mdm.agent.core.permission; import android.content.Context; import android.support.test.InstrumentationRegistry; import android.support.test.rule.ActivityTestRule; import org.flyve.mdm.agent.ui.EnrollmentActivity; import org.junit.Assert; import org.junit.Before; import org.junit.Rule; import org.jun...
flyve-mdm/flyve-mdm-android
app/src/androidTest/java/org/flyve/mdm/agent/core/permission/PermissionModelTest.java
Java
gpl-3.0
2,329
/***************************************************************** * This file is part of Managing Agricultural Research for Learning & * Outcomes Platform (MARLO). * MARLO is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free...
CCAFS/MARLO
marlo-data/src/main/java/org/cgiar/ccafs/marlo/data/dao/mysql/CenterNextuserTypeDAO.java
Java
gpl-3.0
2,732
package app.freerouting.board; import app.freerouting.datastructures.Signum; import app.freerouting.datastructures.Stoppable; import app.freerouting.geometry.planar.IntBox; import app.freerouting.geometry.planar.IntOctagon; import app.freerouting.geometry.planar.Line; import app.freerouting.geometry.planar.LineSegmen...
freerouting/freerouting
src/main/java/app/freerouting/board/PolylineTrace.java
Java
gpl-3.0
52,570
/******************************************************************************* * Copyright (c) 2011-2014 SirSengir. * All rights reserved. This program and the accompanying materials * are made available under the terms of the GNU Lesser Public License v3 * which accompanies this distribution, and is available at...
ThiagoGarciaAlves/ForestryMC
src/main/java/forestry/core/ForestryCore.java
Java
gpl-3.0
6,474
package eu.grigoriev.constants; public class Teams { public static class Types { public static final String NATIONAL = "NATIONAL"; public static final String CLUB = "CLUB"; } public static class National { public static final String ALBANIA = "Albania"; public static final ...
grigoriev/betsapp
src/main/java/eu/grigoriev/constants/Teams.java
Java
gpl-3.0
3,063
/* gnutlspkcs11 * * Author: Carlos C. <jccarlos.a@gmail.com> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. *...
jcca/gnutlspkcs11
src/main/java/org/gnutlspkcs11/GNUTLS_PK.java
Java
gpl-3.0
998
package com.baeldung.reduce.utilities; import java.util.List; import java.util.function.BiFunction; import java.util.logging.Level; import java.util.logging.Logger; public abstract class NumberUtils { private static final Logger LOGGER = Logger.getLogger(NumberUtils.class.getName()); public static int divid...
Niky4000/UsefulUtils
projects/tutorials-master/tutorials-master/java-streams-2/src/main/java/com/baeldung/reduce/utilities/NumberUtils.java
Java
gpl-3.0
1,859
/******************************************************************************* * * Copyright (c) 2016 Fujitsu Services Ltd. * * Author: Nick Battle * * This file is part of VDMJ. * * VDMJ is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License a...
nickbattle/vdmj
vdmj/src/main/java/com/fujitsu/vdmj/ast/expressions/ASTLetBeStExpression.java
Java
gpl-3.0
1,981
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package dao; import java.util.List; import model.Movimiento; import model.MovimientosFechas; import org.springframework.jdbc.core.Bean...
ricardo7227/DAW
Cliente/Aplicacion_bancaria/AppBancaria/src/main/java/dao/MovimientosDAO.java
Java
gpl-3.0
2,016
package org.thoughtcrime.securesms.conversation; import android.app.Activity; import android.graphics.PointF; import android.view.MotionEvent; import androidx.annotation.NonNull; import androidx.appcompat.widget.Toolbar; import org.thoughtcrime.securesms.components.MaskView; import org.thoughtcrime.securesms.databas...
cascheberg/Signal-Android
app/src/main/java/org/thoughtcrime/securesms/conversation/ConversationReactionDelegate.java
Java
gpl-3.0
4,393