answer
stringlengths
17
10.2M
package org.python.pydev.editor.actions; import org.eclipse.jface.action.IStatusLineManager; import org.eclipse.jface.text.Assert; import org.eclipse.jface.text.IRegion; import org.eclipse.jface.text.ITextListener; import org.eclipse.jface.text.ITextViewer; import org.eclipse.jface.text.ITextViewerExtension; import org...
package com.spaceproject.systems; import com.badlogic.ashley.core.Entity; import com.badlogic.ashley.core.EntityListener; import com.badlogic.ashley.core.Family; import com.badlogic.ashley.systems.IteratingSystem; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.graphics.g2d.ParticleEffect; import com.badlogic.gdx....
// $Id: TileManager.java,v 1.25 2002/10/17 17:42:53 mdb Exp $ package com.threerings.media.tile; import java.awt.Image; import java.io.IOException; import com.samskivert.io.PersistenceException; import com.samskivert.util.HashIntMap; import com.threerings.media.Log; import com.threerings.media.ImageManager; /** * The ...
package org.spoofax.interpreter.terms; import java.util.Collection; public interface IStrategoTermBuilder { public IStrategoConstructor makeConstructor(String string, int arity); // @Deprecated public IStrategoAppl makeAppl(IStrategoConstructor ctr, IStrategoList kids); public IStrategoAppl makeAppl(IStrate...
package org.jaxen.expr; abstract class DefaultBinaryExpr extends DefaultExpr implements BinaryExpr { private Expr lhs; private Expr rhs; DefaultBinaryExpr(Expr lhs, Expr rhs) { this.lhs = lhs; this.rhs = rhs; } public Expr getLHS() { return this.lhs; } public ...
package bisq.core.locale; import bisq.core.app.BisqEnvironment; import bisq.core.btc.BaseCurrencyNetwork; import bisq.core.dao.governance.asset.AssetService; import bisq.core.filter.FilterManager; import bisq.asset.Asset; import bisq.asset.AssetRegistry; import bisq.asset.Coin; import bisq.asset.Token; import bisq.asse...
package com.ecyrd.jspwiki.xmlrpc; import com.ecyrd.jspwiki.*; import junit.framework.*; import java.io.*; import java.util.*; import org.apache.log4j.*; import org.apache.xmlrpc.*; public class RPCHandlerTest extends TestCase { WikiEngine m_engine; RPCHandler m_handler; Properties m_props; static final ...
package org.jsmpp.bean; import java.nio.ByteBuffer; import org.jsmpp.util.IntUtil; import org.jsmpp.util.OctetUtil; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public abstract class OptionalParameter { private static final Logger logger = LoggerFactory.getLogger(OptionalParameter.class); public fin...
package hudson.model; import hudson.Util; import hudson.EnvVars; import hudson.diagnosis.OldDataMonitor; import hudson.model.Queue.QueueAction; import hudson.model.labels.LabelAssignmentAction; import hudson.model.queue.SubTask; import hudson.tasks.BuildStep; import hudson.tasks.BuildWrapper; import hudson.util.Variabl...
package hudson.slaves; import hudson.EnvVars; import hudson.Util; import hudson.Extension; import hudson.model.Descriptor; import jenkins.model.Jenkins; import hudson.model.TaskListener; import hudson.remoting.Channel; import hudson.util.StreamCopyThread; import hudson.util.FormValidation; import hudson.util.ProcessTre...
package hudson.slaves; import hudson.ExtensionPoint; import hudson.model.*; import jenkins.model.Jenkins; import static hudson.model.LoadStatistics.DECAY; import hudson.model.MultiStageTimeSeries.TimeScale; import hudson.Extension; import javax.annotation.Nonnull; import javax.annotation.concurrent.GuardedBy; import ja...
package com.czbix.v2ex.parser; import com.czbix.v2ex.model.Avatar; import com.google.common.base.Preconditions; import org.jsoup.nodes.Document; import org.jsoup.nodes.Element; import org.jsoup.select.Elements; import org.xml.sax.SAXException; import java.io.IOException; import java.util.regex.Matcher; import java.util...
package hudson.tasks; import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import hudson.AbortException; import hudson.FilePath; import jenkins.MasterToSlaveFileCallable; import hudson.Launcher; import hudson.Util; import hudson.Extension; import hudson.Functions; import jenkins.util.SystemProperties; import huds...
package com.example.lit.saving; import android.content.Context; import com.google.gson.Gson; import com.google.gson.reflect.TypeToken; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream;...
package br.senac.tads.pi3a.controller; import br.senac.tads.pi3a.dao.DaoHistoricoProduto; import br.senac.tads.pi3a.dao.DaoItensLoja; import br.senac.tads.pi3a.dao.DaoLoja; import br.senac.tads.pi3a.dao.DaoProduto; import br.senac.tads.pi3a.inputFilter.InputFilterManutencaoProduto; import br.senac.tads.pi3a.inputFilter...
package org.apache.velocity.util; import java.lang.reflect.Method; /** * Very primitive introspector, but takes care of most * cases by simply matching the method name and the * number of parameters. Parameter comparision will * definitely be added. Most likely will use the * MethodMatcher from the Tea code that B...
package jenkins.model; import hudson.ExtensionPoint; import hudson.FilePath; import hudson.Launcher; import hudson.model.AbstractBuild; import hudson.model.BuildListener; import hudson.model.DirectoryBrowserSupport; import hudson.model.Executor; import hudson.model.Job; import hudson.model.Run; import hudson.tasks.Arti...
package com.firebase.uidemo; import android.content.Intent; import android.content.SharedPreferences; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import com.firebase.uidemo.auth.AuthUiActivity; public class SplashActivity extends AppCompatActivity { @Override protected void onCrea...
package org.jdesktop.swingx; import java.awt.Color; import java.awt.Dimension; import java.awt.GridBagConstraints; import java.awt.GridBagLayout; import java.awt.Insets; import javax.swing.Box; import javax.swing.Icon; import javax.swing.JLabel; import javax.swing.JSeparator; import javax.swing.SwingConstants; import j...
package org.jdesktop.swingx; import java.beans.BeanDescriptor; /** * BeanInfo class for JXTitledPanel. * * @author Richard, Jan Stola */ public class JXTitledPanelBeanInfo extends BeanInfoSupport { public JXTitledPanelBeanInfo() { super(JXTitledPanel.class); } protected void initialize() { ...
package ua.com.fielden.platform.utils; import static java.lang.String.format; import static ua.com.fielden.platform.entity.AbstractEntity.COMMON_PROPS; import static ua.com.fielden.platform.reflection.AnnotationReflector.getKeyType; import java.io.Serializable; import java.lang.reflect.Field; import java.math.BigDecima...
package com.platypii.baseline; import android.content.Intent; import android.content.SharedPreferences; import android.os.Bundle; import android.os.Handler; import android.os.StrictMode; import android.preference.PreferenceManager; import android.support.annotation.NonNull; import android.util.Log; import android.view....
package org.jdesktop.swingx.plaf; import java.awt.Color; import java.awt.Dimension; import java.awt.Font; import java.awt.Insets; import java.util.Enumeration; import java.util.HashMap; import java.util.Locale; import java.util.Map; import java.util.MissingResourceException; import java.util.ResourceBundle; import java...
package uk.gov.dvla.core; import org.apache.commons.lang3.StringUtils; public class GenderMapper { private static final String MALE = "MALE"; private static final String FEMALE = "FEMALE"; public static int toInt(String genderStr) { if (StringUtils.equalsIgnoreCase(genderStr, MALE)) retu...
package co.uk.niadel.mpi.modhandler.loadhandler; import co.uk.niadel.mpi.asm.ASMRegistry; import co.uk.niadel.mpi.client.ClientRegistry; import co.uk.niadel.mpi.common.NAPIData; import co.uk.niadel.mpi.modhandler.*; import co.uk.niadel.mpi.util.ModList; import java.io.File; import java.io.IOException; import java.lang....
package org.jivesoftware.openfire.group; import org.jivesoftware.database.DbConnectionManager; import org.jivesoftware.openfire.XMPPServer; import org.jivesoftware.openfire.event.GroupEventDispatcher; import org.jivesoftware.util.Log; import org.jivesoftware.util.cache.CacheSizes; import org.jivesoftware.util.cache.Cac...
package utils; import java.util.ArrayList; import java.util.List; import java.util.regex.Matcher; import java.util.regex.Pattern; import org.apache.commons.lang3.StringEscapeUtils; public class LinkUtils { public static List<Pair<String, String>> createHtmlLinks(List<String> links) { List<Pair<String, Strin...
package info.nightscout.androidaps; import android.app.Application; import android.bluetooth.BluetoothAdapter; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; import android.content.res.Resources; import android.os.SystemClock...
package org.jsimpledb.kv.simple; import java.io.BufferedInputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import javax.xml.stream.XMLStreamException; import org.dellroad.stuff.io.At...
package com.intellij.ide.projectView.impl; import com.intellij.ProjectTopics; import com.intellij.history.LocalHistory; import com.intellij.history.LocalHistoryAction; import com.intellij.icons.AllIcons; import com.intellij.ide.*; import com.intellij.ide.impl.ProjectViewSelectInTarget; import com.intellij.ide.projectVi...
package org.stepic.droid.analytic; import android.os.Bundle; import org.jetbrains.annotations.NotNull; public interface Analytic { interface Preferences { String VIDEO_QUALITY = "video quality was chosen"; } interface Interaction { String CLICK_SIGN_IN = "click sign in on launch screen"; ...
package org.tuckey.web.filters.urlrewrite; import org.tuckey.web.filters.urlrewrite.extend.RewriteMatch; import org.tuckey.web.filters.urlrewrite.utils.Log; import org.tuckey.web.filters.urlrewrite.utils.StringMatchingMatcher; import org.tuckey.web.filters.urlrewrite.utils.StringUtils; import javax.servlet.FilterChain;...
package com.intellij.ide.util.gotoByName; import com.google.common.annotations.VisibleForTesting; import com.google.common.primitives.Ints; import com.intellij.Patches; import com.intellij.codeInsight.daemon.DaemonCodeAnalyzer; import com.intellij.find.findUsages.PsiElement2UsageTargetAdapter; import com.intellij.icons...
package com.christofferklang.pyxl.parsing; import com.intellij.lexer.FlexAdapter; import java.io.Reader; public class PyxlLexerAdapter extends FlexAdapter { public PyxlLexerAdapter() { super(new PyxlLexer((Reader) null)); } }
package uk.ac.tees.donut.squad.posts; import com.google.android.gms.maps.model.LatLng; public class Place { public String placeId; public String name; public String interest; public String description; public Double locLat; public Double locLong; public LatLng latLng; public String addre...
package com.cosmicdan.reignadditionals.events; import java.util.ArrayList; import java.util.List; import org.apache.commons.lang3.ArrayUtils; import org.apache.logging.log4j.LogManager; import com.cosmicdan.reignadditionals.ModConfig; import com.cosmicdan.reignadditionals.client.gui.GuiGameOverlay; import com.cosmicdan...
package com.haxademic.app.haxmapper; import com.haxademic.app.haxmapper.textures.BaseTexture; import com.haxademic.app.haxmapper.textures.TextureAppFrame2d; import com.haxademic.app.haxmapper.textures.TextureAppFrameEq2d; import com.haxademic.app.haxmapper.textures.TextureAppFrameWaveformCircle; import com.haxademic.ap...
package com.intellij.openapi.wm.impl; import com.intellij.icons.AllIcons; import com.intellij.ide.ui.UISettings; import com.intellij.ide.ui.UISettingsListener; import com.intellij.openapi.actionSystem.*; import com.intellij.openapi.actionSystem.ex.ActionUtil; import com.intellij.openapi.project.DumbAwareAction; import ...
package com.haxademic.app.haxmapper.mappers; import java.util.ArrayList; import oscP5.OscMessage; import processing.core.PApplet; import com.haxademic.app.haxmapper.HaxMapper; import com.haxademic.app.haxmapper.distribution.AudioPixelInterface; import com.haxademic.app.haxmapper.overlays.MeshLines.MODE; import com.haxa...
package com.intellij.ui; import com.intellij.openapi.diagnostic.Logger; import com.intellij.openapi.project.Project; import com.intellij.openapi.wm.ToolWindow; import com.intellij.openapi.wm.ToolWindowManager; import com.intellij.openapi.wm.ex.ToolWindowManagerListener; import com.intellij.ui.viewModel.definition.ToolW...
package com.mcbans.firestar.mcbans.pluginInterface; import java.util.ArrayList; import java.util.HashMap; import org.bukkit.ChatColor; import com.mcbans.firestar.mcbans.bukkitInterface; import com.mcbans.firestar.mcbans.request.jsonHandler; public class connect{ private bukkitInterface MCBans; private HashMap<S...
package com.mebigfatguy.fbcontrib.detect; import java.util.BitSet; import java.util.HashMap; import java.util.HashSet; import java.util.Iterator; import java.util.LinkedList; import java.util.Map; import java.util.Set; import org.apache.bcel.Constants; import org.apache.bcel.classfile.AnnotationEntry; import org.apache...
package com.wb.nextgenlibrary.widget; import android.content.Context; import android.os.Handler; import android.os.Message; import android.util.AttributeSet; import android.util.Log; import android.view.Gravity; import android.view.KeyEvent; import android.view.LayoutInflater; import android.view.MotionEvent; import an...
package com.backendless; import android.content.res.Resources; import com.backendless.async.callback.AsyncCallback; import com.backendless.core.responder.AdaptingResponder; import com.backendless.core.responder.policy.CollectionAdaptingPolicy; import com.backendless.exceptions.BackendlessException; import com.backendle...
package com.fsck.k9; import java.security.cert.CertificateException; import java.security.cert.X509Certificate; import java.util.ArrayList; import java.util.Arrays; import java.util.Calendar; import java.util.Collections; import java.util.Date; import java.util.LinkedList; import java.util.List; import java.util.Map; i...
package com.mapzen.tangram; import android.content.res.AssetManager; import android.graphics.Bitmap; import android.graphics.PointF; import android.graphics.Rect; import android.opengl.GLSurfaceView; import android.opengl.GLSurfaceView.Renderer; import android.os.Build; import android.os.Handler; import android.support...
package com.jme.light; import com.jme.renderer.ColorRGBA; /** * <code>Light</code> defines the attributes of a light element. This class * is abstract and intended to be subclassed by specific lighting types. A * light will illuminate portions of the scene by assigning its properties * to the objects in the scene. ...
package com.kaltura.playkit.plugins; import android.content.Context; import android.util.Log; import com.google.gson.JsonObject; import com.kaltura.playkit.LogEvent; import com.kaltura.playkit.MessageBus; import com.kaltura.playkit.PKEvent; import com.kaltura.playkit.PKLog; import com.kaltura.playkit.PKPlugin; import c...
package git4idea.checkin; import com.intellij.openapi.extensions.ExtensionPointName; import com.intellij.openapi.project.Project; import com.intellij.openapi.util.Couple; import com.intellij.openapi.vcs.FilePath; import org.jetbrains.annotations.NotNull; import java.util.Collection; import java.util.List; import java.u...
package org.jetbrains.plugins.gradle.importing; import com.intellij.codeHighlighting.HighlightDisplayLevel; import com.intellij.codeInspection.ex.InspectionProfileImpl; import com.intellij.codeInspection.ex.ScopeToolState; import com.intellij.ide.impl.ProjectUtil; import com.intellij.idea.Bombed; import com.intellij.op...
package com.intellij.uiDesigner.i18n; import com.intellij.codeInspection.BatchQuickFix; import com.intellij.codeInspection.CommonProblemDescriptor; import com.intellij.codeInspection.LocalQuickFix; import com.intellij.codeInspection.ProblemDescriptor; import com.intellij.codeInspection.i18n.JavaI18nUtil; import com.int...
package com.hartveld.commons.db; import static com.google.common.base.Preconditions.checkArgument; import static com.google.common.base.Preconditions.checkNotNull; import static org.apache.commons.lang3.StringUtils.isNotEmpty; import java.util.List; import javax.persistence.EntityManager; import javax.persistence.Entit...
package com.intellij.debugger.ui; import com.intellij.codeInsight.CodeInsightBundle; import com.intellij.codeInsight.hint.HintManager; import com.intellij.codeInsight.hint.HintUtil; import com.intellij.debugger.DebuggerBundle; import com.intellij.debugger.DebuggerInvocationUtil; import com.intellij.debugger.DebuggerMan...
package dr.app.beauti.clockModelsPanel; import dr.app.beauti.BeautiFrame; import dr.app.beauti.BeautiPanel; import dr.app.beauti.ComboBoxRenderer; import dr.app.beauti.options.BeautiOptions; import dr.app.beauti.options.ClockModelGroup; import dr.app.beauti.options.PartitionClockModel; import dr.app.beauti.types.OldClo...
package kramyer.urbano; import kramyer.urbano.dialogs.CustomDialog; /** * * @author CLOMA-ALCANTARA */ public class ConfirmDialogPlain { public static void main(String[] args) { String Message = "Do you like this Custom Dialog huh?"; int Choice = CustomDialog.showConfirmMessageBox(null, Message);...
package edu.berkeley.guir.prefuse.action.filter; import java.util.Iterator; import edu.berkeley.guir.prefuse.EdgeItem; import edu.berkeley.guir.prefuse.ItemRegistry; import edu.berkeley.guir.prefuse.NodeItem; import edu.berkeley.guir.prefuse.graph.Edge; import edu.berkeley.guir.prefuse.graph.Graph; import edu.berkeley....
package to.etc.domui.state; import java.util.*; import javax.annotation.*; import javax.servlet.http.*; import to.etc.domui.dom.html.*; import to.etc.domui.login.*; import to.etc.domui.server.*; import to.etc.domui.trouble.*; public class UIContext { static private ThreadLocal<IRequestContext> m_current = new Threa...
package fitnesse.testsystems.slim.tables; import fitnesse.slim.SlimClient; import fitnesse.slim.converters.VoidConverter; import fitnesse.slim.instructions.*; import fitnesse.testsystems.slim.HtmlTableScanner; import fitnesse.testsystems.slim.MockSlimTestContext; import fitnesse.testsystems.slim.Table; import fitnesse....
package org.voltcore.zk; import java.nio.ByteBuffer; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.HashMap; import java.util.HashSet; import java.util.List; import java.util.ListIterator; import java.util.Map; import java.util.Set; import java.util.TreeSet; import j...
package bisq.desktop.main; import bisq.desktop.Navigation; import bisq.desktop.common.view.CachingViewLoader; import bisq.desktop.common.view.FxmlView; import bisq.desktop.common.view.InitializableView; import bisq.desktop.common.view.View; import bisq.desktop.common.view.ViewLoader; import bisq.desktop.components.Auto...
package org.sakaiproject.profile2.impl; import java.util.ArrayList; import java.util.List; import org.apache.commons.lang.StringUtils; import org.apache.log4j.Logger; import org.sakaiproject.api.common.edu.person.SakaiPerson; import org.sakaiproject.profile2.api.Profile; import org.sakaiproject.profile2.api.ProfileCons...
package com.charlesmadere.hummingbird.views; import android.annotation.TargetApi; import android.content.Context; import android.os.Build; import android.text.TextUtils; import android.util.AttributeSet; import android.view.View; import com.charlesmadere.hummingbird.activities.UserActivity; import com.charlesmadere.hum...
package org.openprovenance.prov.xml; import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; import java.util.List; import java.util.Hashtable; import java.net.URI; import javax.xml.bind.JAXBException; import javax.xml.namespace.QName; import org.xml.sax.SAXException; import junit.framewo...
package info.guardianproject.otr.app.im.plugin; import info.guardianproject.otr.app.im.engine.Address; import android.os.Parcel; public class XmppAddress extends Address { private String address; private String name; public XmppAddress() { } public XmppAddress(String name, String address) { ...
package info.slony.clustertest.testcoordinator; import info.slony.clustertest.testcoordinator.script.ClientScript; import info.slony.clustertest.testcoordinator.script.ClientWorkerServer; import info.slony.clustertest.testcoordinator.script.ExecutionObserver; import info.slony.clustertest.testcoordinator.script.TimerHa...
// samskivert library - useful routines for java programs // This library is free software; you can redistribute it and/or modify it // (at your option) any later version. // This library is distributed in the hope that it will be useful, // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // You shoul...
package io.moquette.spi.impl; import io.netty.buffer.ByteBuf; import java.nio.ByteBuffer; /** * * @author andrea */ class DebugUtils { static String payload2Str(ByteBuffer content) { byte[] b = new byte[content.remaining()]; content.mark(); content.get(b); content.reset(); ...
package com.sarality.app.view.nav; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.view.View; import com.sarality.app.view.action.BaseViewAction; import com.sarality.app.view.action.TriggerType; import com.sarality.app.view.action.ViewActionTrigger; import com....
// $Id: PresentsClient.java,v 1.56 2003/05/24 01:50:33 mdb Exp $ package com.threerings.presents.server; import java.io.IOException; import java.net.InetAddress; import java.util.HashMap; import java.util.Iterator; import com.samskivert.util.HashIntMap; import com.threerings.presents.Log; import com.threerings.presents...
// Narya library - tools for developing networked games // This library is free software; you can redistribute it and/or modify it // (at your option) any later version. // This library is distributed in the hope that it will be useful, // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // You should ...
// Narya library - tools for developing networked games // This library is free software; you can redistribute it and/or modify it // (at your option) any later version. // This library is distributed in the hope that it will be useful, // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // You should ...
// Narya library - tools for developing networked games // This library is free software; you can redistribute it and/or modify it // (at your option) any later version. // This library is distributed in the hope that it will be useful, // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // You should ...
package com.twitter.mesos.scheduler; import com.google.common.base.Function; import com.google.common.base.Preconditions; import com.google.common.base.Predicate; import com.google.common.collect.ImmutableMap; import com.google.common.collect.Iterables; import com.google.common.collect.Lists; import com.google.common.c...
// $Id: Tag.java,v 1.5 2003/01/10 09:39:43 bpeters Exp $ package org.marc4j.marc; /** * <p><code>Tag</code> defines behaviour for a MARC tag. </p> * * <p>A MARC tag is a three character string used to identify an * associated variable field. According to the MARC standard the tag may * consist of ASCII numeric ch...
package org.apache.velocity.runtime.directive; import java.io.Writer; import java.io.IOException; import java.lang.reflect.Method; import java.util.Collection; import java.util.Enumeration; import java.util.Iterator; import java.util.Map; import java.util.Vector; import org.apache.velocity.Context; import org.apache.ve...
package org.videolan; import java.io.FilePermission; import java.io.File; import java.util.PropertyPermission; import java.security.AccessController; import java.security.Permission; import java.security.PrivilegedAction; final class BDJSecurityManager extends SecurityManager { private String discRoot; private ...
package cn.momia.mapi.api.user; import cn.momia.api.user.ChildServiceApi; import cn.momia.api.user.SmsServiceApi; import cn.momia.api.course.CouponServiceApi; import cn.momia.api.im.ImServiceApi; import cn.momia.api.user.AuthServiceApi; import cn.momia.api.user.UserServiceApi; import cn.momia.api.user.dto.Child; import...
package HxCKDMS.HxCLasers.Entity; import HxCKDMS.HxCLasers.Api.ILaser; import HxCKDMS.HxCLasers.Api.LensRegistry; import net.minecraft.block.Block; import net.minecraft.entity.Entity; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.AxisAlignedBB; import net...
package be.isach.samaritan.birthday; import be.isach.samaritan.Samaritan; import com.google.common.collect.Maps; import net.dv8tion.jda.entities.Guild; import net.dv8tion.jda.entities.User; import org.joda.time.DateTime; import org.joda.time.DateTimeZone; import org.joda.time.Instant; import org.joda.time.format.DateTi...
package pylos.test; import pylos.model.Model; import pylos.model.Position; public class MainTest extends PylosTestCase { public void testInit() { assertTrue(Model.board.isEmpty()); } public void testAnyBallAt() { assertFalse(Model.board.anyBallAt(Position.at(0, 0, 0))); Model.current...
package com.dumptruckman.gmtools; import com.dumptruckman.gmtools.commands.*; import com.dumptruckman.gmtools.configuration.Config; import com.dumptruckman.gmtools.listeners.ChunkyPlayerEvents; import com.dumptruckman.gmtools.listeners.GMToolsPlayerListener; import com.dumptruckman.gmtools.permissions.Perms; import com...
package com.enderio.core.common; import java.lang.annotation.Annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import java.lang.reflect.Field; import java.lang.reflect.Method; import java.util.Arra...
package ch.lambdaj.function.closure; import static ch.lambdaj.function.closure.ClosuresFactory.*; import java.lang.reflect.*; import ch.lambdaj.proxy.*; /** * @author Mario Fusco */ class ProxyClosure extends InvocationInterceptor { private boolean registered = false; private AbstractClosure closure; prot...
// This file is part of the Fuel Java SDK. // obtaining a copy of this software and associated documentation // files (the "Software"), to deal in the Software without restriction, // including without limitation the rights to use, copy, modify, // of the Software, and to permit persons to whom the Software // is furni...
package com.example.service; import java.util.List; public interface ChordService { List<String> getBasicChords(String key); List<String> addSuggestedChord(String key, List<String> songChords); List<String> jimiPickNextChord(List<String> songChords); String getNextChord(String lastChord); Strin...
package com.austinv11.etf.util.parsing; import com.austinv11.etf.erlang.*; import com.austinv11.etf.util.BertCompatible; import com.austinv11.etf.util.ETFConstants; import com.austinv11.etf.util.ETFException; import java.io.UnsupportedEncodingException; import java.math.BigInteger; import java.nio.ByteBuffer; import ja...
package com.ezardlabs.dethsquare; import com.ezardlabs.dethsquare.TextureAtlas.Sprite; public class GuiText extends BoundedComponent { private String text; private TextureAtlas font; private float fontSize; private float spaceWidth; public GameObject[] characters = new GameObject[0]; public GuiT...
package springies; import java.io.File; import java.util.ArrayList; import java.util.HashMap; import java.util.Map; import java.util.Set; import javax.swing.JFileChooser; import javax.swing.filechooser.FileNameExtensionFilter; import org.w3c.dom.Node; import jgame.*; import jgame.platform.*; import jgame.JGColor; impor...
package com.github.lstephen.ootp.ai; import com.github.lstephen.ootp.ai.config.Config; import com.github.lstephen.ootp.ai.data.Id; import com.github.lstephen.ootp.ai.draft.DraftReport; import com.github.lstephen.ootp.ai.io.Printables; import com.github.lstephen.ootp.ai.ootp5.report.SpringTraining; import com.github.lst...
package com.etsy.jenkins.cli; import com.etsy.jenkins.cli.handlers.ProxyUserOptionHandler; import hudson.AbortException; import hudson.EnvVars; import hudson.Extension; import hudson.cli.CLICommand; import hudson.console.HyperlinkNote; import hudson.model.AbstractBuild; import hudson.model.AbstractProject; import hudso...
package com.eyeq.pivot4j.ui.impl; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import org.olap4j.Axis; import org.olap4j.Position; import org.olap4j.metadata.Hierarchy; import org.olap4j.metadata.Level; import org.olap4j.metadata.Member; import org.olap4j.metadata.P...
package com.facebook.litho; import android.content.res.Resources; import android.content.res.TypedArray; import android.graphics.drawable.Drawable; import android.support.annotation.AttrRes; import android.support.annotation.ColorInt; import android.support.annotation.DimenRes; import android.support.annotation.Dimensi...
package com.facebook.litho; import android.content.res.Resources; import android.content.res.TypedArray; import android.graphics.drawable.Drawable; import android.support.annotation.AttrRes; import android.support.annotation.ColorInt; import android.support.annotation.DimenRes; import android.support.annotation.Dimensi...
package com.headstartech.csv; import com.google.common.io.Files; import groovy.lang.GroovyClassLoader; import org.apache.commons.cli.*; import org.apache.commons.io.filefilter.WildcardFileFilter; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.boot.CommandLineRunner; import org.sprin...
package com.jcabi.github.mock; import com.jcabi.aspects.Immutable; import com.jcabi.aspects.Loggable; import com.jcabi.github.Commit; import com.jcabi.github.Content; import com.jcabi.github.Contents; import com.jcabi.github.Coordinates; import com.jcabi.github.Repo; import java.io.IOException; import java.util.Map; im...
// This file is part of the Kaltura Collaborative Media Suite which allows users // to do with audio, video, and animation what Wiki platfroms allow them to do with // text. // This program is free software: you can redistribute it and/or modify // published by the Free Software Foundation, either version 3 of the // T...
package com.google.sps.servlets; import com.google.appengine.api.datastore.Key; import com.google.appengine.api.datastore.KeyFactory; import com.google.sps.data.User; import java.io.IOException; import java.util.List; import java.util.Collections; import javax.servlet.annotation.WebServlet; import javax.servlet.http.Ht...
// This file is part of the Kaltura Collaborative Media Suite which allows users // to do with audio, video, and animation what Wiki platfroms allow them to do with // text. // This program is free software: you can redistribute it and/or modify // published by the Free Software Foundation, either version 3 of the // T...
// This file is part of the Kaltura Collaborative Media Suite which allows users // to do with audio, video, and animation what Wiki platfroms allow them to do with // text. // This program is free software: you can redistribute it and/or modify // published by the Free Software Foundation, either version 3 of the // T...
// This file is part of the Kaltura Collaborative Media Suite which allows users // to do with audio, video, and animation what Wiki platfroms allow them to do with // text. // This program is free software: you can redistribute it and/or modify // published by the Free Software Foundation, either version 3 of the // T...