answer
stringlengths
17
10.2M
package com.smidur.aventon.model; public class SnapToRoadService { SnappedPoints[] snappedPoints; public SnappedPoints[] getSnappedPoints() { return snappedPoints; } public void setSnappedPoints(SnappedPoints[] snappedPoints) { this.snappedPoints = snappedPoints; } }
package com.wehelp.wehelp.classes; import android.content.Context; import android.content.SharedPreferences; import android.text.TextUtils; import android.util.Log; import com.android.volley.AuthFailureError; import com.android.volley.DefaultRetryPolicy; import com.android.volley.NetworkResponse; import com.android.vol...
package de.danoeh.antennapod.view; import android.content.ClipData; import android.content.Context; import android.content.Intent; import android.graphics.Color; import android.net.Uri; import android.os.Build; import android.util.AttributeSet; import android.util.Log; import android.view.ContextMenu; import android.vi...
package edu.utexas.ee360p_teamproject; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { ///comment super.onCreate(savedInstanceState); setContent...
package johnteee.imageasyncloader; import android.content.Context; import android.graphics.Bitmap; import android.graphics.drawable.BitmapDrawable; import android.graphics.drawable.Drawable; import android.os.AsyncTask; import android.os.Handler; import android.os.Looper; import android.support.annotation.NonNull; impo...
package me.devsaki.hentoid.util.network; import android.content.Context; import android.net.Uri; import android.text.TextUtils; import android.util.Pair; import android.webkit.CookieManager; import android.webkit.WebResourceResponse; import android.webkit.WebSettings; import androidx.annotation.NonNull; import org.jsou...
package org.mozilla.focus.fragment; import android.content.Intent; import android.graphics.drawable.TransitionDrawable; import android.net.Uri; import android.os.Bundle; import android.support.annotation.Nullable; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import android.view.View; impo...
package org.wikipedia.search; import android.os.Bundle; import android.text.TextUtils; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter; import android.widget.ImageView; import android.widget.ListView; import android.widget.TextView; import a...
package org.worshipsongs.fragment; import android.content.Intent; import android.os.Bundle; import android.os.Parcelable; import android.support.annotation.Nullable; import android.support.v4.app.Fragment; import android.support.v7.app.AppCompatActivity; import android.view.LayoutInflater; import android.view.View; imp...
package org.odk.collect.android.activities; import android.annotation.SuppressLint; import android.app.ActionBar; import android.app.AlertDialog; import android.app.Dialog; import android.app.ProgressDialog; import android.content.BroadcastReceiver; import android.content.ContentUris; import android.content.ContentValu...
package org.odk.collect.android.activities; import android.annotation.SuppressLint; import android.app.ActionBar; import android.app.AlertDialog; import android.content.BroadcastReceiver; import android.content.ContentUris; import android.content.ContentValues; import android.content.Context; import android.content.Dia...
import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.util.*; /** * Simple utility that shows you a sorted list of properties * that are missing in a i18n file * (as diff from the default en properties). * * @author Christoph Sauer * */...
package ru.job4j; //import java.util.Arrays; //import java.lang.* public class CheckSubString { public char[] stringToArrayOfChar(String inputString) { char[] arOfChar = new char[inputString.length()]; for (int i = 0; i < inputString.length(); i++) { arOfChar[i] = inputString.charAt(i); ...
package soot.jimple.infoflow; import java.util.List; import soot.Transform; import soot.jimple.infoflow.AbstractInfoflowProblem.PathTrackingMethod; import soot.jimple.infoflow.entryPointCreators.IEntryPointCreator; import soot.jimple.infoflow.source.ISourceSinkManager; import soot.jimple.infoflow.taintWrappers.ITaintPr...
package spacesettlers.game; import java.util.Random; /** * 3D tic tac toe or naughts and crosses * * @author amy * */ public class TicTacToe3D extends AbstractGame { private static int player1 = 1; private static int player2 = 2; private static int empty = 0; private static int num_rows = 3; pr...
package net.i2p.router.web; import java.text.DateFormat; import java.text.DecimalFormat; import java.util.Date; import java.util.Iterator; import java.util.Locale; import java.util.Set; import net.i2p.data.DataHelper; import net.i2p.data.Destination; import net.i2p.data.LeaseSet; import net.i2p.stat.Rate; import net.i2...
package org.jimmutable.storage; import org.jimmutable.core.objects.Stringable; import org.jimmutable.core.utils.Validator; public class StorageKeyExtension extends Stringable { public StorageKeyExtension(String value) { super(value); } /** * @return the mime type of this extension. */ ...
package com.bagri.rest; import static com.bagri.xquery.api.XQUtils.getAtomicValue; import java.io.BufferedWriter; import java.io.IOException; import java.io.OutputStream; import java.io.OutputStreamWriter; import java.io.Writer; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.ut...
package de.hbt.hackathon.rtb.base.type; public class Coordinate { private final double x; private final double y; private final long timeStamp; public Coordinate(double x, double y, long timeStamp) { this.x = x; this.y = y; this.timeStamp = timeStamp; } public double getX...
package net.sf.bbarena.model.pitch; import net.sf.bbarena.model.Coordinate; import net.sf.bbarena.model.Direction; import net.sf.bbarena.model.RangeRuler; import net.sf.bbarena.model.exception.PitchException; import net.sf.bbarena.model.pitch.BallMove.BallMoveType; import net.sf.bbarena.model.pitch.Dugout.DugoutRoom; i...
package ucar.nc2.iosp.grib; import ucar.nc2.iosp.grid.GridServiceProvider; import ucar.nc2.iosp.grid.GridIndexToNC; import ucar.nc2.util.CancelTask; import ucar.nc2.util.DiskCache; import ucar.nc2.NetcdfFile; import ucar.grib.*; import ucar.grib.grib1.*; import ucar.grib.grib2.*; import ucar.grid.GridRecord; import uca...
package ru.job4j.service; import java.util.Iterator; public class DynamicLinkedList<E> implements SimpleContainer<E> { public Node<E> first; public Node<E> last; public int size = last.index + 1; @Override public void add(E e) { Node<E> node = new Node<>(first, e, last); last.next = ...
package test.beast.util; import org.junit.Assert; import org.junit.Test; import beast.util.TreeParser; public class TreeParserTest { @Test public void testFullyLabelledWithIntegers() { String newick = "((0:1.0,1:1.0)4:1.0,(2:1.0,3:1.0)5:1.0)6:0.0;"; try { boolean isLabeled = false; ...
package eu.ess.jels; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import xal.model.ModelException; import xal.model.probe.Probe; import xal.sim.scenario.ElementMapping; import xal.smf.AcceleratorSeq; import xal.smf.impl.qualify.MagnetType; import xal.tools.beam.IConsta...
package jdrivesync; import com.google.api.client.auth.oauth2.Credential; import jdrivesync.cli.Options; import jdrivesync.gdrive.CredentialStore; import jdrivesync.gdrive.DriveFactory; import jdrivesync.gdrive.GoogleDriveAdapter; import java.io.IOException; import java.nio.file.*; import java.nio.file.attribute.BasicFi...
package org.jetel.component; import java.nio.charset.Charset; import org.apache.log4j.Logger; import org.jetel.data.DataRecord; import org.jetel.data.DataRecordFactory; import org.jetel.exception.AttributeNotFoundException; import org.jetel.exception.ComponentNotReadyException; import org.jetel.exception.ConfigurationP...
package org.jetel.data.primitive; import java.math.BigDecimal; import org.jetel.data.Defaults; /** * Factory class produce implementations of Decimal interface. * *@author Martin Zatopek *@since November 30, 2005 *@see org.jetel.data.primitive.Decimal */ public class DecimalFactory { /** ...
package com.github.json.ui.editors; import java.io.IOException; import java.io.InputStream; import org.eclipse.core.resources.IFile; import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.jface.dialogs.MessageDialog; import org.eclipse.swt.SWT; import org.eclipse.swt.widgets.Composite; import org.eclipse....
package com.sii.rental.ui.views; import java.util.Collection; import org.eclipse.emf.ecore.EObject; import org.eclipse.jface.viewers.IColorProvider; import org.eclipse.jface.viewers.ITreeContentProvider; import org.eclipse.jface.viewers.LabelProvider; import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Color; i...
package com.versionone.common.sdk; import java.math.BigDecimal; import java.text.NumberFormat; import java.util.ArrayList; import com.versionone.Oid; import com.versionone.apiclient.APIException; import com.versionone.apiclient.Asset; import com.versionone.apiclient.Attribute; import com.versionone.apiclient.IAttribute...
package cgeo.geocaching; import cgeo.CGeoTestCase; import cgeo.geocaching.connector.ConnectorFactory; import cgeo.geocaching.connector.gc.GCLogin; import cgeo.geocaching.connector.gc.GCParser; import cgeo.geocaching.connector.gc.MapTokens; import cgeo.geocaching.connector.gc.Tile; import cgeo.geocaching.enumerations.Ca...
package org.jetel.component; import java.io.IOException; import org.jetel.data.DataRecord; import org.jetel.data.Defaults; import org.jetel.data.DynamicRecordBuffer; import org.jetel.data.RecordKey; import org.jetel.exception.ComponentNotReadyException; import org.jetel.exception.ConfigurationProblem; import org.jetel....
package info.tregmine.api; import info.tregmine.database.Mysql; import java.sql.ResultSet; import java.util.HashMap; //import java.util.Map; import org.bukkit.ChatColor; //import org.bukkit.GameMode; import org.bukkit.block.Block; import org.bukkit.entity.Player; public class TregminePlayer extends PlayerDelegate { ...
package alluxio.client.file; import alluxio.AlluxioURI; import alluxio.Constants; import alluxio.annotation.PublicApi; import alluxio.client.file.options.CreateDirectoryOptions; import alluxio.client.file.options.CreateFileOptions; import alluxio.client.file.options.DeleteOptions; import alluxio.client.file.options.Exi...
package ethanjones.modularworld.graphics.world; import com.badlogic.gdx.graphics.Camera; import com.badlogic.gdx.graphics.GL20; import com.badlogic.gdx.graphics.Mesh; import com.badlogic.gdx.graphics.g2d.TextureRegion; import com.badlogic.gdx.graphics.g3d.Renderable; import com.badlogic.gdx.graphics.g3d.RenderableProvi...
package org.mskcc.cbio.portal.dao; import org.mskcc.cbio.portal.model.*; import org.mskcc.cbio.portal.util.InternalIdUtil; import java.sql.*; import java.util.*; /** * Data Access Object for `clinical` table * * @author Gideon Dresdner dresdnerg@cbio.mskcc.org */ public final class DaoClinicalData { public stat...
package org.museautomation.core.step; import org.museautomation.core.*; import org.museautomation.core.context.*; import org.museautomation.core.events.*; import org.museautomation.core.execution.*; import org.museautomation.core.steptask.*; import org.museautomation.core.values.*; import org.slf4j.*; import java.util....
package org.verapdf.processor; import org.verapdf.features.FeatureExtractionResult; import org.verapdf.metadata.fixer.FixerFactory; import org.verapdf.pdfa.results.MetadataFixerResult; import org.verapdf.pdfa.results.ValidationResult; import org.verapdf.pdfa.results.ValidationResults; import org.verapdf.report.Features...
package org.bouncycastle.pqc.crypto.test; import junit.extensions.TestSetup; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; import org.bouncycastle.util.test.SimpleTestResult; public class AllTests extends TestCase { public static void main (String[] args) { ...
/* -*- mode: jde; c-basic-offset: 2; indent-tabs-mode: nil -*- */ package processing.app; import java.io.*; import java.util.*; import java.util.zip.*; import javax.swing.*; import gnu.io.*; public class AvrdudeUploader extends Uploader { public AvrdudeUploader() { } public boolean uploadUsingPreferences(String ...
package controllers; import play.*; import play.mvc.*; import play.data.binding.As; import play.db.jpa.JPA; import utils.GeoUtils; import java.io.IOException; import java.io.StringWriter; import java.math.BigInteger; import java.util.*; import javax.persistence.Entity; import static java.util.Collections.sort; import o...
package org.jasig.portal.groups; import org.jasig.portal.EntityIdentifier; /** * Interface for finding and maintaining <code>IEntityGroups</code>. * @author Dan Ellentuck * @version 1.0, 11/29/01 */ public interface IEntityGroupStore extends IGroupConstants { /** * Delete this <code>IEntityGroup</code> from the da...
package org.jasig.portal.utils; import java.util.Hashtable; import java.util.Iterator; import org.w3c.dom.Attr; import org.w3c.dom.CDATASection; import org.w3c.dom.Comment; import org.w3c.dom.DOMException; import org.w3c.dom.DOMImplementation; import org.w3c.dom.Document; import org.w3c.dom.DocumentFragment; import org...
package org.jfree.chart.renderer.xy; import java.awt.Graphics2D; import java.awt.Paint; import java.awt.Shape; import java.awt.geom.Rectangle2D; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import org.jfree.chart.LegendItem; import org.jfree.chart.axis.ValueAxis; impo...
package org.jfree.data.gantt; import java.io.Serializable; import java.util.Iterator; import java.util.List; import org.jfree.data.general.AbstractSeriesDataset; import org.jfree.data.general.SeriesChangeEvent; import org.jfree.data.time.TimePeriod; import org.jfree.util.ObjectUtilities; import org.jfree.util.PublicClo...
package java.util; public class ArrayList<E> { Object[] elementData; private int numElements; private int capacity; public ArrayList() { this.elementData = new Object[10]; this.capacity = 10; this.numElements = 0; } public ArrayList(int initialCapacity) { this.elementData = new O...
package com.rafkind.paintown.animator.events; import java.util.*; import com.rafkind.paintown.Lambda0; // Must populate when an event is added public class EventFactory{ private static HashMap events = new HashMap(); private static List ignoreEvents = new ArrayList(); private EventFactory(){ // Noth...
package koopa.app; import java.awt.BorderLayout; import java.awt.Component; import java.awt.Dimension; import java.awt.Toolkit; import java.awt.event.ActionEvent; import java.io.File; import java.net.URL; import java.text.DecimalFormat; import java.util.ArrayList; import java.util.List; import javax.swing.AbstractActio...
package com.netflix.eureka.util; import java.lang.management.ManagementFactory; import java.text.DecimalFormat; import java.text.SimpleDateFormat; import java.util.Date; import java.util.HashMap; import java.util.Map; import com.netflix.appinfo.ApplicationInfoManager; import com.netflix.appinfo.InstanceInfo; import com...
package com.netflix.evcache; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.concurrent.Future; import org.slf4j.Logger; import org.slf4j.Log...
package com.facebook.common.statfs; import android.annotation.SuppressLint; import android.os.Build; import android.os.Environment; import android.os.StatFs; import android.os.SystemClock; import com.facebook.common.internal.Throwables; import java.io.File; import java.util.concurrent.TimeUnit; import java.util.concurr...
package org.immutables.generator; import com.google.common.base.Function; import com.google.common.base.Joiner; import com.google.common.base.Optional; import com.google.common.collect.Iterables; import com.google.common.collect.Lists; import com.google.common.collect.Sets; import java.util.ArrayList; import java.util....
// File: $Id$ import java.io.PrintStream; import java.util.Arrays; import java.util.Comparator; public class SuffixArray implements Configuration, Magic, java.io.Serializable { /** The lowest interesting commonality. */ private static final int MINCOMMONALITY = 3; /** The buffer containing the compressed te...
package org.intermine.web.logic.widget; import java.util.List; import org.intermine.pathquery.PathQuery; import org.intermine.web.logic.widget.config.WidgetConfig; /** * @author "Xavier Watkins" */ public abstract class Widget { protected WidgetConfig config; /** * The constructor * @param config th...
package org.xtreemfs.test.mrc; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; import static org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_H_O_CREAT; import static org.xtreemfs.pbrpc.generatedinterfaces.GlobalTypes.SYSTEM_V_FCNTL.SYSTEM_V_FCNTL_...
package org.xtreemfs.test.mrc; import static org.junit.Assert.assertEquals; import java.io.IOException; import java.util.List; import java.util.Map; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Ignore; import org.junit.Test; import org.xtreemfs.common.ReplicaUpdatePolicies; import org.xtr...
package javamm.typesystem; import javamm.javamm.JavammXAssignment; import org.eclipse.xtext.xbase.XExpression; import org.eclipse.xtext.xbase.typesystem.arguments.AssignmentFeatureCallArguments; import org.eclipse.xtext.xbase.typesystem.arguments.IFeatureCallArguments; import org.eclipse.xtext.xbase.typesystem.internal...
package uk.org.opentrv.ETV.driver; import java.io.File; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import java.io.Reader; import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.Map; import java.util.Set; import java.util.stream.Collectors...
package com.jetbrains.jsonSchema.impl; import com.intellij.json.JsonLanguage; import com.intellij.json.psi.JsonFile; import com.intellij.json.psi.JsonObject; import com.intellij.openapi.application.ApplicationManager; import com.intellij.openapi.application.ModalityState; import com.intellij.openapi.application.ReadAct...
package com.jetbrains.jsonSchema.impl; import com.intellij.codeInsight.completion.CompletionContributor; import com.intellij.codeInsight.completion.CompletionParameters; import com.intellij.codeInsight.completion.CompletionResultSet; import com.intellij.idea.RareLogger; import com.intellij.json.JsonLanguage; import com...
package org.vosao.dao.cache.impl; import java.io.Serializable; import java.util.ArrayList; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Map; import org.apache.commons.lang.exception.ExceptionUtils; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFa...
/* * @author max */ package com.intellij.psi.stubs; import com.intellij.openapi.application.PathManager; import com.intellij.openapi.components.ApplicationComponent; import com.intellij.openapi.diagnostic.Logger; import com.intellij.util.io.DataInputOutputUtil; import com.intellij.util.io.PersistentStringEnumerator; ...
package com.google.sps.servlets; import com.google.gson.Gson; import com.google.appengine.api.users.User; import com.google.appengine.api.users.UserService; import com.google.appengine.api.users.UserServiceFactory; import java.io.IOException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpSer...
package com.intellij.diagnostic; import com.intellij.CommonBundle; import com.intellij.errorreport.ErrorReportSender; import com.intellij.errorreport.bean.ErrorBean; import com.intellij.errorreport.bean.NotifierBean; import com.intellij.errorreport.error.InternalEAPException; import com.intellij.errorreport.error.NewBu...
package com.unnamed.b.atv.view; import android.content.Context; import android.text.TextUtils; import android.view.ContextThemeWrapper; import android.view.View; import android.view.ViewGroup; import android.view.animation.Animation; import android.view.animation.Transformation; import android.widget.LinearLayout; impo...
package io.jasonsparc.chemistry; import android.support.annotation.AnyRes; import android.support.annotation.LayoutRes; import android.support.annotation.NonNull; import android.support.annotation.Nullable; import android.support.v7.widget.RecyclerView.ViewHolder; import android.view.ViewGroup; import java.util.ArrayLi...
package org.libreplan.web.common; import static org.libreplan.web.I18nHelper._; import java.math.BigDecimal; import java.text.DecimalFormat; import java.util.ArrayList; import java.util.Date; import java.util.Iterator; import java.util.List; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFa...
package com.open.perf.core; import com.open.perf.domain.Group; import com.open.perf.domain.GroupFunction; import com.open.perf.domain.GroupTimer; import com.open.perf.util.Clock; import com.open.perf.util.Counter; import org.apache.log4j.Logger; import java.io.File; import java.io.FileNotFoundException; import java.uti...
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package nl.uva.cs.lobcder; import com.sun.jersey.api.client.Client; import com.sun.jersey.api.client.ClientResponse; import com.sun.jersey.api.client.GenericType; import com.sun.jersey.api.client.WebResource; import com....
package org.jboss.as.mail.extension; import org.jboss.as.controller.AttributeDefinition; import org.jboss.as.controller.OperationContext; import org.jboss.as.controller.OperationFailedException; import org.jboss.as.controller.PathAddress; import org.jboss.as.controller.RestartParentResourceAddHandler; import org.jboss....
package com.macro.mall.dto; import io.swagger.annotations.ApiModelProperty; public class PmsProductResult extends PmsProductParam { @ApiModelProperty("id") private Long cateParentId; public Long getCateParentId() { return cateParentId; } public void setCateParentId(Long cateParentId) { ...
package com.zygon.htm.memory.core; import com.google.common.collect.Sets; import com.zygon.htm.core.Identifier; import java.util.AbstractSet; import java.util.Arrays; import java.util.Collections; import java.util.Iterator; import java.util.Set; /** * * @author zygon */ public class IdentifierSet extends AbstractSet...
package org.vrjuggler.tweek.iconviewer; import java.util.EventObject; public class PrefsEvent extends EventObject { public PrefsEvent(Object source, boolean smallGui) { super(source); this.smallGui = smallGui; } public boolean isSmallGui() { return smallGui; } private boolean smal...
package org.fiteagle.adapters.motor; import info.openmultinet.ontology.vocabulary.Omn; import info.openmultinet.ontology.vocabulary.Omn_federation; import info.openmultinet.ontology.vocabulary.Omn_lifecycle; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import org.fi...
package com.ibm.mqlight.api.impl.engine; import java.nio.ByteBuffer; import java.util.EnumSet; import org.apache.qpid.proton.Proton; import org.apache.qpid.proton.amqp.UnsignedInteger; import org.apache.qpid.proton.amqp.messaging.Modified; import org.apache.qpid.proton.amqp.messaging.Rejected; import org.apache.qpid.pr...
package com.sun.star.comp.Calc.NLPSolver; import com.sun.star.awt.XReschedule; import com.sun.star.beans.Property; import com.sun.star.beans.PropertyVetoException; import com.sun.star.beans.UnknownPropertyException; import com.sun.star.beans.XPropertyChangeListener; import com.sun.star.beans.XPropertySetInfo; import co...
package eu.chargetime.ocpp; import eu.chargetime.ocpp.model.SessionInformation; import eu.chargetime.ocpp.wss.WssFactoryBuilder; import org.java_websocket.WebSocket; import org.java_websocket.drafts.Draft; import org.java_websocket.handshake.ClientHandshake; import org.java_websocket.server.WebSocketServer; import org....
package com.olmatix.ui.fragment; import android.app.Activity; import android.content.BroadcastReceiver; import android.content.ContentValues; import android.content.Context; import android.content.DialogInterface; import android.content.Intent; import android.content.IntentFilter; import android.database.sqlite.SQLiteD...
package openmaple.net.common.utils; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * An annotation that denotes a parameter or field as being unsigned. * * @author Aaron Weiss * @version 1.0.0 * @s...
import org.junit.Before; import org.junit.Test; import org.sdmlib.openbank.Account; import org.sdmlib.openbank.JsonPersistency; import org.sdmlib.openbank.Transaction; import org.sdmlib.openbank.User; import org.sdmlib.storyboards.Storyboard; import java.util.Date; import static org.junit.Assert.*; public class Test_Im...
package org.spoofax.jsglr.client; import static org.spoofax.terms.Term.termAt; import static org.spoofax.jsglr.client.AbstractParseNode.*; import java.util.ArrayList; import java.util.List; import org.spoofax.NotImplementedException; import org.spoofax.interpreter.terms.IStrategoAppl; import org.spoofax.interpreter.ter...
package org.xtest.ui.outline; import java.util.List; import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.core.runtime.IStatus; import org.eclipse.emf.ecore.resource.Resource; import org.eclipse.swt.widgets.Display; import org.eclipse.xtext.ui.editor.outline.IOutlineNode; import org.eclipse.xtext.ui.edi...
package seaweedfs.client; import com.google.common.base.Strings; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.io.File; import java.util.ArrayList; import java.util.Arrays; import java.util.Iterator; import java.util.List; public class FilerClient extends FilerGrpcClient { private static fina...
package com.egzosn.pay.wx.api; import com.alibaba.fastjson.JSONObject; import com.egzosn.pay.common.api.BasePayService; import com.egzosn.pay.common.api.Callback; import com.egzosn.pay.common.bean.*; import com.egzosn.pay.common.bean.result.PayException; import com.egzosn.pay.common.exception.PayErrorException; import ...
package com.intellij.diagnostic; import com.intellij.openapi.application.ApplicationManager; import com.intellij.openapi.application.PathManager; import com.intellij.openapi.components.ApplicationComponent; import com.intellij.openapi.util.io.FileUtil; import org.jetbrains.annotations.NotNull; import javax.swing.*; imp...
package com.intellij.util.ui.tree; import com.intellij.ide.util.treeView.AbstractTreeBuilder; import com.intellij.openapi.application.Application; import com.intellij.openapi.application.ApplicationManager; import com.intellij.openapi.diagnostic.Logger; import com.intellij.openapi.project.Project; import com.intellij.o...
package org.jimmutable.platform_test; import org.apache.log4j.BasicConfigurator; import org.eclipse.jetty.server.Server; import org.eclipse.jetty.webapp.WebAppContext; import org.jimmutable.cloud.ApplicationId; import org.jimmutable.cloud.CloudExecutionEnvironment; /** * Hello world! * */ public class App { publ...
package org.jetbrains.idea.devkit.dom.index; import com.intellij.openapi.project.Project; import com.intellij.openapi.roots.impl.LibraryScopeCache; import com.intellij.openapi.util.Conditions; import com.intellij.openapi.util.text.StringUtil; import com.intellij.openapi.vfs.VirtualFile; import com.intellij.psi.PsiManag...
package org.jetbrains.idea.svn; import com.intellij.openapi.components.*; import com.intellij.openapi.progress.util.BackgroundTaskUtil; import com.intellij.openapi.project.Project; import com.intellij.openapi.util.Comparing; import com.intellij.openapi.util.Disposer; import com.intellij.openapi.util.Ref; import com.int...
package com.opengamma.util; import java.lang.reflect.Method; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentMap; import com.opengamma.OpenGammaRuntimeException; /** * Class utilities */ public final class ClassUtils { /** * A per-thread cache of loaded classes. */ priva...
package ca.concordia.cssanalyser.cssmodel; import java.util.ArrayList; import java.util.HashMap; import java.util.Iterator; import java.util.LinkedHashMap; import java.util.LinkedHashSet; import java.util.List; import java.util.Map; import java.util.Set; import org.w3c.dom.Document; import ca.concordia.cssanalyser.cssm...
package ca.ilanguage.oprime.ui; import java.util.Locale; import ca.ilanguage.oprime.R; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.media.MediaPlayer; import android.os.Bundle; import android.speech.tts.TextToSpeech; import android.util.Log; import android.v...
package com.esotericsoftware.kryonet.rmi; import static com.esotericsoftware.minlog.Log.*; import java.lang.reflect.InvocationHandler; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.lang.reflect.Modifier; import java.lang.reflect.Proxy; import java.util.ArrayList; impor...
package com.hp.hpl.jena.graph.test; import com.hp.hpl.jena.util.CollectionFactory; import com.hp.hpl.jena.util.iterator.*; import com.hp.hpl.jena.graph.*; import com.hp.hpl.jena.graph.query.*; import com.hp.hpl.jena.shared.*; import java.util.*; /** AbstractTestGraph provides a bunch of basic tests for something th...
package com.ilya.sergeev.potlach; import java.util.Collection; import java.util.List; import retrofit.RetrofitError; import android.app.Activity; import android.content.Intent; import android.os.AsyncTask; import android.os.Bundle; import android.support.annotation.Nullable; import android.view.LayoutInflater; import a...
package com.lukechenshui.jresume.themes; import com.lukechenshui.jresume.resume.Resume; import com.lukechenshui.jresume.resume.items.Person; import com.lukechenshui.jresume.resume.items.Project; import com.lukechenshui.jresume.resume.items.Skill; import com.lukechenshui.jresume.resume.items.education.Education; import ...
package com.mareksebera.simpledilbert; import org.joda.time.DateMidnight; import org.joda.time.DateTimeZone; import android.app.PendingIntent; import android.appwidget.AppWidgetManager; import android.appwidget.AppWidgetProvider; import android.content.Context; import android.content.Intent; import android.graphics.Bit...
package com.readytalk.oss.dbms.imp; import static com.readytalk.oss.dbms.util.Util.expect; import static com.readytalk.oss.dbms.util.Util.list; import static com.readytalk.oss.dbms.util.Util.copy; import static com.readytalk.oss.dbms.ExpressionFactory.reference; import static com.readytalk.oss.dbms.ExpressionFactory.is...
package com.tactfactory.mda.plateforme; import java.lang.reflect.Field; import com.tactfactory.mda.annotation.Column; import com.tactfactory.mda.annotation.Column.Type; import com.tactfactory.mda.meta.FieldMetadata; import com.tactfactory.mda.utils.ConsoleUtils; /** * SQliteAdapter. */ public abstract class SqliteAda...
package com.tellmas.android.permissions; import android.app.Activity; import android.app.Fragment; import android.app.FragmentManager; import android.app.FragmentTransaction; import android.os.Bundle; import android.support.v4.app.ActionBarDrawerToggle; import android.support.v4.widget.DrawerLayout; import android.text...