id
int32
0
3k
input
stringlengths
43
33.8k
gt
stringclasses
1 value
2,900
<s> package org . rubypeople . rdt . internal . testunit . ui ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IStatus ; import org . eclipse . core . runtime . Status ; import org . eclipse . debug . core . ILaunch ; import org . eclipse . debug . core . model . ISource...
2,901
<s> package org . rubypeople . rdt . internal . ui . text . ruby . hover ; import java . util . ArrayList ; import java . util . Iterator ; import java . util . List ; import org . eclipse . jface . text . IInformationControlCreator ; import org . eclipse . jface . text . IRegion ; import org . eclipse . jface . text ....
2,902
<s> package com . asakusafw . runtime . flow ; import java . io . File ; import java . io . IOException ; import java . io . RandomAccessFile ; import java . text . MessageFormat ; import java . util . AbstractList ; import java . util . Arrays ; import java . util . RandomAccess ; import org . apache . commons . loggi...
2,903
<s> package com . asakusafw . compiler . flow . processor . flow ; import com . asakusafw . compiler . flow . processor . ProjectFlowProcessor ; import com . asakusafw . compiler . flow . testing . external . Ex1MockExporterDescription ; import com . asakusafw . compiler . flow . testing . external . Part1MockImporterD...
2,904
<s> package org . oddjob . state ; import junit . framework . TestCase ; import org . oddjob . OddjobDescriptorFactory ; import org . oddjob . arooa . ArooaDescriptor ; import org . oddjob . arooa . ArooaParseException ; import org . oddjob . arooa . deploy . annotations . ArooaAttribute ; import org . oddjob . arooa ....
2,905
<s> package org . oddjob . jmx . handlers ; import javax . management . MBeanAttributeInfo ; import javax . management . MBeanException ; import javax . management . MBeanNotificationInfo ; import javax . management . MBeanOperationInfo ; import javax . management . Notification ; import javax . management . Reflection...
2,906
<s> package org . rubypeople . rdt . internal . launching ; import java . io . IOException ; import java . text . MessageFormat ; import javax . xml . parsers . ParserConfigurationException ; import javax . xml . transform . TransformerException ; import org . eclipse . core . resources . IContainer ; import org . ecli...
2,907
<s> package com . pogofish . jadt . samples . ast . data ; import java . util . List ; public final class Arg { public static final Arg _Arg ( Type type , String name ) { return new Arg ( type , name ) ; } public final Type type ; public final String name ; public Arg ( Type type , String name ) { this . type = type ; ...
2,908
<s> package org . rubypeople . rdt . internal . launching ; import java . io . File ; import java . io . IOException ; import java . io . InputStream ; import java . text . DateFormat ; import java . text . MessageFormat ; import java . util . ArrayList ; import java . util . Date ; import java . util . List ; import j...
2,909
<s> package org . rubypeople . rdt . internal . ui . search ; import org . rubypeople . rdt . core . IRubyElement ; public
2,910
<s> package com . asakusafw . compiler . flow . example ; import com . asakusafw . compiler . operator . model . MockHoge ; import com . asakusafw . vocabulary . flow . Export ; import com . asakusafw . vocabulary . flow . FlowDescription ; import com . asakusafw . vocabulary . flow . Import ; import com . asakusafw . ...
2,911
<s> import java . io . * ; import org . xmlpull . v1 . * ; import org . kxml2 . kdom . * ; import org . kxml2 . io . * ; public class KDomRoundtrip { public static void main ( String [ ] args ) throws IOException , XmlPullParserException { if ( args . length == 0 ) throw new RuntimeException ( "" ) ; for ( int i = 0 ; ...
2,912
<s> package net . bioclipse . opentox . api ; public class TaskState { enum STATUS { CANCELLED , COMPLETED , RUNNING , ERROR , UNKNOWN } private STATUS status = STATUS . UNKNOWN ; private boolean exists = false ; private boolean isRedirected = false ; private String results = null ; private float percentageCompleted = ...
2,913
<s> package net . sf . sveditor . core . tests . preproc ; import java . util . ArrayList ; import java . util . List ; import junit . framework . TestCase ; import net . sf . sveditor . core . SVCorePlugin ; import net . sf . sveditor . core . StringInputStream ; import net . sf . sveditor . core . db . SVDBFile ; imp...
2,914
<s> package org . oddjob . beanbus ; import java . io . ByteArrayOutputStream ; import java . util . Arrays ; import junit . framework . TestCase ; import org . oddjob . arooa . reflect . ArooaClass ; import org . oddjob . arooa . reflect . BeanView ; import org . oddjob . arooa . reflect . BeanViews ; import org . odd...
2,915
<s> package org . oddjob . jmx . server ; import javax . management . MBeanException ; import javax . management . ReflectionException ; import junit . framework . TestCase ; public class ServerAllOperationsHandlerTest extends TestCase { interface Fruit { String getColour ( ) ; } class MyFruit implements Fruit { public...
2,916
<s> package com . aptana . rdt . internal . parser . warnings ; import org . jruby . ast . AndNode ; import org . jruby . ast . Node ; import org . jruby . ast . OrNode ; import org . rubypeople . rdt . core . parser . warnings . RubyLintVisitor ; import org . rubypeople . rdt . internal . core . util . ASTUtil ; impor...
2,917
<s> package org . rubypeople . rdt . internal . ui . preferences ; import org . eclipse . core . runtime . IStatus ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Control ; import org . eclipse . ui . texteditor . spelling . IPreferenceStatusMonitor ; import org . eclipse . u...
2,918
<s> package org . rubypeople . rdt . internal . ui . rubyeditor ; import java . lang . reflect . InvocationTargetException ; import java . lang . reflect . Method ; import java . net . URI ; import java . util . ArrayList ; import java . util . HashMap ; import java . util . Iterator ; import java . util . List ; impor...
2,919
<s> package com . asakusafw . runtime . directio . util ; import java . io . IOException ; import java . io . OutputStream ; import com . asakusafw . runtime . directio . Counter ; public class CountOutputStream extends OutputStream { private final OutputStream stream ; private final Counter counter ; public CountOutpu...
2,920
<s> package com . asakusafw . runtime . directio ; public class ResourceInfo { private final String id ; private final String path ; private final boolean directory ; public ResourceInfo ( String id , String path ) { this ( id , path , false ) ; } public ResourceInfo ( String id , String path , boolean directory ) { if...
2,921
<s> package net . sf . sveditor . ui ; import org . eclipse . core . resources . IContainer ; import org . eclipse . core . resources . ResourcesPlugin ; import org . eclipse . jface . dialogs . Dialog ; import org . eclipse . jface . viewers . ISelectionChangedListener ; import org . eclipse . jface . viewers . IStruc...
2,922
<s> package com . asakusafw . runtime . flow ; import org . apache . hadoop . io . Writable ; public abstract class Rendezvous < V extends Writable > { public static final String BEGIN = "begin" ; public static final String PROCESS = "process" ; public static final String END = "end" ;
2,923
<s> package org . rubypeople . rdt . internal . ui . text . template . contentassist ; import java . io . IOException ; import java . util . ArrayList ; import java . util . List ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IConfigurationElement ; import org . eclips...
2,924
<s> package com . asakusafw . runtime . stage . output ; import java . io . IOException ; import org . apache . hadoop . mapreduce . RecordWriter ; import org . apache . hadoop . mapreduce . TaskAttemptContext ; import org . apache . hadoop . mapreduce . lib . output .
2,925
<s> package com . asakusafw . utils . java . model . syntax ; public abstract class Visitor < R , C , E extends Throwable > { public R visitAlternateConstructorInvocation ( AlternateConstructorInvocation elem , C context ) throws E { return null ; } public R visitAnnotationDeclaration ( AnnotationDeclaration elem , C c...
2,926
<s> package org . rubypeople . rdt . internal . ui . text . ruby ; import java . net . URL ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . jface . preference . IPreferenceStore ; import org . eclipse . jface . preference . PreferenceConverter ; import org . eclipse . jface . text . A...
2,927
<s> package org . rubypeople . rdt . internal . ui . wizards . buildpaths ; import java . util . ArrayList ; import java . util . HashSet ; import java . util . Hashtable ; import java . util . Iterator ; import java . util . List ; import java . util . Set ; import org . eclipse . core . resources . IContainer ; impor...
2,928
<s> package com . pogofish . jadt . checker ; import java . util . List ; import com . pogofish . jadt . ast . Doc ; import com . pogofish . jadt . errors . SemanticError ; public interface
2,929
<s> package org . rubypeople . rdt . internal . ui ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IAdapterFactory ; import org . eclipse . search . ui . ISearchPageScoreComputer ; import org . eclipse . ui . IEditorInput ; import org . eclipse . ui . IStorageEditorInpu...
2,930
<s> package net . sf . sveditor . core . db ; public class SVDBMacroDefParam extends SVDBChildItem implements ISVDBNamedItem { public String fName ; public String fValue ; public SVDBMacroDefParam ( ) { super ( SVDBItemType . MacroDefParam
2,931
<s> package com . asakusafw . runtime . value ; import java . io . DataInput ; import java . io . DataOutput ; import java . io . IOException ; import java . text . MessageFormat ; import com . asakusafw . runtime . io . util . WritableRawComparable ; public final class BooleanOption extends ValueOption < BooleanOption...
2,932
<s> package test . modelgen . table . io ; import java . io . IOException ; import javax . annotation . Generated ; import test . modelgen . table . model . BalanceTran ; import com . asakusafw . runtime . io . ModelOutput ; import com . asakusafw . runtime . io . RecordEmitter ; @ Generated ( "" ) @ SuppressWarnings (...
2,933
<s> package org . oddjob . state ; import java . io . IOException ; import java . io . ObjectInputStream ; import java . io . ObjectOutputStream ; import java . io . Serializable ; import java . util . Date ; import java . util . EventObject ; import org . oddjob . Stateful ; import org . oddjob . util . IO ; public cl...
2,934
<s> package net . sf . sveditor . core . tests . lexer ; import junit . framework . TestCase ; import net . sf . sveditor . core . log . ILogHandle ; import net . sf . sveditor . core . log . LogFactory ; import net . sf . sveditor . core . log . LogHandle ; import net . sf . sveditor . core . parser . ISVParser ; impo...
2,935
<s> package com . lmax . disruptor ; import com . lmax . disruptor . collections . Histogram ; import com . lmax . disruptor . support . * ; import org . junit . Test ; import java . io . PrintStream ; import java . math . BigDecimal ; import java . util . concurrent . * ; import static org . hamcrest . core . Is . is ...
2,936
<s> package net . sf . sveditor . core . tests . parser ; import java . util . ArrayList ; import java . util . List ; import junit . framework . TestCase ; import net . sf . sveditor . core . SVCorePlugin ; import net . sf . sveditor . core . db . ISVDBChildItem ; import net . sf . sveditor . core . db . ISVDBItemBase...
2,937
<s> package org . rubypeople . rdt . internal . ui . browsing ; import org . eclipse . core . runtime . CoreException ; import org . rubypeople . rdt . core . IRubyScript ; import org . rubypeople . rdt . core . ISourceRange ; import org . rubypeople . rdt . core . ISourceReference ; import org . rubypeople . rdt . cor...
2,938
<s> package net . sf . sveditor . core . db ; public class SVDBConfigDecl extends SVDBScopeItem { public SVDBConfigDecl ( ) {
2,939
<s> package com . asakusafw . runtime . stage . preparator ; import java . io . IOException ; import org . apache . hadoop . mapreduce . Mapper ; import com . asakusafw . runtime . core . Result ; import com . asakusafw . runtime . stage . output . StageOutputDriver ; public abstract class PreparatorMapper < T > extend...
2,940
<s> package org . rubypeople . rdt . internal . ui . text ; import org . eclipse . core . resources . IMarkerDelta ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . resources . IResourceChangeEvent ; import org . eclipse . core . resources . IResourceChangeListener ; import org . ecl...
2,941
<s> package org . rubypeople . rdt . internal . ui . typehierarchy ; import org . rubypeople . rdt . internal . ui . actions . AbstractToggleLinkingAction ;
2,942
<s> package com . asakusafw . testdriver . windgate ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . io . File ; import java . io . FileOutputStream ; import java . io . IOException ; import java . io . ObjectOutputStream ; import java . net . URI ; import java . ut...
2,943
<s> package org . rubypeople . rdt . refactoring . ui . pages . encapsulatefield ; import org . eclipse . swt . SWT ; import org . eclipse . swt . events . SelectionEvent ; import org . eclipse . swt . events . SelectionListener ; import org . eclipse . swt . layout . GridData ; import org . eclipse . swt . layout . Gr...
2,944
<s> package com . asakusafw . utils . java . model . util ; import java . util . ArrayList ; import java . util . Collections ; import java . util . List ; public final class CommentEmitTrait { private static
2,945
<s> package com . asakusafw . testdriver . excel ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . io . IOException ; import java . net . URI ; import java . net . URL ; import org . junit . Test ; import com . asakusafw . testdriver . core . DataModelDefinition ; im...
2,946
<s> package $ { package } . jobflow ; import $ { package } . modelgen . dmdl
2,947
<s> package org . oddjob . logging ; import java . io . OutputStream ; public class LoggingOutputStream extends AbstractLoggingOutput { private final LogLevel level ; private final LogEventSink consoleArchiver ; public LoggingOutputStream ( OutputStream existing , LogLevel level , LogEventSink consoleArchiver ) { super...
2,948
<s> package com . asakusafw . modelgen . view . model ; import java . text . MessageFormat ; import java . util . ArrayList ; import java . util . Collections ; import java . util . List ; public class Join { public final Name table ; public final String alias ; public final List < On > condition ; public Join ( Name t...
2,949
<s> package com . aptana . rdt . internal . rake . view ; import org . eclipse . osgi . util . NLS ; public class RakeViewMessages extends NLS { private static final String BUNDLE_NAME = RakeViewMessages
2,950
<s> package fi . koku . services . entity . person . v1 ; import fi . koku . settings . KoKuPropertiesUtil ; public class PersonConstants { final public static String CUSTOMER_SERVICE_ENDPOINT = KoKuPropertiesUtil . get ( "" ) ; final public static String CUSTOMER_SERVICE_USER_ID = "marko" ; final public static String ...
2,951
<s> package org . rubypeople . rdt . internal . ui . callhierarchy ; import org . eclipse . ui . PlatformUI ; import org . rubypeople . rdt . core . IMethod ; import org . rubypeople . rdt . core . RubyModelException ; import org . rubypeople . rdt . core . search . IRubySearchScope ; import org . rubypeople . rdt . co...
2,952
<s> package net . bioclipse . opentox . api ; import java . util . HashMap ; import java . util . Map ; import net . bioclipse . core . domain . IStringMatrix ; import net . bioclipse . rdf . business . RDFManager ; public abstract class Model { private static RDFManager rdf = new RDFManager ( ) ; public static Map < S...
2,953
<s> package bonsai . app ; import java . io . IOException ; import java . util . Date ; import java . util . List ; import java . util . Locale ; import android . app . Activity ; import android . app . AlertDialog ; import android . content . Context ; import android . content . DialogInterface ; import android . cont...
2,954
<s> package org . rubypeople . rdt . internal . ui . search ; import java . util . ArrayList ; import java . util . HashMap ; import org . eclipse . core . resources . IFile ; import org . eclipse . core . resources . IMarker ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtim...
2,955
<s> package org . rubypeople . rdt . refactoring . tests . core ; import java . util . ArrayList ; import java . util . Iterator ; import org . jruby . ast . Node ; import org . rubypeople . rdt . refactoring . core . IRefactoringContext ; import org . rubypeople . rdt . refactoring . core . NodeProvider ; import org ....
2,956
<s> package de . fuberlin . wiwiss . d2rq . sql ; import java . sql . SQLException ; import java . sql . Statement ; import java . util . ArrayList ; import java . util . Arrays ; import java . util . HashSet ; import java . util . List ; import java . util . Set ; import junit . framework . TestCase ; import com . hp ...
2,957
<s> package org . rubypeople . rdt . internal . corext . callhierarchy ; import java . util . Map ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . core . runtime . OperationCanceledException ; import org . jruby . ast . CallNode ; import org . jruby . ast . ClassNode ; import org . jr...
2,958
<s> package com . asakusafw . yaess . multidispatch ; import java . io . File ; import java . io . FileInputStream ; import java . io . IOException ; import java . io . InputStream ; import java . lang . ref . Reference ; import java . lang . ref . SoftReference ; import java . text . MessageFormat ; import java . util...
2,959
<s> package org . rubypeople . rdt . internal . ui . compare ; import java . io . UnsupportedEncodingException ; import java . util . ArrayList ; import java . util . HashMap ; import java . util . Iterator ; import java . util . List ; import java . util . Map ; import org . eclipse . compare . CompareUI ; import org ...
2,960
<s> package org . rubypeople . rdt . core . formatter ; import java . io . BufferedReader ; import java . io . FileOutputStream ; import java . io . FileReader ; import java . io . IOException ; import java . io . StringWriter ; import junit . framework . TestCase ; import org . jruby . ast . ArgumentNode ; import org ...
2,961
<s> package org . oddjob . jobs ; import java . io . OutputStream ; import org . oddjob . arooa . ArooaSession ; import org . oddjob . arooa . deploy . annotations . ArooaHidden ; import org . oddjob . arooa . life . ArooaSessionAware ; import org . oddjob . arooa . reflect . ArooaClass ; import org . oddjob . arooa . ...
2,962
<s> package test . modelgen . table . io ; import java . io . IOException ; import javax . annotation . Generated ; import test . modelgen . table . model . ExportTempImportTarget13 ; import com . asakusafw . runtime . io . ModelOutput ; import com . asakusafw . runtime . io . RecordEmitter ; @ Generated ( "" ) @ Suppr...
2,963
<s> package net . sf . sveditor . core . srcgen ; import net . sf . sveditor . core . db . ISVDBChildItem ; import net . sf . sveditor . core . db . ISVDBNamedItem ; import net . sf . sveditor . core . db . SVDBFieldItem ; import net . sf . sveditor . core . db . SVDBFunction ; import net . sf . sveditor . core . db . ...
2,964
<s> package de . fuberlin . wiwiss . d2rq . find ; import java . util . ArrayList ; import java . util . Arrays ; import java . util . Collection ; import java . util . Collections ; import junit . framework . TestCase ; import com . hp . hpl . jena . graph . Node ; import com . hp . hpl . jena . sparql . vocabulary . ...
2,965
<s> package net . ggtools . grand . ui . graph . draw2d ; import net . ggtools . grand . ui . Application ; import net . ggtools . grand . ui . graph . DotGraphAttributes ; import org . apache . commons . logging . Log ; import org . apache . commons . logging . LogFactory ; import org . eclipse . draw2d . Label ; impo...
2,966
<s> package com . asakusafw . windgate . core ; import java . util . ArrayList ; import java . util . Collection ; import java . util . Collections ; import java . util . List ; import java . util . Properties ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import com . asakusafw . windgate . core ...
2,967
<s> package com . asakusafw . testdriver . core ; import java . io . IOException ; import java . net . URI ; import java . text . MessageFormat ; import java . util . ArrayList ; import java . util . List ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import com . asakusafw . testdriver . rule . V...
2,968
<s> package com . asakusafw . testdriver . json ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . io . IOException ; import java . math . BigDecimal ; import java . math . BigInteger ; import java . text . SimpleDateFormat ; import java . util . Calendar ; import org...
2,969
<s> package com . asakusafw . modelgen ; import java . nio . charset . Charset ; import java . util . ArrayList ; import java . util . Collections ; import java . util . List ; public final class Constants { public static final String VERSION = "0.0.1" ; public static final Charset OUTPUT_ENCODING = Charset . forName (...
2,970
<s> package org . rubypeople . rdt . internal . core . parser ; import junit . framework . TestCase ; import org . jruby . ast . Node ; import org . jruby . lexer . yacc . LexerSource ; import org . jruby . parser . DefaultRubyParser ; import org . jruby . parser .
2,971
<s> package org . rubypeople . rdt . internal . core . index ; import java . io . File ; import java . io . IOException ; import org . rubypeople . rdt . core . search . SearchPattern ; import org . rubypeople . rdt . internal . compiler . util . HashtableOfObject ; import org . rubypeople . rdt . internal . compiler ....
2,972
<s> package org . rubypeople . rdt . internal . corext . util ; import java . util . ArrayList ; import java . util . Iterator ; import java . util . Map ; import org . eclipse . core . runtime . IProgressMonitor ; import org . rubypeople . rdt . core . IType ; import org . rubypeople . rdt . core . ITypeHierarchy ; im...
2,973
<s> package com . lmax . disruptor ; import com . lmax . disruptor . support . StubEntry ; import org . hamcrest . Description ; import org . jmock . Expectations ; import org . jmock . Mockery ; import org . jmock . Sequence ; import org . jmock . api . Action ; import org . jmock . api . Invocation ; import org . jmo...
2,974
<s> package com . team1160 . scouting . frontend . elements ; import java . awt . Component ; import javax . swing . JLabel ; import javax . swing . JTextField ; public class SingleLineInputElement extends ScoutingElement { private static final long serialVersionUID = 998523818094409304L ; private JLabel label ; privat...
2,975
<s> package com . asakusafw . compiler . flow ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . io . IOException ; import java . lang . reflect . Constructor ; import java . lang . reflect . Field ; import java . lang . reflect . Method ; import java . util . List ; ...
2,976
<s> package com . asakusafw . compiler . bulkloader . testing . io ; import java . io . IOException ; import com . asakusafw . compiler . bulkloader . testing . model . MockTableModel ; import com . asakusafw . runtime . io .
2,977
<s> package org . rubypeople . rdt . internal . corext . callhierarchy ; import java . util . Arrays ; import java . util . Collection ; import java . util . HashSet ; import org . eclipse . core . runtime . IProgressMonitor ; import org . rubypeople . rdt . core . IType ; import org . rubypeople . rdt . core . ITypeHi...
2,978
<s> package com . asakusafw . dmdl . directio . csv . driver ; import com . asakusafw . dmdl . directio . csv . driver . CsvFieldTrait . Kind ; import com . asakusafw . dmdl .
2,979
<s> package com . asakusafw . bulkloader . common ; import java . util . Collections ; import java . util . HashSet ; import java . util . Map ; import java . util . Set ; import java . util . TreeMap ; public enum FileCompType { DEFLATED ( "COMPRESS" , "1" , "DEFLATE" ) , STORED ( "NONE" , "0" , "STORE" ) , ; private ...
2,980
<s> import org . xmlpull . v1 . * ; import java . util . * ; import java . io . * ; import java . net . * ; public class Weblogs { static List listChannels ( ) throws IOException , XmlPullParserException { return listChannels ( "" ) ; } static List listChannels ( String uri ) throws IOException , XmlPullParserException...
2,981
<s> package com . asakusafw . compiler . flow . processor . operator ; import javax . annotation . Generated ; import com . asakusafw . compiler . flow . testing . model . Ex1 ; import com . asakusafw . compiler . flow . testing . model . Ex2 ; import com . asakusafw . runtime . core . Result ; import com . asakusafw ....
2,982
<s> package net . sf . sveditor . core . db ; import java . util . List ; import net . sf . sveditor . core . db . stmt . SVDBVarDimItem ; public class SVDBTypeInfoBuiltin extends SVDBTypeInfo { public static final int TypeAttr_Signed = ( 1 << 7 ) ; public static final int TypeAttr_Unsigned = ( 1 << 8 ) ; public int fA...
2,983
<s> package org . rubypeople . rdt . internal . core . search ; import org . eclipse . core . resources . IFile ; import org . eclipse . core . resources . ResourcesPlugin ; import org . eclipse . core . runtime . Path ; import org . rubypeople . rdt . core . RubyModelException ; import org . rubypeople . rdt . core . ...
2,984
<s> package og . android . tether ; import java . util . ArrayList ; import java . util . List ; import og . android . tether . system . WebserviceTask ; import org . apache . http . HttpResponse ; import org . apache . http . message . BasicNameValuePair ; import android . content . Context ; import android . content ...
2,985
<s> package org . rubypeople . rdt . internal . ui . wizards . buildpaths . newsourcepage ; import org . eclipse . jface . action . Action ; import org . eclipse . ui . PlatformUI ;
2,986
<s> package net . sf . sveditor . core . db . stmt ; import net . sf . sveditor . core . db . SVDBItemType ; import net . sf . sveditor . core . db . expr . SVDBExpr ; public class SVDBAssertStmt extends SVDBStmt { public SVDBExpr fExpr ;
2,987
<s> package org . rubypeople . rdt . internal . ui . search ; import org . eclipse . jface . text . Document ; import org . eclipse . jface . text . IDocument ; import org . eclipse . search . ui . NewSearchUI ; import org . jruby . ast . Node ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeo...
2,988
<s> package com . aptana . rdt . core . rspec ; import org . rubypeople . rdt . core . ISourceRange ; import org . rubypeople . rdt . core . ISourceReference ; import org . rubypeople . rdt . core . RubyModelException ; import org . rubypeople . rdt . internal . core . SourceRange ; public class Example implements ISou...
2,989
<s> package com . sun . tools . hat . internal . model ; import java . io . IOException ; import com . sun . tools . hat . internal . parser . ReadBuffer ; public class JavaObjectArray extends JavaLazyReadObject { private Object clazz ; public JavaObjectArray ( long classID , long offset ) { super ( offset ) ; this . c...
2,990
<s> package org . rubypeople . rdt . refactoring . tests . util ; import junit . framework . TestCase ; import org . rubypeople . rdt . refactoring . util . StringHelper ; public class TC_StringHelper extends TestCase { public void testNumberOfOccurences ( ) { assertEquals ( 2
2,991
<s> package com . lmax . disruptor . support ; import com . lmax . disruptor . BatchHandler ; public final class ValueMutationHandler implements BatchHandler < ValueEntry > { private final Operation operation ; private long value ; public ValueMutationHandler
2,992
<s> package org . oddjob . scheduling ; import java . io . IOException ; import java . io . NotSerializableException ; import java . io . ObjectInputStream ; import java . io . ObjectOutputStream ; import java . io . Serializable ; import org . oddjob . arooa . reflect . ArooaPropertyException ; import org . oddjob . a...
2,993
<s> package net . sf . sveditor . ui ; import java . net . URI ; import net . sf . sveditor . core . db . index . plugin_lib . PluginFileStore ; import org . eclipse . core . resources . IFile ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . runtime . CoreException ; import org . ec...
2,994
<s> package org . rubypeople . rdt . internal . ti ; import java . util . Collection ; import junit . framework . TestCase ; public abstract class TypeInferrerTestCase extends TestCase { protected ITypeInferrer inferrer ; public TypeInferrerTestCase ( ) { super ( ) ; } public void setUp ( ) { inferrer = createTypeInfer...
2,995
<s> package de . fuberlin . wiwiss . d2rq . algebra ; import java . util . Collections ; import java . util . Set ; import de . fuberlin . wiwiss . d2rq . expr . AttributeExpr ; import de . fuberlin . wiwiss . d2rq . expr . NotNull ; import de . fuberlin . wiwiss . d2rq . expr . Equality ; import de . fuberlin . wiwiss...
2,996
<s> package com . pogofish . jadt . source ; import java . io . BufferedReader ; import java . io . File ; import java . io . FileInputStream ; import java . io . IOException ; import java . io . InputStreamReader ; public class FileSource implements Source { private final File srcFile ; public FileSource ( File srcFil...
2,997
<s> package com . asakusafw . vocabulary . bulkloader ; import java . util . List ; import com . asakusafw . vocabulary . external . ExporterDescription ; public abstract class BulkLoadExporterDescription implements ExporterDescription { public abstract String getTargetName ( ) ; public abstract Class < ? > getTableMod...
2,998
<s> package com . asakusafw . utils . java . internal . model . syntax ; import com . asakusafw . utils . java . model . syntax . AnnotationElement ; import com . asakusafw . utils . java . model . syntax . Expression ; import com . asakusafw . utils . java . model . syntax . ModelKind ; import com . asakusafw . utils ...
2,999
<s> package org . oddjob . jmx ; import java . lang . management . ManagementFactory ; import java . util . HashMap ; import java . util . Map ; import javax . management . MBeanServer ; import javax . management . ObjectName ; import javax . management . remote . JMXConnectorServer ; import javax . management . remote...