id
int32
0
3k
input
stringlengths
43
33.8k
gt
stringclasses
1 value
1,400
<s> package com . sun . tools . hat . internal . server ; import java . net . Socket ; import java . net . ServerSocket ; import java . util . concurrent . Executor ; import java . util .
1,401
<s> package com . asakusafw . compiler . operator . processor ; import static org . junit . Assert . * ; import org . junit . Test ; import com . asakusafw . compiler . operator . OperatorCompilerTestRoot ; import com . asakusafw . compiler . operator . model . MockHoge ; import com . asakusafw . utils . graph . Graph ; import com . asakusafw . vocabulary . flow . testing . MockIn ; import com . asakusafw . vocabulary . flow . testing . MockOut ; public class BranchOperatorProcessorTest extends OperatorCompilerTestRoot { @ Test public void simple ( ) { add ( "" ) ; add ( "" ) ; ClassLoader loader = start ( new BranchOperatorProcessor ( ) ) ; Object factory = create ( loader , "" ) ; MockIn < MockHoge > in = MockIn . of ( MockHoge . class , "in" ) ; MockOut < MockHoge > high = MockOut . of ( MockHoge . class , "high" ) ; MockOut < MockHoge > middle = MockOut . of ( MockHoge . class , "middle" ) ; MockOut < MockHoge > low = MockOut . of ( MockHoge . class , "low" ) ; Object branch = invoke ( factory , "example" , in ) ; high . add ( output ( MockHoge . class , branch , "high" ) ) ; middle . add ( output ( MockHoge . class , branch , "middle" ) ) ; low . add ( output ( MockHoge . class , branch , "low" ) ) ; Graph < String > graph = toGraph ( in ) ; assertThat ( graph . getConnected ( "in" ) , isJust ( "" ) ) ; assertThat ( graph . getConnected ( "" ) , isJust ( "high" , "middle" , "low" ) ) ; } @ Test public void parameterized ( ) { add ( "" ) ; add ( "" ) ; ClassLoader loader = start ( new BranchOperatorProcessor ( ) ) ; Object factory = create ( loader , "" ) ; MockIn < MockHoge > in = MockIn . of ( MockHoge . class , "in" ) ; MockOut < MockHoge > high = MockOut . of ( MockHoge . class , "high" ) ; MockOut < MockHoge > middle = MockOut .
1,402
<s> package com . asakusafw . testdriver . hadoop ; import java . net . URL ; import org . apache . hadoop . conf . Configuration ; import org . slf4j
1,403
<s> package net . sf . sveditor . ui . views . diagram ; import java . util . HashSet ; import net . sf . sveditor . core . db . SVDBClassDecl ; import net . sf . sveditor . core . db . SVDBFunction ; import net . sf . sveditor . core . db . SVDBItemType ; import net . sf . sveditor . core . db . SVDBTask ; import net . sf . sveditor . core . db . stmt . SVDBVarDeclItem ; import net . sf . sveditor . core . diagrams . DiagConnection ; import net . sf . sveditor . core . diagrams . DiagNode ; import net . sf . sveditor . ui . SVDBIconUtils ; import net . sf . sveditor . ui . views . diagram . figures . UMLClassFigure ; import org . eclipse . draw2d . ConnectionRouter ; import org . eclipse . draw2d . IFigure ; import org . eclipse . draw2d . Label ; import org . eclipse . swt . graphics . Color ; import org . eclipse . swt . graphics . Image ; import org . eclipse . zest . core . viewers . EntityConnectionData ; import org . eclipse . zest . core . viewers . IConnectionStyleProvider ; import org . eclipse . zest . core . viewers . IFigureProvider ; import org . eclipse . zest . core . widgets . ZestStyles ; public class DiagLabelProvider extends AbstractDiagLabelProvider implements IFigureProvider , IConnectionStyleProvider { final HashSet < String > fExcludedUVMMembers ; public DiagLabelProvider ( ) { fExcludedUVMMembers = new HashSet < String > ( ) ; createExcludeLists ( ) ; } private void createExcludeLists ( ) { fExcludedUVMMembers . add ( "type_name" ) ; fExcludedUVMMembers . add ( "" ) ; fExcludedUVMMembers . add ( "get_type" ) ; fExcludedUVMMembers . add ( "" ) ; fExcludedUVMMembers . add ( "" ) ; fExcludedUVMMembers . add (
1,404
<s> package net . sf . sveditor . core . db . stmt ; import java . util . ArrayList ; import java .
1,405
<s> package net . bioclipse . opentox . ds ; import java . util . ArrayList ; import java . util . List ; import java . util . Map ; import net . bioclipse . core . business . BioclipseException ; import net . bioclipse . ds . Activator ; import net . bioclipse . ds . business . DSBusinessModel ; import net . bioclipse . ds . business . IDSManager ; import net . bioclipse . ds . model . Endpoint ; import net . bioclipse . ds . model . IConsensusCalculator ; import net . bioclipse . ds . model . IDSTest ; import net . bioclipse . ds . model . ITestDiscovery ; import net . bioclipse . opentox . OpenToxService ; import net . bioclipse . opentox . business . IOpentoxManager ; import org . apache . log4j . Logger ; public class OpenToxTestDiscovery implements ITestDiscovery { private static final Logger logger = Logger . getLogger ( OpenToxTestDiscovery . class ) ; public OpenToxTestDiscovery ( ) { } @ Override public List < IDSTest > discoverTests ( ) throws BioclipseException { List < IDSTest > discoveredTests = new ArrayList < IDSTest > ( ) ; IOpentoxManager opentox = net . bioclipse . opentox . Activator . getDefault ( ) . getJavaOpentoxManager ( ) ; List < OpenToxService > OTservices = net . bioclipse . opentox . Activator . getOpenToxServices ( ) ; if ( OTservices == null ) throw new BioclipseException ( "No OpenTox " + "" ) ; for ( OpenToxService service : OTservices ) { if ( service . getServiceSPARQL ( ) != null && service . getServiceSPARQL ( ) . length ( ) > 3 ) { List < String > models = opentox . listModels ( service . getServiceSPARQL ( ) ) ; if ( models != null ) { logger . debug ( "Discovered " + models . size ( ) + "" + service ) ; for ( String model : models ) { Map < String , String > props = opentox . getModelInfo ( service . getServiceSPARQL ( ) , model ) ; String title = props . get ( "" ) ; if ( title . endsWith ( "" ) ) { title = title . substring ( 0 , title . indexOf ( "^^" ) ) ; }
1,406
<s> package com . asakusafw . dmdl . java ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . io . File ; import java . io . IOException ; import java . io . PrintWriter ; import java . util . Collections ; import java . util . List ; import java . util . Set ; import java . util . TreeSet ; import org . hamcrest . BaseMatcher ; import org . hamcrest . Description ; import org . hamcrest . Matcher ; import org . junit . Rule ; import org . junit . Test ; import org . junit . rules . TemporaryFolder ; import com . asakusafw . dmdl . source . DmdlSourceRepository ; import com . asakusafw . dmdl . source . DmdlSourceRepository . Cursor ; import com . asakusafw . utils . collections . Lists ; import com . asakusafw . utils . java . model . util . Emitter ; public class MainTest { @ Rule public TemporaryFolder folder = new TemporaryFolder ( ) ; @ Test public void minimum ( ) throws Exception { File output = folder . newFolder ( "output" ) ; File source = folder . newFile ( "example.dmdl"
1,407
<s> package com . asakusafw . compiler . bulkloader ; import java . io . IOException ; import java . io . OutputStream ; import java . util . Arrays ; import java . util . Collection ; import java . util . Collections ; import java . util . List ; import java . util . Map ; import java . util . Properties ; import java . util . Set ; import java . util . TreeSet ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import com . asakusafw . compiler . bulkloader . BulkLoaderScript . DuplicateRecordErrorTable ; import com . asakusafw . compiler . bulkloader . BulkLoaderScript . ExportTable ; import com . asakusafw . compiler . bulkloader . BulkLoaderScript . ImportTable ; import com . asakusafw . compiler . bulkloader . BulkLoaderScript . LockType ; import com . asakusafw . compiler . bulkloader . BulkLoaderScript . LockedOperation ; import com . asakusafw . compiler . common . JavaName ; import com . asakusafw . compiler . flow . ExternalIoCommandProvider ; import com . asakusafw . compiler . flow . ExternalIoDescriptionProcessor ; import com . asakusafw . compiler . flow . Location ; import com . asakusafw . compiler . flow . jobflow . CompiledStage ; import com . asakusafw . compiler . flow . mapreduce . parallel . ParallelSortClientEmitter ; import com . asakusafw . compiler . flow . mapreduce . parallel . ResolvedSlot ; import com . asakusafw . compiler . flow . mapreduce . parallel . Slot ; import com . asakusafw . compiler . flow . mapreduce . parallel . SlotResolver ; import com . asakusafw . runtime . stage . input . TemporaryInputFormat ; import com . asakusafw . runtime . stage . output . TemporaryOutputFormat ; import com . asakusafw . thundergate . runtime . cache . CacheStorage ; import com . asakusafw . thundergate . runtime . cache . ThunderGateCacheSupport ; import com . asakusafw . thundergate . runtime . property . PathConstants ; import com . asakusafw . thundergate . runtime . property . PropertyLoader ; import com . asakusafw . utils . collections . Lists ; import com . asakusafw . utils . collections . Maps ; import com . asakusafw . utils . collections . Sets ; import com . asakusafw . vocabulary . bulkloader . BulkLoadExporterDescription ; import com . asakusafw . vocabulary . bulkloader . BulkLoadExporterDescription . DuplicateRecordCheck ; import com . asakusafw . vocabulary . bulkloader . BulkLoadImporterDescription ; import com . asakusafw . vocabulary . bulkloader . BulkLoadImporterDescription . Mode ; import com . asakusafw . vocabulary . bulkloader . SecondaryImporterDescription ; import com . asakusafw . vocabulary . external . ExporterDescription ; import com . asakusafw . vocabulary . external . ImporterDescription ; import com . asakusafw . vocabulary . external . ImporterDescription . DataSize ; import com . asakusafw . vocabulary . flow . graph . InputDescription ; import com . asakusafw . vocabulary . flow . graph . OutputDescription ; public class BulkLoaderIoProcessor extends ExternalIoDescriptionProcessor { static final Logger LOG = LoggerFactory . getLogger ( BulkLoaderIoProcessor . class ) ; private static final String CMD_IMPORTER = PathConstants . PATH_IMPORTER ; private static final String CMD_EXPORTER = PathConstants . PATH_EXPORTER ; private static final String CMD_FINALIZER = PathConstants . PATH_FINALIZER ; private static final String CMD_CACHE_FINALIZER = PathConstants . PATH_CACHE_FINALIZER ; private static final String CMD_ARG_PRIMARY = "primary" ; private static final String CMD_ARG_SECONDARY = "secondary" ; private static final String MODULE_NAME = "bulkloader" ; private static final String MODULE_NAME_PREFIX = "bulkloader." ; private static final String CACHE_FEATURE_PREFIX = "" ; private static final Location CACHE_HEAD_CONTENTS = new Location ( null , CacheStorage . HEAD_DIRECTORY_NAME ) . append ( TemporaryOutputFormat . DEFAULT_FILE_NAME ) . asPrefix ( ) ; @ Override public Class < ? extends ImporterDescription > getImporterDescriptionType ( ) { return BulkLoadImporterDescription . class ; } @ Override public Class < ? extends ExporterDescription > getExporterDescriptionType ( ) { return BulkLoadExporterDescription . class ; } @ Override public boolean validate ( List < InputDescription > inputs , List < OutputDescription > outputs ) { LOG . debug ( "" , inputs , outputs ) ; boolean valid = true ; valid &= checkImports ( inputs ) ; valid &= checkExports ( outputs ) ; valid &= checkAssignment ( inputs , outputs ) ; return valid ; } private boolean checkImports ( List < InputDescription > inputs ) { assert inputs != null ; boolean valid = true ; for ( InputDescription input : inputs ) { BulkLoadImporterDescription desc = extract ( input ) ; boolean cacheEnabled = desc . isCacheEnabled ( ) ; if ( cacheEnabled ) { if ( ThunderGateCacheSupport . class . isAssignableFrom ( desc . getModelType ( ) ) == false ) { getEnvironment ( ) . error ( "" , desc . getClass ( ) . getName ( ) , desc . getModelType ( ) . getName ( ) ) ; valid = false ; } if ( desc . getWhere ( ) != null && desc . getWhere ( ) . trim ( ) . isEmpty ( ) == false ) { getEnvironment ( ) . error ( "" , desc . getClass ( ) . getName ( ) , desc . getWhere ( ) ) ; valid = false ; } if ( desc . getLockType ( ) == BulkLoadImporterDescription . LockType . ROW || desc . getLockType ( ) == BulkLoadImporterDescription . LockType . ROW_OR_SKIP ) { getEnvironment ( ) . error ( "" , desc . getClass ( ) . getName ( ) , desc . getLockType ( ) ) ; valid = false ; } if ( desc . getDataSize ( ) == DataSize . TINY || desc . getDataSize ( ) == DataSize . SMALL ) { getEnvironment ( ) . error ( "" , desc . getClass ( ) . getName ( ) , desc . getDataSize ( ) ) ; valid = false ; } } } return valid ; } private boolean checkExports ( List < OutputDescription > outputs ) { assert outputs != null ; boolean valid = true ; for ( OutputDescription output : outputs ) { BulkLoadExporterDescription desc = extract ( output ) ; Set < String > columns = Sets . from ( desc . getColumnNames ( ) ) ; if ( columns . containsAll ( desc . getTargetColumnNames ( ) ) == false ) { getEnvironment ( ) . error ( "" , desc . getClass ( ) . getName ( ) , diff ( desc . getTargetColumnNames ( ) , columns ) ) ; valid = false ; } DuplicateRecordCheck dupCheck = desc . getDuplicateRecordCheck ( ) ; if ( dupCheck != null ) { if ( columns . containsAll ( dupCheck . getColumnNames ( ) ) == false ) { getEnvironment ( ) . error ( "" , desc . getClass ( ) . getName ( ) , diff ( dupCheck . getColumnNames ( ) , columns ) ) ; valid = false ; } if ( columns . containsAll ( dupCheck . getCheckColumnNames ( ) ) == false ) { getEnvironment ( ) . error ( "" , diff ( dupCheck . getCheckColumnNames ( ) , columns ) ) ; valid = false ; } } } return valid ; } private Set < String > diff ( Collection < String > a , Collection < String > b ) { assert a != null ; assert b != null ; Set < String > diff = new TreeSet < String > ( a ) ; diff . removeAll ( b ) ; return diff ; } private boolean checkAssignment ( List < InputDescription > inputs , List < OutputDescription > outputs ) { assert inputs != null ; assert outputs != null ; Set < String > primaryTargets = Sets . create ( ) ; Set < String > secondaryTargets = Sets . create ( ) ; for ( InputDescription description : inputs ) { BulkLoadImporterDescription desc = extract ( description ) ; if ( desc . getMode ( ) == Mode . PRIMARY ) { primaryTargets . add ( desc . getTargetName ( ) ) ; } else { secondaryTargets . add ( desc . getTargetName ( ) ) ; if ( desc . getLockType ( ) != BulkLoadImporterDescription . LockType . UNUSED ) { getEnvironment ( ) . error ( "" , desc . getClass ( ) . getName ( ) ) ; return false ; } } } if ( primaryTargets . size ( ) >= 2 ) { getEnvironment ( ) . error ( "" , primaryTargets , SecondaryImporterDescription . class . getSimpleName ( ) ) ; return false ; } for ( String primary : primaryTargets ) { if ( secondaryTargets . contains ( primary ) ) { LOG . warn ( "" , primary ) ; } } Set < String > exportTargets = Sets . create ( ) ; for ( OutputDescription description : outputs ) { BulkLoadExporterDescription desc = extract ( description ) ; exportTargets . add ( desc . getTargetName ( ) ) ; } if ( exportTargets . size ( ) >= 2 ) { getEnvironment ( ) . error ( "" , primaryTargets ) ; return false ; } if ( primaryTargets . isEmpty ( ) || exportTargets . isEmpty ( ) ) { return true ; } if ( primaryTargets . equals ( exportTargets ) == false ) { getEnvironment ( ) . error ( "" , primaryTargets , exportTargets ) ; return false ; } return true ; } @ Override public SourceInfo getInputInfo ( InputDescription description ) { Set < Location > locations = Collections . singleton ( getInputLocation ( description ) ) ; return new SourceInfo ( locations , TemporaryInputFormat . class ) ; } @ Override public List < CompiledStage > emitEpilogue ( IoContext context ) throws IOException { if ( context . getOutputs ( ) . isEmpty ( ) ) { return Collections . emptyList ( ) ; } List < Slot > slots = Lists . create ( ) ; for ( Output output : context . getOutputs ( ) ) { Slot slot = toSlot ( output ) ; slots . add ( slot ) ; } List < ResolvedSlot > resolved = new SlotResolver ( getEnvironment ( ) ) . resolve ( slots ) ; if ( getEnvironment ( ) . hasError ( ) ) { return Collections . emptyList ( ) ; } ParallelSortClientEmitter emitter = new ParallelSortClientEmitter ( getEnvironment ( ) ) ; CompiledStage stage = emitter . emit ( MODULE_NAME , resolved , getEnvironment ( ) . getEpilogueLocation ( MODULE_NAME ) ) ; return Collections . singletonList ( stage ) ; } private Slot toSlot ( Output output ) { BulkLoadExporterDescription desc = extract ( output . getDescription ( ) ) ; String name = normalize ( output . getDescription ( ) . getName ( ) ) ; return new Slot ( name , output . getDescription ( ) . getDataType ( ) , desc . getPrimaryKeyNames ( ) , output . getSources ( ) , TemporaryOutputFormat . class ) ; } private Location getImporterDestination
1,408
<s> package com . asakusafw . runtime . stage . input ; import java . io . IOException ; import java . util . Iterator ; import java . util . List ; import org . apache . hadoop . mapreduce . InputFormat ; import org . apache . hadoop . mapreduce . InputSplit ; import org . apache . hadoop . mapreduce . RecordReader ; import org . apache . hadoop . mapreduce . TaskAttemptContext ; import org . apache . hadoop . util . ReflectionUtils ; import com . asakusafw . runtime . stage . input . StageInputSplit . Source ; @ SuppressWarnings ( "rawtypes" ) public class StageInputRecordReader extends RecordReader { private static final RecordReader < ? , ? > VOID = new RecordReader < Object , Object > ( ) { @ Override public void initialize ( InputSplit split , TaskAttemptContext ctxt ) { return ; } @ Override public boolean nextKeyValue ( ) { return false ; } @ Override public Object getCurrentKey ( ) { throw new IllegalStateException ( ) ; } @ Override public Object getCurrentValue ( ) { throw new IllegalStateException ( ) ; } @ Override public float getProgress ( ) { return 0f ; } @ Override public void close ( ) { return ; } } ; private Iterator < Source > sources ; private TaskAttemptContext context ; private RecordReader < ? , ? > current ; private boolean eof ; private float progressPerSource ; private float baseProgress ; @ Override public void initialize ( InputSplit split , TaskAttemptContext taskContext ) throws IOException , InterruptedException { assert split instanceof StageInputSplit ; List < Source > sourceList = ( ( StageInputSplit ) split ) . getSources ( ) ; this . sources = sourceList . iterator ( ) ; this . context = taskContext ; this . progressPerSource = sourceList . isEmpty ( ) ? 1f : 1f / sourceList . size ( ) ; this . baseProgress = 0f ; prepare ( ) ; } private void prepare ( ) throws IOException , InterruptedException { if (
1,409
<s> package com . asakusafw . compiler . fileio . flow ; import com . asakusafw . compiler . fileio . external . Ex1MockImporterDescription ; import com . asakusafw . compiler . fileio . model . Ex1 ; import com . asakusafw . compiler . fileio . operator . ExOperatorFactory ; import com . asakusafw . compiler . fileio . operator . ExOperatorFactory . Update ; import com . asakusafw . vocabulary . flow . Export ; import com . asakusafw . vocabulary . flow . FlowDescription ; import com . asakusafw . vocabulary . flow . Import ;
1,410
<s> package org . rubypeople . rdt . internal . core ; import java . util . ArrayList ; import java . util . Map ; import org . eclipse . core . resources . IContainer ; import org . eclipse . core . resources . IFolder ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IPath ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . core . runtime . IStatus ; import org . eclipse . core . runtime . Status ; import org . rubypeople . rdt . core . ILoadpathEntry ; import org . rubypeople . rdt . core . IParent ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . IRubyModelStatusConstants ; import org . rubypeople . rdt . core . ISourceFolder ; import org . rubypeople . rdt . core . ISourceFolderRoot ; import org . rubypeople . rdt . core . RubyModelException ; import org . rubypeople . rdt . core . WorkingCopyOwner ; import org . rubypeople . rdt . internal . core . util . CharOperation ; import org . rubypeople . rdt . internal . core . util . MementoTokenizer ; import org . rubypeople . rdt . internal . core . util . Util ; public class SourceFolderRoot extends Openable implements ISourceFolderRoot { protected Object resource ; protected SourceFolderRoot ( IResource resource , RubyProject project ) { super ( project ) ; this . resource = resource ; } public boolean hasChildren ( ) throws RubyModelException { return true ; } @ Override protected boolean buildStructure ( OpenableElementInfo info , IProgressMonitor pm , Map newElements , IResource underlyingResource ) throws RubyModelException { IStatus status = validateOnLoadpath ( ) ; if ( ! resourceExists ( ) ) throw newNotPresentException ( ) ; return computeChildren ( info , newElements ) ; } public boolean equals ( Object o ) { if ( this == o ) return true ; if ( ! ( o instanceof SourceFolderRoot ) ) return false ; SourceFolderRoot other = ( SourceFolderRoot ) o ; return this . resource . equals ( other . resource ) && this . parent . equals ( other . parent ) ; } protected IStatus validateOnLoadpath ( ) { IPath path = this . getPath ( ) ; try { RubyProject project = ( RubyProject ) getRubyProject ( ) ; ILoadpathEntry [ ] classpath = project . getResolvedLoadpath ( true , false , false ) ; for ( int i = 0 , length = classpath . length ; i < length ; i ++ ) { ILoadpathEntry entry = classpath [ i ] ; if ( entry . getPath ( ) . equals ( path ) ) { return Status . OK_STATUS ; } } } catch ( RubyModelException e ) { return e . getRubyModelStatus ( ) ; } return new RubyModelStatus ( IRubyModelStatusConstants . ELEMENT_NOT_ON_CLASSPATH , this ) ; } public char [ ] [ ] fullExclusionPatternChars ( ) { try { LoadpathEntry entry = ( LoadpathEntry ) getRawLoadpathEntry ( ) ; if ( entry == null ) { return null ; } else { return entry . fullExclusionPatternChars ( ) ; } } catch ( RubyModelException e ) { return null ; } } public ILoadpathEntry getRawLoadpathEntry ( ) throws RubyModelException { ILoadpathEntry rawEntry = null ; RubyProject project = ( RubyProject ) this . getRubyProject ( ) ; project . getResolvedLoadpath ( true , false , false ) ; RubyModelManager . PerProjectInfo perProjectInfo = project . getPerProjectInfo ( ) ; if ( perProjectInfo != null && perProjectInfo . resolvedPathToRawEntries != null ) { rawEntry = ( ILoadpathEntry ) perProjectInfo . resolvedPathToRawEntries . get ( this . getPath ( ) ) ; } return rawEntry ; } public char [ ] [ ] fullInclusionPatternChars ( ) { try { LoadpathEntry entry = ( LoadpathEntry ) getRawLoadpathEntry ( ) ; if ( entry == null ) { return null ; } else { return entry . fullInclusionPatternChars ( ) ; } } catch ( RubyModelException e ) { return null ; } } protected boolean computeChildren ( OpenableElementInfo info , Map newElements ) throws RubyModelException { try { IResource underlyingResource = getResource ( ) ; if ( underlyingResource . getType ( ) == IResource . FOLDER || underlyingResource . getType ( ) == IResource . PROJECT ) { ArrayList vChildren = new ArrayList ( 5 ) ; IContainer rootFolder = ( IContainer ) underlyingResource ; computeFolderChildren ( rootFolder , CharOperation . NO_STRINGS , vChildren ) ; IRubyElement [ ] children = new IRubyElement [ vChildren . size ( ) ] ; vChildren . toArray ( children ) ; info . setChildren ( children ) ; } } catch ( RubyModelException e ) { info . setChildren ( new IRubyElement [ ] { } ) ; throw e ; } return true ; } @ Override protected Object createElementInfo ( ) { return new SourceFolderRootInfo ( ) ; } @ Override public int getElementType ( ) { return IRubyElement . SOURCE_FOLDER_ROOT ; } public String getElementName ( ) { if ( this . resource instanceof IFolder ) return ( ( IFolder ) this . resource ) . getName ( ) ; return "" ; } public ISourceFolder createSourceFolder ( String names , boolean force , IProgressMonitor monitor ) throws RubyModelException { CreateSourceFolderOperation op = new CreateSourceFolderOperation ( this , names , force ) ; op . runOperation ( monitor ) ; return getSourceFolder ( op . pkgName ) ; } protected void computeFolderChildren ( IContainer folder , String [ ] pkgName , ArrayList vChildren ) throws RubyModelException { ISourceFolder pkg = getSourceFolder ( pkgName ) ; vChildren . add ( pkg ) ; try { RubyProject rubyProject = ( RubyProject ) getRubyProject ( ) ; RubyModelManager manager = RubyModelManager . getRubyModelManager ( ) ; IResource [ ] members = folder . members ( ) ; for ( int i = 0 , max = members . length ; i < max ; i ++ ) { IResource member = members [ i ] ; String memberName = member . getName ( ) ; switch ( member . getType ( ) ) { case IResource . FOLDER : if ( rubyProject . contains ( member ) ) { String [ ] newNames = Util . arrayConcat ( pkgName , manager . intern ( memberName ) ) ; computeFolderChildren ( ( IFolder ) member , newNames , vChildren ) ; } break ; case IResource . FILE : break ; } } } catch ( IllegalArgumentException e ) { throw new RubyModelException ( e , IRubyModelStatusConstants . ELEMENT_DOES_NOT_EXIST ) ; } catch ( CoreException e ) { throw new RubyModelException ( e ) ; } } public void delete ( int updateResourceFlags , int updateModelFlags , IProgressMonitor monitor ) throws RubyModelException { } public boolean exists ( ) { return super . exists ( ) ; } public SourceFolder getSourceFolder ( String [ ] names ) { return new SourceFolder ( this , names ) ; } public boolean isExternal ( ) { return false ; }
1,411
<s> package net . sf . sveditor . ui . editor ; public interface SVDocumentPartitions { String SV_MULTILINE_COMMENT = "" ; String SV_SINGLELINE_COMMENT = "" ; String SV_KEYWORD = "__sv_keyword" ; String SV_STRING = "__sv_string" ; String SV_CODE = "__sv_code" ; String [
1,412
<s> package org . springframework . samples . petclinic ; import java . util . ArrayList ; import java . util
1,413
<s> package net . sf . sveditor . core . tests . parser ; import java . io . IOException ; import java . io . InputStream ; import java . net . URL ; import java . util . ArrayList ; import java . util . List ; import junit . framework . TestCase ; import net . sf . sveditor . core . SVCorePlugin ; import net . sf . sveditor . core . db . SVDBFile ; import net . sf . sveditor . core . db . SVDBMarker ; import net . sf . sveditor . core . log . LogFactory ; import net . sf . sveditor . core . log . LogHandle ; import net . sf . sveditor . core . parser . SVParseException ; import net . sf . sveditor . core . tests . SVCoreTestsPlugin ; import net . sf . sveditor . core . tests . SVDBTestUtils ; public class TestParserSVStdExamples extends TestCase { public void test_7_2_0_struct_1 ( ) throws SVParseException { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; runTest ( "" , "" , new String [ ] { "c" , "f" , "IR" } ) ; } public void test_7_2_0_struct_2 ( ) throws SVParseException { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; runTest ( "" , "" , new String [ ] { "c" , "f" , "IR" } ) ; } public void test_7_2_1_struct_1 ( ) throws SVParseException { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; runTest ( "" , "" , new String [ ] { "c" , "pack1" , "pack2" } ) ; } public void test_7_2_1_struct_2 ( ) throws SVParseException { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; runTest ( "" , "" , new String [ ] { "c" , "s_atmcell" } ) ; } public void test_7_2_2_struct_1 ( ) throws SVParseException { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; runTest ( "" , "" , new String [ ] { "c" , "packet1" , "p1" , "pi" } ) ; } public void test_7_3_0_union_1 ( ) throws SVParseException { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; runTest ( "" , "" , new String [ ] { "c" , "num" , "tagged_st" , "ts" } ) ; } public void test_13_5_3_tf_1 ( ) throws SVParseException { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; runTest ( "" , "" , new String [ ] { "c" , "read" , "do_something" } ) ; } public void test_13_5_3_tf_2 ( ) throws SVParseException { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; runTest ( "" , "" , new String [ ] { "m" , "n" } ) ; } public void test_13_5_4_tf_1 ( ) throws SVParseException { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; runTest ( "" , "" , new String [ ] { "c" } ) ; } public void test_16_3_0_assert_1 ( ) throws SVParseException { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; runTest ( "" , "" , new String [ ] { "c" } ) ; } public void test_16_3_0_assert_2 ( ) throws SVParseException { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; runTest ( "" , "" , new String [ ] { "m" } ) ; } public void test_16_3_0_assert_3 ( ) throws SVParseException { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; runTest ( "" , "" , new String [ ] { "m" } ) ; } public void test_16_4_2_assert_1 ( ) throws SVParseException { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; runTest ( "" , "" , new String [ ] { "m" } ) ; } public void test_16_4_2_assert_2 ( ) throws SVParseException { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; runTest ( "" , "" , new String [ ] { "m" } ) ; } public void test_16_4_2_assert_3 ( ) throws SVParseException { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; runTest ( "" , "" , new String [ ] { "m" } ) ; } public void test_16_4_3_assert_1 ( ) throws SVParseException { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; runTest ( "" , "" , new String [ ] { "m" } ) ; } public void test_16_4_3_assert_2 ( ) throws SVParseException { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; runTest ( "" , "" , new String [ ] { "m" } ) ; } public void test_16_4_4_assert_1 ( ) throws SVParseException { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; runTest ( "" , "" , new String [ ] { "m" } ) ; } public void test_16_4_4_assert_2 ( ) throws SVParseException { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; runTest ( "" , "" , new String [ ] { "m" } ) ; } public void test_16_4_5_assert_1 ( ) throws SVParseException { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; runTest ( "" , "" , new String [ ] { "fsm" } ) ; } public void test_16_6_0_assert_1 ( ) throws SVParseException { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; runTest ( "" , "" , new String [ ] { "m" } ) ; } public void test_16_8_0_sequence_1 ( ) throws SVParseException { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; runTest ( "" , "" , new String [ ] { "m" } ) ; } public void test_16_8_0_sequence_2 ( ) throws SVParseException { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; runTest ( "" , "" , new String [ ] { "m" } ) ; } public void test_16_8_0_sequence_3 ( ) throws SVParseException { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; runTest ( "" , "" , new String [ ] { "m" }
1,414
<s> package org . rubypeople . rdt . internal . core . search ; import java . util . ArrayList ; import java . util . List ; import java . util . StringTokenizer ; import org . rubypeople . rdt . internal . core . util . Util ; public class MethodPatternParser { private String selector ; private String typeName ; List < String > params = new ArrayList < String > ( ) ; public char [ ] getSelector ( ) { if ( selector == null ) return null ; return selector . toCharArray ( ) ; } public void parse ( String string ) { if ( string == null ) return ; int index = string . indexOf ( "." ) ; if ( index == - 1 ) { index = string . indexOf ( "#" ) ; } if ( index != - 1 ) { typeName = string . substring ( 0 , index ) ; selector = string . substring ( index + 1 ) ; } else { selector = string ; typeName = null ; } index = selector . indexOf ( '(' ) ; if ( index != - 1 ) { String raw = selector . substring ( index + 1 ,
1,415
<s> package com . asakusafw . compiler . bulkloader . testing . io ; import java . io . IOException ; import com . asakusafw . compiler . bulkloader . testing . model . MockUnionModel ; import com . asakusafw . runtime . io . ModelOutput ; import com . asakusafw . runtime . io . RecordEmitter ; public final class MockUnionModelOutput implements ModelOutput < MockUnionModel > { private final RecordEmitter emitter ; public MockUnionModelOutput ( RecordEmitter
1,416
<s> package org . rubypeople . rdt . internal . core . search . matching ; import org . eclipse . core . runtime . CoreException ; import org . rubypeople . rdt . core . IField ; import org . rubypeople . rdt . core . IMember ; import org . rubypeople . rdt . core . IParent ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . ISourceRange ; import org . rubypeople
1,417
<s> package org . rubypeople . rdt . internal . ui . rubyeditor ; import org . eclipse . jface . action . IAction ; import org . eclipse . jface . preference . IPreferenceStore ; import org . eclipse . jface . text . IRegion ; import org . eclipse . jface . util . IPropertyChangeListener ; import org . eclipse . jface . util . PropertyChangeEvent ; import org . eclipse . ui . PlatformUI ; import org . eclipse . ui . texteditor . ITextEditor ; import org . eclipse . ui . texteditor . TextEditorAction ; import org . rubypeople . rdt . internal . ui . IRubyHelpContextIds ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; import org . rubypeople . rdt . internal . ui . RubyPluginImages ; import org . rubypeople . rdt . ui . IWorkingCopyManager ; import org . rubypeople . rdt . ui . PreferenceConstants ; public class TogglePresentationAction extends TextEditorAction implements IPropertyChangeListener { private IPreferenceStore fStore ; public TogglePresentationAction ( ) { super ( RubyEditorMessages . getBundleForConstructedKeys ( ) , "" , null , IAction . AS_CHECK_BOX ) ; RubyPluginImages . setToolImageDescriptors ( this , "" ) ; PlatformUI . getWorkbench ( ) . getHelpSystem ( ) . setHelp ( this , IRubyHelpContextIds . TOGGLE_PRESENTATION_ACTION ) ; update ( ) ; } public void run ( ) { ITextEditor editor = getTextEditor ( ) ; if ( editor == null ) return ; IRegion remembered = editor . getHighlightRange ( ) ; editor . resetHighlightRange ( ) ; boolean showAll = ! editor . showsHighlightRangeOnly ( ) ; setChecked ( showAll ) ; editor . showHighlightRangeOnly ( showAll ) ; if ( remembered != null ) editor . setHighlightRange ( remembered . getOffset ( ) , remembered . getLength ( ) , true ) ; fStore . removePropertyChangeListener ( this ) ; fStore . setValue ( PreferenceConstants . EDITOR_SHOW_SEGMENTS , showAll ) ; fStore . addPropertyChangeListener ( this ) ; } public void update ( ) {
1,418
<s> package com . asakusafw . testdriver ; import org . junit . Rule ; import org . junit . Test ; import com . asakusafw . runtime . configuration . FrameworkDeployer ; import com . asakusafw . testdriver . testing . batch . SimpleBatch ; import com . asakusafw . testdriver . testing . model . Simple ; public class BatchTesterTest { @ Rule public FrameworkDeployer framework = new FrameworkDeployer ( ) ; @ Test public void simple ( ) { BatchTester tester = new BatchTester ( getClass ( ) ) ; tester . setFrameworkHomePath ( framework . getHome ( ) ) ; tester . jobflow ( "simple" ) . input ( "simple" , Simple . class ) . prepare ( "" ) ; tester . jobflow ( "simple" ) . output ( "simple" , Simple . class ) . verify ( "" , new IdentityVerifier ( ) ) ; tester . runTest ( SimpleBatch . class ) ; } @ Test ( expected = IllegalStateException . class ) public void invalid_jobflow ( ) { BatchTester tester = new BatchTester ( getClass ( ) ) ; tester . setFrameworkHomePath ( framework . getHome ( ) ) ; tester . jobflow ( "INVALID" ) . input ( "simple" , Simple . class ) . prepare ( "" ) ; tester . jobflow ( "INVALID" ) . output ( "simple" , Simple . class ) . verify ( "" , new IdentityVerifier ( ) ) ; tester . runTest ( SimpleBatch . class ) ; } @ Test ( expected = IllegalStateException . class ) public void invalid_input_prepare_name ( ) { BatchTester tester = new BatchTester ( getClass ( ) ) ; tester . setFrameworkHomePath ( framework . getHome ( ) ) ; tester . jobflow ( "simple" ) . input ( "INVALID" , Simple . class ) . prepare ( "" ) ; tester . jobflow ( "simple" ) . output ( "simple" , Simple . class ) . verify ( "" , new IdentityVerifier ( ) ) ; tester . runTest ( SimpleBatch . class ) ; } @ Test ( expected = IllegalStateException . class ) public void invalid_input_prepare_type ( ) { BatchTester tester = new BatchTester ( getClass ( ) ) ; tester . setFrameworkHomePath ( framework . getHome ( ) ) ; tester . jobflow ( "simple" ) . input ( "simple" , Void . class ) . prepare ( "" ) ; tester . jobflow ( "simple" ) . output ( "simple" , Simple . class ) . verify ( "" , new IdentityVerifier ( ) ) ; tester . runTest ( SimpleBatch . class ) ; } @ Test ( expected = IllegalArgumentException . class ) public void invalid_input_prepare_data ( ) { BatchTester tester = new BatchTester ( getClass ( ) ) ; tester . setFrameworkHomePath ( framework . getHome ( ) ) ; tester . jobflow ( "simple" ) . input ( "simple" , Simple . class ) . prepare ( "INVALID" ) ; } @ Test ( expected = IllegalStateException . class ) public void invalid_output_prepare_name ( ) { BatchTester tester = new BatchTester ( getClass ( ) ) ; tester . setFrameworkHomePath ( framework . getHome ( ) ) ; tester . jobflow ( "simple" ) . input
1,419
<s> package com . asakusafw . compiler . repository ; import java . util . List ; import java . util . Map ; import java . util . ServiceLoader ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import com . asakusafw . compiler . common . Precondition ; import com . asakusafw . compiler . flow . ExternalIoDescriptionProcessor ; import com . asakusafw . compiler . flow . FlowCompilingEnvironment ; import com . asakusafw . utils . collections . Lists ; import com . asakusafw . utils . collections . Maps ; import com . asakusafw . vocabulary . external . ExporterDescription ; import com . asakusafw . vocabulary . external . ImporterDescription ; import com . asakusafw . vocabulary . flow . graph . InputDescription ; import com . asakusafw . vocabulary . flow . graph . OutputDescription ; public class SpiExternalIoDescriptionProcessorRepository extends FlowCompilingEnvironment . Initialized implements ExternalIoDescriptionProcessor . Repository { static final Logger LOG = LoggerFactory . getLogger ( SpiExternalIoDescriptionProcessorRepository . class ) ; private List < ExternalIoDescriptionProcessor > processors ; private Map < Class < ? > , ExternalIoDescriptionProcessor > map ; @ Override protected void doInitialize ( ) { LOG . info ( "" ) ; this . processors = Lists . create ( ) ; this . map = Maps . create ( ) ; ServiceLoader < ExternalIoDescriptionProcessor > services = ServiceLoader . load ( ExternalIoDescriptionProcessor . class , getEnvironment ( ) . getServiceClassLoader ( ) ) ; for ( ExternalIoDescriptionProcessor proc : services ) { proc . initialize ( getEnvironment ( ) ) ; processors . add ( proc ) ; Class < ? > importerType = proc . getImporterDescriptionType ( ) ; Class < ? > exporterType = proc . getExporterDescriptionType ( ) ; if ( map . containsKey ( importerType ) ) { getEnvironment ( ) . error ( "" , importerType . getName ( ) , map . get ( importerType ) . getClass ( ) . getName ( ) , proc . getClass ( ) . getName ( ) ) ; } else { LOG . debug
1,420
<s> package org . rubypeople . rdt . internal . ui . text . ruby ; import java . util . LinkedList ; import java . util . Map ; import org . eclipse . jface . text . BadLocationException ; import org . eclipse . jface . text . IDocument ; import org . eclipse . jface . text . TextUtilities ; import org . eclipse . jface . text . TypedPosition ; import org . eclipse . jface . text . formatter . ContextBasedFormattingStrategy ; import org . eclipse . jface . text . formatter . FormattingContextProperties ; import org . eclipse . jface . text . formatter . IFormattingContext ; import org . eclipse . text . edits . MalformedTreeException ; import org . eclipse . text . edits . TextEdit ; import org . rubypeople . rdt . core . formatter . CodeFormatter ; import org . rubypeople . rdt . internal . corext . util . CodeFormatterUtil ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; public class RubyFormattingStrategy extends ContextBasedFormattingStrategy { private final LinkedList fDocuments = new LinkedList ( ) ; private final LinkedList fPartitions = new LinkedList ( ) ; public RubyFormattingStrategy ( ) { super ( ) ; } public void format ( ) { super . format ( ) ; final IDocument document = ( IDocument ) fDocuments . removeFirst ( ) ; final TypedPosition partition =
1,421
<s> package br . com . caelum . vraptor . dash . monitor ; import static org . mockito . Matchers . anyString ; import static org . mockito . Mockito . verify ; import static org . mockito . Mockito . when ; import org . junit . Assert ; import org . junit . Before ; import org . junit . Test ; import org . junit . runner . RunWith ; import org . mockito . Mock ; import org . mockito . runners . MockitoJUnitRunner ; import br . com . caelum . vraptor . Result ; import br . com . caelum . vraptor . environment . Environment ; import br . com . caelum . vraptor . interceptor . download . InputStreamDownload ; import br . com . caelum . vraptor . view . Results ; import br . com . caelum . vraptor . view . Status ; @ RunWith ( MockitoJUnitRunner . class ) public class SystemControllerTest { private @ Mock Result result ; private @ Mock Status httpStatus ; private @ Mock Environment environment ; private @ Mock MonitorAwareUser user ; private SystemController controller ; @ Before public void setUp ( ) throws Exception { controller = new SystemController ( environment , result , user ) ; when ( result . use ( Results . status ( ) ) ) . thenReturn ( httpStatus ) ; when ( user . canSeeMonitorStats ( ) ) . thenReturn ( true ) ; }
1,422
<s> package net . sf . sveditor . core . db . index ; import java . util . ArrayList ; import java . util . List ; import net . sf . sveditor . core . db . ISVDBItemBase ; import net . sf . sveditor . core . db . SVDBFile ; import net . sf . sveditor . core . db . SVDBItemType ; import org . eclipse . core . runtime . IProgressMonitor ; public class SVDBIndexCollectionItemIterator implements ISVDBItemIterator { List < ISVDBIndex > fIndexList ; int fIndexListIdx = 0 ; ISVDBItemIterator fIndexIterator ; ISVDBIndex fOverrideIndex ; SVDBFile fOverrideFile ;
1,423
<s> package com . asakusafw . runtime . value ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . util . Calendar ; import java . util . GregorianCalendar ; import java . util . TimeZone ; import org . junit . Test ; public class DateTest { @ Test public void get1583_1600 ( ) { checkCalendar ( 1583 , 1600 ) ; } @ Test public void get1601_1700 ( ) { checkCalendar ( 1601 , 1700 ) ; } @ Test public void get1701_1800 ( ) { checkCalendar ( 1701 , 1800 ) ; } @ Test public void get1801_1900 ( ) { checkCalendar ( 1801 , 1900 ) ; } @ Test public void get1901_2000 ( ) { checkCalendar ( 1901 , 2000 ) ; } @ Test public void get2001_2100 ( ) { checkCalendar ( 2001 , 2100 ) ; } @ Test public void get2101_2200 ( ) { checkCalendar ( 2101 , 2200 ) ; } @ Test public void get2201_2300 ( ) { checkCalendar ( 2201 , 2300 ) ; } @ Test public void get2301_2400 ( ) { checkCalendar ( 2301 , 2400 ) ; } @ Test public void get2401_2500 ( ) { checkCalendar ( 2401 , 2500 ) ; } @ Test public void parse ( ) { Date date = Date . valueOf ( "12340102" , Date . Format . SIMPLE ) ; assertThat ( date . getYear ( ) , is ( 1234 ) ) ; assertThat ( date . getMonth ( ) , is ( 1 ) ) ; assertThat ( date . getDay ( ) , is ( 2 ) ) ; } @ Test public void parse_zero ( ) { Date date = Date . valueOf ( "00010101" , Date . Format . SIMPLE ) ; assertThat ( date . getYear ( ) , is ( 1 ) ) ; assertThat ( date . getMonth ( ) , is ( 1 ) ) ; assertThat ( date . getDay ( ) , is ( 1 ) ) ; } @ Test public void parse_big ( ) { Date date = Date . valueOf ( "29991231" , Date . Format . SIMPLE ) ; assertThat ( date . getYear ( ) , is ( 2999 ) ) ; assertThat ( date . getMonth ( ) , is ( 12 ) ) ; assertThat ( date . getDay ( ) , is ( 31 ) ) ; } @ Test public void parse_option ( ) { StringOption option = new StringOption ( "20100615" ) ; Date date = Date . valueOf ( option , Date . Format . SIMPLE ) ; assertThat ( date . getYear ( ) , is ( 2010 ) ) ; assertThat ( date . getMonth ( ) , is ( 6 ) ) ; assertThat ( date . getDay ( ) , is ( 15 ) ) ; } @ Test public void parse_null ( ) { StringOption option = new StringOption ( null ) ; Date date = Date . valueOf ( option , Date . Format . SIMPLE ) ; assertThat ( date , is ( nullValue ( ) ) ) ; } void checkCalendar ( int start , int end ) { GregorianCalendar calendar = new GregorianCalendar ( TimeZone . getTimeZone
1,424
<s> package org . oddjob . framework ; import java . lang . annotation . ElementType ; import java . lang . annotation . Retention ; import java . lang . annotation . RetentionPolicy ; import java . lang . annotation . Target ; import org . oddjob . Resetable ; @ Retention (
1,425
<s> package com . asakusafw . compiler . bulkloader . testing . io ; import java . io . IOException ; import com . asakusafw . compiler . bulkloader . testing . model . MockErrorModel ; import com . asakusafw . runtime . io . ModelOutput ; import com . asakusafw . runtime . io . RecordEmitter ; public final class MockErrorModelOutput implements ModelOutput < MockErrorModel > { private final RecordEmitter emitter ; public MockErrorModelOutput ( RecordEmitter emitter ) { if ( emitter == null ) { throw new IllegalArgumentException ( ) ; } this . emitter = emitter ; } @ Override public void write ( MockErrorModel model ) throws IOException {
1,426
<s> package org . oddjob . designer . elements . schedule ; import junit . framework . TestCase ; import org . apache . log4j . Logger ; import org . oddjob . Helper ; import org . oddjob . OddjobDescriptorFactory ; import org . oddjob . arooa . ArooaDescriptor ; import org . oddjob . arooa . ArooaParseException ; import org . oddjob . arooa . ArooaType ; import org . oddjob . arooa . design . DesignInstance ; import org . oddjob . arooa . design . DesignParser ; import org . oddjob . arooa . design . view . ViewMainHelper ; import org . oddjob . arooa . standard . StandardArooaSession ; import org . oddjob . arooa . xml . XMLConfiguration ; import org . oddjob . schedules . schedules . MonthlySchedule ; import org . oddjob . schedules . units . DayOfMonth ; import org . oddjob . schedules . units . DayOfWeek ; import org . oddjob . schedules . units . WeekOfMonth ; public class MonthlyScheduleDETest extends TestCase { private static final Logger logger = Logger . getLogger ( MonthlyScheduleDETest . class ) ; public void setUp ( ) { logger . debug ( "" + getName ( ) + "" ) ; } DesignInstance design ; public void testCreateByDay ( ) throws ArooaParseException { String xml = "" + "" + "" ; ArooaDescriptor descriptor = new OddjobDescriptorFactory ( ) . createDescriptor ( getClass ( ) . getClassLoader ( ) ) ;
1,427
<s> package com . pogofish . jadt . parser . javacc ; import static com . pogofish . jadt . parser . javacc . generated . BaseJavaCCParserImplConstants . * ; import static org . junit . Assert . assertEquals ; import org . junit . Test ; import com . pogofish . jadt . parser . javacc . generated . BaseJavaCCParserImplTokenManager ; import com . pogofish . jadt . parser . javacc . generated . JavaCharStream ; import com . pogofish . jadt . parser . javacc . generated . Token ; import com . pogofish . jadt . source . Source ; import com . pogofish . jadt . source . StringSource ; public class JavaCCTokenizerTest { private BaseJavaCCParserImplTokenManager tokenizer ( String testString ) { final Source source = new StringSource ( "" , testString ) ; return new BaseJavaCCParserImplTokenManager ( new JavaCharStream ( source . createReader ( ) ) ) ; } @ Test public void testComments ( ) { final BaseJavaCCParserImplTokenManager tokenizer1 = tokenizer ( "" ) ; check ( tokenizer1 , "hello" , IDENTIFIER , 2 ) ; check ( tokenizer1 , "world" , IDENTIFIER , 3 ) ; check ( tokenizer1 , "oh" , IDENTIFIER , 3 ) ; check ( tokenizer1 , "<EOF>" , EOF , 3 ) ; final BaseJavaCCParserImplTokenManager tokenizer3 = tokenizer ( "/***/hello" ) ; check ( tokenizer3 , "hello" , IDENTIFIER , 1 ) ; check ( tokenizer3 , "<EOF>" , EOF , 1 ) ; final BaseJavaCCParserImplTokenManager tokenizer4 = tokenizer ( "/****/hello" ) ; check ( tokenizer4 , "hello" , IDENTIFIER , 1 ) ; check ( tokenizer4 , "<EOF>" , EOF , 1 ) ; final BaseJavaCCParserImplTokenManager tokenizer5 = tokenizer ( "/*** */hello" ) ; check ( tokenizer5 , "hello" , IDENTIFIER , 1 ) ; check ( tokenizer5 , "<EOF>" , EOF , 1 ) ; final BaseJavaCCParserImplTokenManager tokenizer6 = tokenizer ( "/* ***/hello" ) ; check ( tokenizer6 , "hello" , IDENTIFIER , 1 ) ; check ( tokenizer6 , "<EOF>" , EOF , 1 ) ; final BaseJavaCCParserImplTokenManager tokenizer7 = tokenizer ( "/* **/hello" ) ; check ( tokenizer7 , "hello" , IDENTIFIER , 1 ) ; check ( tokenizer7 , "<EOF>" , EOF , 1 ) ; } @ Test public void testUnterminatedComments ( ) { final BaseJavaCCParserImplTokenManager tokenizer1 = tokenizer ( "/** haha" ) ; check ( tokenizer1 , "/** haha" , UNTERMINATED_COMMENT , 1 ) ; check ( tokenizer1 , "<EOF>" , EOF , 1 ) ; final BaseJavaCCParserImplTokenManager tokenizer2 = tokenizer ( "/* haha" ) ; check ( tokenizer2 , "/* haha" , UNTERMINATED_COMMENT , 1 ) ; check ( tokenizer2 , "<EOF>" , EOF , 1 ) ; final BaseJavaCCParserImplTokenManager tokenizer3 = tokenizer ( "// haha" ) ; check ( tokenizer3 , "<EOF>" , EOF , 1 ) ; } @ Test public void testWhitespace ( ) { final BaseJavaCCParserImplTokenManager tokenizer = tokenizer ( "" ) ; check ( tokenizer , "hello" , IDENTIFIER , 1 ) ; check ( tokenizer , "world" , IDENTIFIER , 1 ) ; check ( tokenizer , "oh" , IDENTIFIER , 1 ) ; check ( tokenizer , "<EOF>" , EOF , 1 ) ; } @ Test public void testEol ( ) { final BaseJavaCCParserImplTokenManager tokenizer = tokenizer ( "" ) ; check ( tokenizer , "hello" , IDENTIFIER , 1 ) ; check ( tokenizer , "world" , IDENTIFIER , 2 ) ; check ( tokenizer , "yeah" , IDENTIFIER , 3 ) ; check ( tokenizer , "oh" , IDENTIFIER , 4 ) ; check ( tokenizer , "<EOF>" , EOF , 4 ) ; } @ Test public void testIdentifiers ( ) { final BaseJavaCCParserImplTokenManager tokenizer = tokenizer ( "" ) ; check ( tokenizer , "hello" , IDENTIFIER , 1 ) ; check ( tokenizer , "-UNK-123-UNK-12342" , IDENTIFIER , 1 ) ; check ( tokenizer , "<EOF>" , EOF , 1 ) ; } @ Test public void testBadIdentifiers ( ) { final BaseJavaCCParserImplTokenManager tokenizer = tokenizer ( "42x ~" ) ; check ( tokenizer , "42x" , UNKNOWN , 1 ) ; check ( tokenizer , "~" , UNKNOWN , 1 ) ; } @ Test public void testPunctuation ( ) { final BaseJavaCCParserImplTokenManager tokenizer = tokenizer ( "" ) ; check ( tokenizer , "<" , LANGLE , 1 ) ; check ( tokenizer , ">" , RANGLE , 1 ) ; check ( tokenizer , "=" , EQUALS , 1 ) ; check ( tokenizer , "(" , LPAREN , 1 ) ; check ( tokenizer , ")" , RPAREN , 1 ) ; check ( tokenizer , "," , COMMA , 1 ) ; check ( tokenizer , "[" , LBRACKET , 1 ) ; check ( tokenizer , "]" , RBRACKET , 1 ) ; check ( tokenizer , "|" , BAR , 1 ) ; check ( tokenizer , "." , DOT , 1 ) ; check ( tokenizer , "@" , AT , 1 ) ; check ( tokenizer , "*" , SPLAT , 1 ) ; check ( tokenizer , "?" , QUESTION , 1 ) ; check ( tokenizer , ":" , COLON , 1 ) ; check ( tokenizer , "<EOF>" , EOF , 1 ) ; } @ Test public void testUnknown ( ) { final BaseJavaCCParserImplTokenManager tokenizer1 = tokenizer ( "~`/~" ) ; check ( tokenizer1 , "~`/~" , UNKNOWN , 1 ) ; check ( tokenizer1 , "<EOF>" , EOF , 1 ) ; final BaseJavaCCParserImplTokenManager tokenizer2 = tokenizer ( "~" ) ; check ( tokenizer2 , "~" , UNKNOWN , 1 ) ; check ( tokenizer2 , "<EOF>" , EOF , 1 ) ; final BaseJavaCCParserImplTokenManager tokenizer3 = tokenizer ( "/" ) ; check ( tokenizer3 , "/" , UNKNOWN , 1 ) ; check ( tokenizer3 , "<EOF>" , EOF , 1 ) ; final BaseJavaCCParserImplTokenManager tokenizer4 = tokenizer ( "~/" ) ; check ( tokenizer4 , "~" , UNKNOWN , 1 ) ; check ( tokenizer4 , "/" , UNKNOWN , 1 ) ; check ( tokenizer4 , "<EOF>" , EOF , 1 ) ; } @ Test public void testEOF ( ) { final BaseJavaCCParserImplTokenManager tokenizer = tokenizer ( "" ) ; check ( tokenizer , "<EOF>" , EOF , 1 ) ; } @ Test public void testKeywords ( ) { final BaseJavaCCParserImplTokenManager tokenizer = tokenizer ( "" + "" + "" ) ; check ( tokenizer , "import" , IMPORT , 1 ) ; check ( tokenizer , "package" , PACKAGE , 1 ) ; check ( tokenizer , "final" , FINAL , 1 ) ; check ( tokenizer , "extends" , EXTENDS , 1 ) ; check ( tokenizer , "implements" , IMPLEMENTS , 1 ) ; check ( tokenizer , "class" , CLASS , 1 ) ; check ( tokenizer , "boolean" , BOOLEAN , 1 ) ; check ( tokenizer , "byte" , BYTE , 1 ) ; check ( tokenizer , "double"
1,428
<s> package org . oddjob . structural ; import java . util . ArrayList ; import java . util . Arrays ; import java . util . List ; import junit . framework . TestCase ; import org . apache . log4j . Logger ; import org . oddjob . MockStructural ; public class ChildMatchTest extends TestCase { private static final Logger logger = Logger . getLogger ( ChildMatchTest . class ) ; @ Override protected void setUp ( ) throws Exception { super . setUp ( ) ; logger . debug ( "" + getName ( ) + "" ) ; } private class OurListener implements StructuralListener { List < String > events = new ArrayList < String > ( ) ; private boolean started ; @ Override public void childAdded ( StructuralEvent event ) { if ( ! started ) { return ; } String text = "Added " + event . getChild ( ) + " at " + event . getIndex ( ) ; events . add ( text ) ; logger . debug ( text ) ; } @ Override public void childRemoved ( StructuralEvent event ) { if ( ! started ) { return ; } String text = "Removed " + event . getChild ( ) + " from " + event . getIndex ( ) ; events . add ( text ) ; logger . debug ( text ) ; } public void start ( ) { started = true ; } } private class OurChildMatch extends ChildMatch < String > { private final ChildHelper < String > childHelper ; public OurChildMatch ( ChildHelper < String > childHelper ) { super ( new ArrayList < String > ( Arrays . asList ( childHelper . getChildren ( new String [ 0 ] ) ) ) ) ; this . childHelper = childHelper ; } @ Override protected void insertChild ( int index , String child ) { childHelper . insertChild ( index , child ) ; } @ Override protected void removeChildAt ( int index ) { childHelper . removeChildAt ( index ) ; } } public void testExactMatch ( ) { ChildHelper < String > childHelper = new ChildHelper < String > ( new MockStructural ( ) ) ; childHelper . insertChild ( 0 , "red" ) ; childHelper . insertChild ( 1 , "green" ) ; childHelper . insertChild ( 2 , "blue" ) ; OurListener listener = new OurListener ( ) ; childHelper . addStructuralListener ( listener ) ; listener . start ( ) ; ChildMatch < String > test = new OurChildMatch ( childHelper ) ; String [ ] desired = { "red" , "green" , "blue" } ; test . match ( desired ) ; assertEquals ( 0 , listener . events . size ( ) ) ; childHelper . removeStructuralListener ( listener ) ; assertMatches ( childHelper , desired ) ; } public void testReversed ( ) { ChildHelper < String > childHelper = new ChildHelper < String > ( new MockStructural ( ) ) ; childHelper . insertChild ( 0 , "red" ) ; childHelper . insertChild ( 1 , "green" ) ; childHelper . insertChild ( 2 , "blue" ) ; OurListener listener = new OurListener ( ) ; childHelper . addStructuralListener ( listener ) ; listener . start ( ) ; ChildMatch < String > test = new OurChildMatch ( childHelper ) ; String [ ] desired = { "blue" , "green" , "red" } ; test . match ( desired ) ; assertEquals ( "" , listener . events . get ( 0 ) ) ; assertEquals ( "" , listener . events . get ( 1 ) ) ; assertEquals ( "" , listener . events . get ( 2 ) ) ; assertEquals ( "" , listener . events . get ( 3 ) ) ; assertEquals ( 4 , listener . events . size ( ) ) ; childHelper . removeStructuralListener ( listener ) ; assertMatches ( childHelper , desired ) ; } public void testInsertedAtBeginning ( ) { ChildHelper < String > childHelper = new ChildHelper < String > ( new MockStructural ( ) ) ; childHelper . insertChild ( 0 , "red" ) ; childHelper . insertChild ( 1 , "green" ) ; childHelper . insertChild ( 2 , "blue" ) ; OurListener listener = new OurListener ( ) ; childHelper . addStructuralListener ( listener ) ; listener . start ( ) ; ChildMatch < String > test = new OurChildMatch ( childHelper ) ; String [ ] desired = { "pink" , "red" , "green" , "blue" } ; test . match ( desired ) ; assertEquals ( "" , listener . events . get ( 0 ) ) ; assertEquals ( 1 , listener . events . size ( ) ) ; childHelper . removeStructuralListener ( listener ) ; assertMatches ( childHelper , desired ) ; } public void testInsertedInMiddle ( ) { ChildHelper < String > childHelper = new ChildHelper < String > ( new MockStructural ( ) ) ; childHelper . insertChild ( 0 , "red" ) ; childHelper . insertChild ( 1 , "green" ) ; childHelper . insertChild ( 2 , "blue" ) ; OurListener listener = new OurListener ( ) ; childHelper . addStructuralListener ( listener ) ; listener . start ( ) ; ChildMatch < String > test = new OurChildMatch (
1,429
<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 . vocabulary . flow . In ; import com . asakusafw . vocabulary . flow . JobFlow ; import com . asakusafw . vocabulary . flow . Out ; @ JobFlow ( name = "testing" ) public class DescribeFailJobFlow extends FlowDescription { public DescribeFailJobFlow ( @ Import ( name = "hoge" , description = MockHogeImporterDescription . class ) In <
1,430
<s> package org . rubypeople . rdt . internal . ui . text . ruby ; import java . util . Collections ; import java . util . List ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IConfigurationElement ; import org . eclipse . core . runtime . IStatus ; import org . eclipse . core . runtime . InvalidRegistryObjectException ; import org . eclipse . core . runtime . PerformanceStats ; import org . eclipse . core . runtime . Platform ; import org . eclipse . core . runtime . Status ; import org . eclipse . jface . text . Assert ; import org . osgi . framework . Bundle ; import org . rubypeople . rdt . internal . corext . util . Messages ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; import org . rubypeople . rdt . ui . text . ruby . AbstractProposalSorter ; import org . rubypeople . rdt . ui . text . ruby . ContentAssistInvocationContext ; public final class ProposalSorterHandle { private static final String ID = "id" ; private static final String NAME = "name" ; private static final String CLASS = "class" ; private static final String ACTIVATE = "activate" ; private static final String PERFORMANCE_EVENT = RubyPlugin . getPluginId ( ) + "" ; private static final boolean MEASURE_PERFORMANCE = PerformanceStats . isEnabled ( PERFORMANCE_EVENT ) ; private static final String SORT = "sort" ; private final String fId ; private final String fName ; private final String fClass ; private final boolean fActivate ; private final IConfigurationElement fElement ; private AbstractProposalSorter fSorter ; ProposalSorterHandle ( IConfigurationElement element ) throws InvalidRegistryObjectException { Assert . isLegal ( element != null ) ; fElement = element ; fId = element . getAttribute ( ID ) ; checkNotNull ( fId , ID ) ; String name = element . getAttribute ( NAME ) ; if ( name == null ) fName = fId ; else fName = name ; String activateAttribute = element . getAttribute ( ACTIVATE ) ; fActivate = Boolean . valueOf ( activateAttribute ) . booleanValue ( ) ; fClass = element . getAttribute ( CLASS ) ; checkNotNull ( fClass , CLASS ) ; } private void checkNotNull ( Object obj , String attribute ) throws InvalidRegistryObjectException { if ( obj == null ) { Object [ ] args = { getId ( ) , fElement . getContributor ( ) . getName ( ) , attribute } ; String message = Messages . format ( RubyTextMessages . CompletionProposalComputerDescriptor_illegal_attribute_message , args ) ; IStatus status = new Status ( IStatus . WARNING , RubyPlugin . getPluginId ( ) , IStatus . OK , message , null ) ; RubyPlugin . log ( status ) ; throw new InvalidRegistryObjectException ( ) ; } } public String getId ( ) { return fId ; } public String getName ( ) { return fName ; } private synchronized AbstractProposalSorter getSorter ( ) throws CoreException , InvalidRegistryObjectException { if ( fSorter == null && ( fActivate || isPluginLoaded ( ) ) ) fSorter = createSorter ( ) ; return fSorter ; } private boolean isPluginLoaded ( ) throws InvalidRegistryObjectException { Bundle bundle = getBundle ( ) ; return bundle != null && bundle . getState ( ) == Bundle . ACTIVE ; } private Bundle getBundle ( ) throws InvalidRegistryObjectException { String symbolicName = fElement . getContributor ( ) . getName ( ) ; Bundle bundle = Platform . getBundle ( symbolicName ) ; return bundle ; } private AbstractProposalSorter createSorter ( ) throws CoreException , InvalidRegistryObjectException { return ( AbstractProposalSorter ) fElement . createExecutableExtension ( CLASS ) ; } public void sortProposals ( ContentAssistInvocationContext context , List proposals ) { IStatus status ; try { AbstractProposalSorter sorter = getSorter ( ) ; PerformanceStats stats = startMeter ( SORT , sorter ) ; sorter . beginSorting ( context ) ; Collections . sort ( proposals , sorter ) ; sorter . endSorting ( ) ; status = stopMeter ( stats , SORT ) ; if ( status == null ) return ; status = createAPIViolationStatus ( SORT ) ; } catch ( InvalidRegistryObjectException x ) { status = createExceptionStatus ( x ) ; } catch ( CoreException x ) { status = createExceptionStatus ( x ) ; } catch ( RuntimeException x ) { status = createExceptionStatus ( x ) ; }
1,431
<s> package org . springframework . social . quickstart . config ; import org . springframework . context . annotation . Configuration ; import org . springframework . context .
1,432
<s> package com . asakusafw . yaess . core ; import java . io . IOException ; import java . text . MessageFormat ; import java . util . Collections ; import java . util . Map ; import java . util . NavigableMap ; import java . util . TreeMap ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import com . asakusafw . yaess . core . util . PropertiesUtil ; public abstract class ExecutionScriptHandlerBase implements Service { static final YaessLogger YSLOG = new YaessCoreLogger ( ExecutionScriptHandlerBase . class ) ; static final Logger LOG = LoggerFactory . getLogger ( ExecutionScriptHandlerBase . class ) ; private volatile String prefix ; private volatile String resourceId ; private volatile Map < String , String > properties ; private volatile Map < String , String > environmentVariables ; @ Override public final void configure ( ServiceProfile < ? > profile ) throws InterruptedException , IOException { this . prefix = profile . getPrefix ( ) ; try { configureResourceId ( profile ) ; Map < String , String > desiredProperties = getDesiredProperties ( profile ) ; Map < String , String > desiredEnvironmentVariables = getDesiredEnvironmentVariables ( profile ) ; this . properties = Collections . unmodifiableMap ( desiredProperties ) ; this . environmentVariables = Collections . unmodifiableMap ( desiredEnvironmentVariables ) ; doConfigure ( profile , desiredProperties , desiredEnvironmentVariables ) ; } catch ( IllegalArgumentException e ) { throw new IOException ( MessageFormat . format ( "" , profile . getPrefix ( ) , profile . getPrefix ( ) ) , e ) ; } } public final String getHandlerId ( ) { return prefix ; } private void configureResourceId ( ServiceProfile < ? > profile ) { assert profile != null ; String override = profile . getConfiguration ( ExecutionScriptHandler . KEY_RESOURCE , false , true ) ; if ( override == null ) { LOG . debug ( "" , profile . getPrefix ( ) ) ; resourceId = ExecutionScriptHandler . DEFAULT_RESOURCE_ID ; } else { LOG . debug ( "" , profile . getPrefix ( ) , override ) ; resourceId = override ; } } private Map < String , String > getDesiredProperties ( ServiceProfile < ? > profile ) throws IOException { assert profile != null ; NavigableMap < String , String > vars = PropertiesUtil . createPrefixMap ( profile . getConfiguration ( ) , ExecutionScriptHandler . KEY_PROP_PREFIX ) ; Map < String , String > resolved = new TreeMap < String , String > ( ) ; for ( Map . Entry < String , String > entry : vars . entrySet ( ) ) { String key = entry . getKey ( ) ; String unresolved = entry . getValue ( ) ; try { String value = profile . getContext ( ) . getContextParameters ( ) . replace ( unresolved , true ) ; resolved . put ( key , value ) ; } catch ( IllegalArgumentException e ) { YSLOG . error ( e , "E10001" , profile . getPrefix ( ) , ExecutionScriptHandler . KEY_PROP_PREFIX , key , unresolved ) ; throw new IOException ( MessageFormat . format ( "" , profile . getPrefix ( ) , ExecutionScriptHandler . KEY_PROP_PREFIX , key , unresolved ) , e ) ; } } LOG . debug ( "" , profile . getPrefix ( ) , resolved ) ; return resolved ; } private Map < String , String > getDesiredEnvironmentVariables ( ServiceProfile < ? > profile ) throws IOException { assert profile != null ; NavigableMap < String , String > vars = PropertiesUtil . createPrefixMap ( profile . getConfiguration ( ) , ExecutionScriptHandler . KEY_ENV_PREFIX ) ; Map < String , String > resolved = new TreeMap < String , String > ( ) ; for ( Map . Entry < String , String > entry : vars . entrySet ( ) ) { String key = entry . getKey ( ) ; String unresolved = entry . getValue ( ) ; try { String value = profile . getContext ( ) . getContextParameters ( ) . replace ( unresolved , true ) ; resolved . put ( key , value ) ; } catch ( IllegalArgumentException e ) { YSLOG . error ( e , "E10001" , profile . getPrefix ( ) , ExecutionScriptHandler . KEY_ENV_PREFIX , key , unresolved ) ; throw new IOException ( MessageFormat . format ( "" , profile . getPrefix ( ) , ExecutionScriptHandler . KEY_ENV_PREFIX , key ,
1,433
<s> package de . fuberlin . wiwiss . d2rq . mapgen ; import java . util . Collection ; public class FilterMatchAny extends Filter { public static Filter create ( Collection < Filter > elements ) { if ( elements . isEmpty ( ) ) { return Filter . NOTHING ; } if ( elements . size ( ) == 1 ) { return elements . iterator ( ) . next ( ) ; } return new FilterMatchAny ( elements ) ; } private final Collection < Filter > elements ; public FilterMatchAny ( Collection < Filter > elements ) { this . elements = elements ; } public boolean matchesSchema ( String schema )
1,434
<s> package org . rubypeople . rdt . internal . ui . text ; import com . ibm . icu . text . BreakIterator ; import java . text . CharacterIterator ; import org . eclipse . jface . text . Assert ; public class RubyWordIterator extends BreakIterator { private RubyBreakIterator fIterator ; private int fIndex ; public RubyWordIterator ( ) { fIterator = new RubyBreakIterator ( ) ; first ( ) ; } public int first ( ) { fIndex = fIterator . first ( ) ; return fIndex ; } public int last ( ) { fIndex = fIterator . last ( ) ; return fIndex ; } public int next ( int n ) { int next = 0 ; while ( -- n > 0 && next
1,435
<s> package com . asakusafw . compiler . flow ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import org . junit . Test ; import com . asakusafw . compiler . flow . example . * ; import com . asakusafw . vocabulary . flow . graph . FlowGraph ; import com . asakusafw . vocabulary . flow . graph . FlowIn ; import com . asakusafw . vocabulary . flow . graph . FlowOut ; public class JobFlowDriverTest { @ Test public void simple ( ) { JobFlowDriver analyzed = JobFlowDriver . analyze ( SimpleJobFlow . class ) ; assertThat ( analyzed . hasError ( ) , is ( false ) ) ; JobFlowClass jf = analyzed . getJobFlowClass ( ) ; FlowGraph graph = jf . getGraph ( ) ; assertThat ( graph . getDescription ( ) , is ( ( Object ) SimpleJobFlow . class ) ) ; assertThat ( graph . getFlowInputs ( ) . size ( ) , is ( 1 ) ) ; assertThat ( graph . getFlowOutputs ( ) . size ( ) , is ( 1 ) ) ; FlowIn < ? > in = graph . getFlowInputs ( ) . get ( 0 ) ; assertThat ( in . getDescription ( ) . getName ( ) , is ( "hoge" ) ) ; FlowOut < ? > out = graph . getFlowOutputs ( ) . get ( 0 ) ; assertThat ( out . getDescription ( ) . getName ( ) , is ( "hoge" ) ) ; assertThat ( in . toOutputPort ( ) . getConnected ( ) , is ( out . toInputPort ( ) . getConnected ( ) ) ) ; } @ Test public void Class_NotTopLevel ( ) { JobFlowDriver analyzed = JobFlowDriver . analyze ( TopLevelJobFlow . Inner . class ) ; assertThat ( analyzed . hasError ( ) , is ( true ) ) ; } @ Test public void Class_NotPublic ( ) { JobFlowDriver analyzed = JobFlowDriver . analyze ( NotPublicJobFlow . class ) ; assertThat ( analyzed . hasError ( ) , is ( true ) ) ; } @ Test public void Class_Abstract ( ) { JobFlowDriver analyzed = JobFlowDriver . analyze ( AbstractJobFlow . class ) ; assertThat ( analyzed . hasError ( ) , is ( true ) ) ; } @ Test public void Class_NotAnnotated ( ) { JobFlowDriver analyzed = JobFlowDriver . analyze ( NotAnnotatedJobFlow . class ) ; assertThat ( analyzed . hasError ( ) , is ( true ) ) ; } @ Test public void Constructor_None ( ) { JobFlowDriver analyzed = JobFlowDriver . analyze ( NoPublicConstructors . class ) ; assertThat ( analyzed . hasError ( ) , is ( true ) ) ; } @ Test public void Constructor_Multi ( ) { JobFlowDriver analyzed = JobFlowDriver . analyze ( MultiPublicConstructor . class ) ; assertThat ( analyzed . hasError ( ) , is ( true ) ) ; } @ Test public void Constructor_InvalidParameter ( ) { JobFlowDriver analyzed = JobFlowDriver . analyze ( InvalidParameter . class ) ; assertThat ( analyzed . hasError ( ) , is ( true ) ) ; } @ Test public void Input_NotTyped ( ) { JobFlowDriver analyzed = JobFlowDriver . analyze ( NotTypedInput . class ) ; assertThat ( analyzed . hasError ( ) , is ( true ) ) ; } @ Test public void Input_WithInvalidAnnotation ( ) { JobFlowDriver analyzed = JobFlowDriver . analyze ( WithExportInput . class ) ; assertThat ( analyzed . hasError ( ) , is ( true ) ) ; } @ Test public void Input_WithEmptyInputName ( ) { JobFlowDriver driver = JobFlowDriver . analyze ( WithEmptyInputName . class ) ; assertThat ( driver . hasError ( ) , is ( true ) ) ; assertThat ( driver . getDiagnostics ( ) . size ( ) , greaterThan ( 0 ) ) ; } @ Test public void Input_WithInvalidInputName ( ) { JobFlowDriver driver = JobFlowDriver . analyze ( WithInvalidInputName . class ) ; assertThat ( driver . hasError ( ) , is ( true ) ) ; assertThat ( driver . getDiagnostics ( ) . size ( ) , greaterThan ( 0 ) ) ; } @ Test public void Input_WithoudMandatoryAnnotation ( ) { JobFlowDriver analyzed = JobFlowDriver . analyze ( NoImportInput . class ) ; assertThat ( analyzed . hasError ( ) , is ( true ) ) ; } @ Test public void Input_InconsistentAnnotation ( ) { JobFlowDriver analyzed = JobFlowDriver . analyze ( InconsistentImportInput . class ) ; assertThat ( analyzed . hasError ( ) , is ( true ) ) ; } @ Test public void Input_AbstractDescription ( ) { JobFlowDriver analyzed = JobFlowDriver . analyze ( WithAbstractImportInput . class ) ; assertThat ( analyzed . hasError ( ) , is ( true ) ) ; } @ Test public void Input_InvalidTypeDescription ( ) { JobFlowDriver analyzed = JobFlowDriver . analyze ( WithMissTypedInput . class ) ; assertThat ( analyzed . hasError ( ) , is ( true ) ) ; } @ Test public void Output_NotTyped ( ) { JobFlowDriver analyzed = JobFlowDriver . analyze ( NotTypedOutput . class ) ; assertThat ( analyzed . hasError ( ) , is ( true ) ) ; } @ Test public void Output_WithInvalidAnnotation ( ) { JobFlowDriver analyzed = JobFlowDriver . analyze ( WithImportOutput . class ) ; assertThat ( analyzed . hasError ( ) , is ( true ) ) ; } @ Test public void Output_WithEmptyOutputName ( ) { JobFlowDriver driver = JobFlowDriver . analyze ( WithEmptyOutputName
1,436
<s> package com . asakusafw . runtime . util ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . lang . reflect . Type ; import java . util . AbstractCollection ; import java . util . ArrayList ; import java . util . Collection ; import java . util . List ; import java . util . Set ; import org . junit . Test ; public class TypeUtilTest { @ Test public void object ( ) { List < Type > invoked = TypeUtil . invoke ( Object . class , String . class ) ; assertThat ( invoked . size ( ) , is ( 0 ) ) ; } @ Test public void invokeClass ( ) { List < Type > invoked = TypeUtil . invoke ( ArrayList . class , StringList . class ) ; assertThat ( invoked . size ( ) , is ( 1 ) ) ; assertThat ( invoked . get ( 0 ) , is ( ( Type ) String . class ) ) ; } @ Test public void invokeDeepClass ( ) { List < Type > invoked = TypeUtil . invoke ( AbstractCollection . class , StringList . class ) ; assertThat ( invoked . size ( ) , is ( 1 ) ) ; assertThat ( invoked . get ( 0 ) , is ( ( Type ) String . class ) ) ; } @ Test public void invokeInterface ( ) { List < Type
1,437
<s> package org . rubypeople . rdt . internal . ui . model ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . resources . mapping . ModelProvider ; import org . eclipse . core . resources . mapping . ResourceMapping ; import org . eclipse . core . resources . mapping . ResourceMappingContext ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IAdaptable ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . core . runtime . Platform ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . RubyCore ; import org . rubypeople . rdt . internal . corext . util . RubyElementResourceMapping ; public final class RubyModelProvider extends ModelProvider { public static final String RUBY_MODEL_PROVIDER_ID = "" ; public static IResource getResource ( final Object element ) { IResource resource = null ; if ( element instanceof IRubyElement ) { resource = ( ( IRubyElement ) element ) . getResource ( ) ; } else if ( element instanceof IResource ) { resource = ( IResource ) element ; } else if ( element instanceof IAdaptable ) { final IAdaptable adaptable = ( IAdaptable ) element ; final Object adapted = adaptable . getAdapter ( IResource . class ) ; if ( adapted instanceof IResource
1,438
<s> package de . fuberlin . wiwiss . d2rq . sql . vendor ; import java . sql . Connection ; import java . sql . SQLException ; import java . util . Properties ; import de . fuberlin . wiwiss . d2rq . algebra . Attribute ; import de . fuberlin . wiwiss . d2rq . algebra . RelationName ; import de . fuberlin . wiwiss . d2rq . expr . Expression ; import de . fuberlin . wiwiss . d2rq . map . Database ;
1,439
<s> package com . asakusafw . compiler . flow . processor . flow ; import com . asakusafw . compiler . flow . processor . SplitFlowProcessor ; import com . asakusafw . compiler . flow . processor . operator . MasterJoinFlowFactory ; import com . asakusafw . compiler . flow . processor . operator . MasterJoinFlowFactory . Split ; import com . asakusafw . compiler . flow . testing . external . Ex1MockExporterDescription ; import com . asakusafw . compiler . flow . testing . external . Ex2MockExporterDescription ; import com . asakusafw . compiler . flow . testing . external . ExJoinedMockImporterDescription ; import com . asakusafw . compiler . flow . testing . model . Ex1 ; import com . asakusafw . compiler . flow . testing . model . Ex2 ; import com . asakusafw . compiler . flow . testing . model . ExJoined ; import com . asakusafw . vocabulary . flow . Export ; import com . asakusafw . vocabulary . flow . FlowDescription ;
1,440
<s> package org . rubypeople . rdt . internal . debug . core . breakpoints ; import java . util . Map ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . resources . IWorkspaceRunnable ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . debug . core . model . IBreakpoint ; import org . rubypeople . rdt . debug . core . model
1,441
<s> package org . rubypeople . rdt . ui ; import java . io . File ; import org . eclipse . core . resources . IProject ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . runtime . IAdaptable ; import org . eclipse . jface . preference . IPreferenceStore ; import org . eclipse . ui . model . IWorkbenchAdapter ; import org . rubypeople . rdt . core . IField ; import org . rubypeople . rdt . core . IMethod ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . IRubyScript ; import org . rubypeople . rdt . core . ISourceFolder ; import org . rubypeople . rdt . core . ISourceFolderRoot ; import org . rubypeople . rdt . core . IType ; import org . rubypeople . rdt . core . RubyModelException ; import org . rubypeople . rdt . internal . corext . util . Messages ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; import org . rubypeople . rdt . internal . ui . RubyUIMessages ; public class RubyElementLabels { public final static long M_PARAMETER_NAMES = 1L << 1 ; public final static long M_FULLY_QUALIFIED = 1L << 7 ; public final static long M_POST_QUALIFIED = 1L << 8 ; public final static long I_FULLY_QUALIFIED = 1L << 10 ; public final static long I_POST_QUALIFIED = 1L << 11 ; public final static long F_FULLY_QUALIFIED = 1L << 16 ; public final static long F_POST_QUALIFIED = 1L << 17 ; public final static long T_FILENAME_QUALIFIED = 1L << 18 ; public final static long T_NAME_FULLY_QUALIFIED = 1L << 19 ; public final static long T_POST_QUALIFIED = 1L << 20 ; public final static long D_QUALIFIED = 1L << 24 ; public final static long D_POST_QUALIFIED = 1L << 25 ; public final static long CF_QUALIFIED = 1L << 27 ; public final static long CF_POST_QUALIFIED = 1L << 28 ; public final static long CU_QUALIFIED = 1L << 31 ; public final static long CU_POST_QUALIFIED = 1L << 32 ; public final static long P_QUALIFIED = 1L << 35 ; public final static long P_POST_QUALIFIED = 1L << 36 ; public final static long P_COMPRESSED = 1L << 37 ; public final static long ROOT_VARIABLE = 1L << 40 ; public final static long ROOT_QUALIFIED = 1L << 41 ; public final static long ROOT_POST_QUALIFIED = 1L << 42 ; public final static long APPEND_ROOT_PATH = 1L << 43 ; public final static long PREPEND_ROOT_PATH = 1L << 44 ; public final static long REFERENCED_ROOT_POST_QUALIFIED = 1L << 45 ; public final static long USE_RESOLVED = 1L << 48 ; public final static long ALL_FULLY_QUALIFIED = new Long ( F_FULLY_QUALIFIED | M_FULLY_QUALIFIED | I_FULLY_QUALIFIED | T_FILENAME_QUALIFIED | D_QUALIFIED | CF_QUALIFIED | CU_QUALIFIED | P_QUALIFIED | ROOT_QUALIFIED ) . longValue ( ) ; public final static long ALL_POST_QUALIFIED = new Long ( F_POST_QUALIFIED | M_POST_QUALIFIED | I_POST_QUALIFIED | T_POST_QUALIFIED | D_POST_QUALIFIED | CF_POST_QUALIFIED | CU_POST_QUALIFIED | P_POST_QUALIFIED | ROOT_POST_QUALIFIED ) . longValue ( ) ; public final static long ALL_DEFAULT = new Long ( M_PARAMETER_NAMES ) . longValue ( ) ; public final static long DEFAULT_QUALIFIED = new Long ( F_FULLY_QUALIFIED | M_FULLY_QUALIFIED | I_FULLY_QUALIFIED | T_FILENAME_QUALIFIED | D_QUALIFIED | CF_QUALIFIED | CU_QUALIFIED ) . longValue ( ) ; public final static long DEFAULT_POST_QUALIFIED = new Long ( F_POST_QUALIFIED | M_POST_QUALIFIED | I_POST_QUALIFIED | T_POST_QUALIFIED | D_POST_QUALIFIED | CF_POST_QUALIFIED | CU_POST_QUALIFIED ) . longValue ( ) ; public final static long F_CATEGORY = 1L << 49 ; public final static long M_CATEGORY = 1L << 50 ; public final static long T_CATEGORY = 1L << 51 ; public final static long ALL_CATEGORY = new Long ( RubyElementLabels . F_CATEGORY | RubyElementLabels . M_CATEGORY | RubyElementLabels . T_CATEGORY ) . longValue ( ) ; public final static String CONCAT_STRING = RubyUIMessages . RubyElementLabels_concat_string ; public final static String COMMA_STRING = RubyUIMessages . RubyElementLabels_comma_string ; public final static String DECL_STRING = RubyUIMessages . RubyElementLabels_declseparator_string ; public final static String ELLIPSIS_STRING = "..." ; private final static long QUALIFIER_FLAGS = P_COMPRESSED | USE_RESOLVED ; public final static String DEFAULT_PACKAGE = RubyUIMessages . RubyElementLabels_default_package ; private static String fgPkgNamePattern = "" ; private static String fgPkgNamePrefix ; private static String fgPkgNamePostfix ; private static int fgPkgNameChars ; private static int fgPkgNameLength = - 1 ; private RubyElementLabels ( ) { } private static final boolean getFlag ( long flags , long flag ) { return ( flags & flag ) != 0 ; } public static String getTextLabel ( Object obj , long flags ) { if ( obj instanceof IRubyElement ) { return getElementLabel ( ( IRubyElement ) obj , flags ) ; } else if ( obj instanceof IAdaptable ) { IWorkbenchAdapter wbadapter = ( IWorkbenchAdapter ) ( ( IAdaptable ) obj ) . getAdapter ( IWorkbenchAdapter . class ) ; if ( wbadapter != null ) { return wbadapter . getLabel ( obj ) ; } } return "" ; } public static String getElementLabel ( IRubyElement element , long flags ) { StringBuffer buf = new StringBuffer ( 60 ) ; getElementLabel ( element , flags , buf ) ; return buf . toString ( ) ; } public static void getElementLabel ( IRubyElement element , long flags , StringBuffer buf ) { int type = element . getElementType ( ) ; switch ( type ) { case IRubyElement . METHOD : getMethodLabel ( ( IMethod ) element , flags , buf ) ; break ; case IRubyElement . FIELD : getFieldLabel ( ( IField ) element , flags , buf ) ; break ; case IRubyElement . LOCAL_VARIABLE : getLocalVariableLabel ( ( IField ) element , flags , buf ) ; break ; case IRubyElement . TYPE : getTypeLabel ( ( IType ) element , flags , buf ) ; break ; case IRubyElement . SCRIPT : getRubyScriptLabel ( ( IRubyScript ) element , flags , buf ) ; break ; case IRubyElement . IMPORT_CONTAINER : case IRubyElement . IMPORT_DECLARATION : getDeclarationLabel ( element , flags , buf ) ; break ; case IRubyElement . SOURCE_FOLDER : getSourceFolderLabel ( ( ISourceFolder ) element , flags , buf ) ; break ; case IRubyElement . SOURCE_FOLDER_ROOT : getSourceFolderRootLabel ( ( ISourceFolderRoot ) element , flags , buf ) ; break ; case IRubyElement . RUBY_PROJECT : case IRubyElement . RUBY_MODEL : default : buf . append ( element . getElementName ( ) ) ; } } public static void getMethodLabel ( IMethod method , long flags , StringBuffer buf ) { try { if ( getFlag ( flags , M_FULLY_QUALIFIED ) ) { if ( method . getDeclaringType ( ) != null ) { getTypeLabel ( method . getDeclaringType ( ) , T_NAME_FULLY_QUALIFIED | ( flags & QUALIFIER_FLAGS ) , buf ) ; buf . append ( '.' ) ; } } buf . append ( method . getElementName ( ) ) ; buf . append ( '(' ) ; if ( getFlag ( flags , M_PARAMETER_NAMES ) ) { String [ ] types = null ; int nParams = 0 ; boolean renderVarargs = false ; String [ ] names = null ; if ( getFlag ( flags , M_PARAMETER_NAMES ) && method . exists ( ) ) { names = method . getParameterNames ( ) ; if ( types == null ) { nParams = names . length ; } else { if ( nParams != names . length ) { names = null ; } } } for ( int i = 0 ; i < nParams ; i ++ ) { if ( i > 0 ) { buf . append ( COMMA_STRING ) ; } if ( names != null ) { buf . append ( names [ i ] ) ; } } } buf . append ( ')' ) ; if ( getFlag ( flags , M_POST_QUALIFIED ) ) { if ( method . getDeclaringType ( ) != null ) { buf . append ( CONCAT_STRING ) ; getTypeLabel ( method . getDeclaringType ( ) , T_FILENAME_QUALIFIED | ( flags & QUALIFIER_FLAGS ) , buf ) ; } } } catch ( RubyModelException e ) { RubyPlugin . log ( e ) ; } } public static void getFieldLabel ( IField field , long flags , StringBuffer buf ) { if ( getFlag ( flags , F_FULLY_QUALIFIED ) ) { getTypeLabel ( field . getDeclaringType ( ) , T_FILENAME_QUALIFIED | ( flags & QUALIFIER_FLAGS ) , buf ) ; buf . append ( '.' ) ; } buf . append ( field . getElementName ( ) ) ; if ( getFlag ( flags , F_POST_QUALIFIED ) ) { buf . append ( CONCAT_STRING ) ; getTypeLabel ( field . getDeclaringType ( ) , T_FILENAME_QUALIFIED | ( flags & QUALIFIER_FLAGS ) , buf ) ; } } public static void getLocalVariableLabel ( IField localVariable , long flags , StringBuffer buf ) { if ( getFlag ( flags , F_FULLY_QUALIFIED ) ) { getElementLabel ( localVariable . getParent ( ) , M_FULLY_QUALIFIED | T_FILENAME_QUALIFIED | ( flags & QUALIFIER_FLAGS ) , buf ) ; buf . append ( '.' ) ; } buf . append ( localVariable . getElementName ( ) ) ; if ( getFlag ( flags , F_POST_QUALIFIED ) ) { buf . append ( CONCAT_STRING ) ; getElementLabel ( localVariable . getParent ( ) , M_FULLY_QUALIFIED | T_FILENAME_QUALIFIED | ( flags & QUALIFIER_FLAGS ) , buf ) ; } } public static void getTypeLabel ( IType type , long flags , StringBuffer buf ) { if ( getFlag ( flags , T_FILENAME_QUALIFIED ) ) { ISourceFolder folder = type . getSourceFolder ( ) ; if ( ! folder . isDefaultPackage ( ) ) { getSourceFolderLabel ( folder , ( flags & QUALIFIER_FLAGS ) , buf ) ; buf . append ( '/' ) ; } getRubyScriptLabel ( type . getRubyScript ( ) , ( flags & QUALIFIER_FLAGS ) , buf ) ; buf . append ( ':' ) ; } if ( getFlag ( flags , T_FILENAME_QUALIFIED | T_NAME_FULLY_QUALIFIED ) ) { IType declaringType = type . getDeclaringType ( ) ; if ( declaringType != null ) { getTypeLabel ( declaringType , T_NAME_FULLY_QUALIFIED | ( flags & QUALIFIER_FLAGS ) , buf ) ; buf . append ( "::" ) ; } int parentType = type . getParent ( ) . getElementType ( ) ; if ( parentType == IRubyElement . METHOD || parentType == IRubyElement . FIELD ) { getElementLabel ( type . getParent ( ) , 0 , buf ) ; buf . append ( '.' ) ; } } String typeName = type . getElementName ( ) ; if ( typeName . length ( ) == 0 ) { try { String supertypeName = type . getSuperclassName ( ) ; typeName = Messages . format ( RubyUIMessages . RubyElementLabels_anonym_type , supertypeName ) ; } catch ( RubyModelException e ) { typeName = RubyUIMessages . RubyElementLabels_anonym ; } } buf . append ( typeName ) ; if ( getFlag ( flags , T_POST_QUALIFIED ) ) { buf . append ( CONCAT_STRING ) ; IType declaringType = type . getDeclaringType ( ) ; if ( declaringType != null ) { getTypeLabel ( declaringType , T_NAME_FULLY_QUALIFIED | ( flags & QUALIFIER_FLAGS ) , buf ) ; int parentType = type . getParent ( ) . getElementType ( ) ; if ( parentType == IRubyElement . METHOD || parentType == IRubyElement . FIELD ) { buf . append ( '.' ) ; getElementLabel ( type . getParent ( ) , 0 , buf ) ; } buf . append ( CONCAT_STRING ) ; } ISourceFolder folder = type . getSourceFolder ( ) ; if ( ! folder . isDefaultPackage ( ) ) { getSourceFolderLabel ( folder , flags & QUALIFIER_FLAGS , buf ) ; buf . append ( '/' ) ; } getRubyScriptLabel ( type . getRubyScript ( ) , ( flags & QUALIFIER_FLAGS ) , buf ) ; try { int offset = type . getNameRange ( ) . getOffset ( ) ; buf . append ( ", offset: " ) ; buf . append ( offset ) ; } catch ( RubyModelException e ) { RubyPlugin . log ( e ) ; } } } public static void getDeclarationLabel ( IRubyElement declaration , long flags , StringBuffer buf ) { if ( getFlag ( flags , D_QUALIFIED ) ) { IRubyElement openable = ( IRubyElement ) declaration . getOpenable ( ) ; if ( openable != null ) { buf . append ( getElementLabel ( openable , CF_QUALIFIED | CU_QUALIFIED | ( flags & QUALIFIER_FLAGS ) ) ) ; buf . append ( '/' ) ; } } if ( declaration . getElementType ( ) == IRubyElement . IMPORT_CONTAINER ) { buf . append ( RubyUIMessages . RubyElementLabels_import_container ) ; } else { buf . append ( declaration . getElementName ( ) ) ; } if ( getFlag ( flags , D_POST_QUALIFIED ) ) { IRubyElement openable = ( IRubyElement ) declaration . getOpenable ( ) ; if ( openable != null ) { buf . append ( CONCAT_STRING ) ; buf . append ( getElementLabel ( openable , CF_QUALIFIED | CU_QUALIFIED | ( flags & QUALIFIER_FLAGS ) ) ) ; } } } public static void getRubyScriptLabel ( IRubyScript script , long flags , StringBuffer buf ) { if ( getFlag ( flags , CU_QUALIFIED ) ) { ISourceFolder pack = (
1,442
<s> package jtwitter ; import java . io . BufferedReader ; import java . io . IOException ; import java . io . InputStream ; import java . io . InputStreamReader ; import java . io . OutputStreamWriter ; import java . net . HttpURLConnection ; import java . net . URL ; import java . net . URLEncoder ; import java . text . ParseException ; import javax . xml . parsers . ParserConfigurationException ; import oauth . signpost . exception . OAuthCommunicationException ; import oauth . signpost . exception . OAuthExpectationFailedException ; import oauth . signpost . exception . OAuthMessageSignerException ; import org . xml . sax . SAXException ; import com . fredbrunel . android . twitter . AuthConstants ; public class TwitterConnection implements AuthConstants { public static final String PUBLIC_TIMELINE_URL = "" ; public static final String FRIENDS_TIMELINE_URL = "" ; public static final String UPDATE_URL = "" ; private String accessKey = "" ; private String accessSecret = "" ; public TwitterConnection ( String accessKey , String accessSecret ) { this . accessKey = accessKey ; this . accessSecret = accessSecret ; } public TwitterResponse getPublicTimeline ( ) throws Exception { return new TwitterResponse ( ) . parse ( getResponseBody ( makeConnection ( PUBLIC_TIMELINE_URL ) ) ) ; } public TwitterResponse getFriendsTimeline ( ) throws ParseException , SAXException , ParserConfigurationException , IOException , TwitterConnectionException { return new TwitterResponse ( ) . parse ( getResponseBody ( makeAuthConnection ( FRIENDS_TIMELINE_URL ) ) ) ; } public InputStream getFriendsTimelineStream ( ) throws IOException { return makeAuthConnection ( FRIENDS_TIMELINE_URL ) . getInputStream ( ) ; } public TwitterResponse updateStatus ( String text ) throws ParseException , SAXException , ParserConfigurationException , IOException , TwitterConnectionException { if ( text . length ( ) > 140 ) { throw new IllegalArgumentException ( "" ) ; } String status = "status=" + URLEncoder . encode ( text , "UTF-8" ) ; HttpURLConnection conn = makeAuthConnection ( UPDATE_URL ) ; sendPostRequest ( conn , status ) ; return new TwitterResponse ( ) .
1,443
<s> package org . oddjob . designer . components ; import junit . framework . TestCase ; import org . oddjob . Helper ; import org . oddjob . OddjobDescriptorFactory ; import org . oddjob . arooa . ArooaDescriptor ; import org . oddjob . arooa . ArooaParseException ; import org . oddjob . arooa . ArooaType ; import org . oddjob . arooa . design . DesignInstance ; import org . oddjob . arooa . design . DesignParser ; import org . oddjob . arooa . design . view . ViewMainHelper ; import org . oddjob . arooa . standard . StandardArooaSession ;
1,444
<s> package com . asakusafw . testtools ; import java . io . File ; import java . io . IOException ; import java . sql . Connection ; import java . sql . SQLException ; import java . sql . Statement ; import java . text . MessageFormat ; import java . util . ArrayList ; import java . util . Collections ; import java . util . HashMap ; import java . util . List ; import java . util . Map ; import java . util . Set ; import org . apache . hadoop . conf . Configuration ; import org . apache . hadoop . fs . Path ; import org . apache . hadoop . io . SequenceFile ; import com . asakusafw . runtime . io . ModelInput ; import com . asakusafw . runtime . io . ModelOutput ; import com . asakusafw . runtime . stage . temporary . TemporaryStorage ; import com . asakusafw . testtools . db . DbUtils ; import com . asakusafw . testtools . excel . ExcelUtils ; import com . asakusafw . testtools . inspect . Cause ; import com . asakusafw . testtools . inspect . DefaultInspector ; import com . asakusafw . testtools . inspect . Inspector ; public class TestUtils { private final Map < String , TestDataHolder > dataHolderMap = new HashMap < String , TestDataHolder > ( ) ; private final Map < String , Inspector > inspectorMap = new HashMap < String , Inspector > ( ) ; private final List < Cause > causes = new ArrayList < Cause > ( ) ; long startTime ; public TestUtils ( File dir ) throws IOException { if ( ! dir . isDirectory ( ) ) { throw new IOException ( MessageFormat . format ( "" , dir . getAbsolutePath ( ) ) ) ; } List < File > excelFileList = collectExcelFileList ( dir ) ; init ( excelFileList ) ; } private List < File > collectExcelFileList ( File dir ) { File [ ] files = dir . listFiles ( ) ; List < File > excelFileList = new ArrayList < File > ( ) ; for ( File file : files ) { String filename = file . getAbsolutePath ( ) ; String lowcaseFilename = filename . toLowerCase ( ) ; if ( lowcaseFilename . endsWith ( ".xls" ) ) { excelFileList . add ( file ) ; } } Collections . sort ( excelFileList ) ; return excelFileList ; } public TestUtils ( List < File > excelFileList ) throws IOException { init ( excelFileList ) ; } private void init ( List < File > excelFileList ) throws IOException { for ( File file : excelFileList ) { String filename = file . getAbsolutePath ( ) ; String lowcaseFilename = filename . toLowerCase ( ) ; if ( ! lowcaseFilename . endsWith ( ".xls" ) ) { throw new IOException ( MessageFormat . format ( "" , file . getAbsolutePath ( ) ) ) ; } ExcelUtils excelUtils = new ExcelUtils ( filename ) ; TestDataHolder dataHolder = excelUtils . getTestDataHolder ( ) ; dataHolderMap . put ( dataHolder . getTablename ( ) , dataHolder ) ; } startTime = System . currentTimeMillis ( ) ; } public void storeToDatabase ( boolean createTable ) { Connection conn = null ; try { conn = DbUtils . getConnection ( ) ; clearCache ( conn ) ; for ( TestDataHolder dataHolder : dataHolderMap . values ( ) ) { dataHolder . storeToDatabase ( conn , createTable ) ; } } catch ( SQLException e ) { throw new RuntimeException ( e ) ; } finally { DbUtils . closeQuietly ( conn ) ; } } private void clearCache ( Connection connection ) { assert connection != null ; try { Statement statement = connection . createStatement ( ) ; try { statement . execute ( "" ) ; statement . execute ( "" ) ; } finally { statement . close ( ) ; } } catch ( SQLException e ) { System . err . println ( "" ) ; e . printStackTrace ( ) ; } } public void loadFromDatabase ( ) { Connection conn = null ; try { conn = DbUtils . getConnection ( ) ; for ( TestDataHolder dataHolder : dataHolderMap . values ( ) ) { dataHolder . loadFromDatabase ( conn ) ; } } catch ( SQLException e ) { throw new RuntimeException ( e ) ; } finally { DbUtils . closeQuietly ( conn ) ; } } @ Deprecated public void storeToSequenceFile ( String tablename , SequenceFile . Writer writer ) { TestDataHolder dataHolder = dataHolderMap . get ( tablename ) ; try { dataHolder . store ( writer ) ; } catch ( IOException e ) { throw new RuntimeException ( e ) ; } } @ Deprecated public void loadFromSequenceFile ( String tablename , SequenceFile . Reader reader ) { TestDataHolder dataHolder = dataHolderMap . get ( tablename ) ; try { dataHolder . load ( reader ) ; } catch ( IOException e ) { throw new RuntimeException ( e ) ; } } public void loadFromTemporary ( String tableName , Configuration conf , Path path ) throws IOException { if ( tableName == null ) { throw new IllegalArgumentException ( "" ) ; } if ( conf == null ) { throw new IllegalArgumentException ( "" ) ; } if ( path == null ) { throw new IllegalArgumentException ( "" ) ; } TestDataHolder dataHolder = dataHolderMap . get ( tableName ) ; ModelInput < ? > input = TemporaryStorage . openInput ( conf , dataHolder . getModelClass ( ) , path ) ; try { dataHolder . load ( input ) ; } catch ( IOException e ) { throw new RuntimeException ( e ) ; } finally { input . close ( ) ; } } public void storeToTemporary ( String tableName , Configuration conf , Path path ) throws IOException { if ( tableName == null ) { throw new IllegalArgumentException ( "" ) ; } if ( conf == null ) { throw new IllegalArgumentException ( "" ) ; } if ( path == null ) { throw
1,445
<s> package org . rubypeople . rdt . internal . ui . actions ; import org . eclipse . core . resources . IProject ; import org . eclipse . core . resources . IProjectNature ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . jface . dialogs . MessageDialog ; import org . eclipse . swt . widgets . Shell ; import org . eclipse . ui . IEditorPart ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . IRubyProject ;
1,446
<s> package com . asakusafw . dmdl . model ; import java . util . List ; import com . asakusafw . dmdl . Region ; import com . asakusafw . utils . collections . Lists ; public class AstPropertyDefinition extends AbstractAstNode { private final Region region ; public final AstDescription description ; public final List < AstAttribute > attributes ; public final AstSimpleName name ; public final AstType type ; public AstPropertyDefinition ( Region region , AstDescription description , List < AstAttribute > attributes , AstSimpleName name , AstType type ) { if ( attributes == null ) { throw new IllegalArgumentException ( "" ) ; } if ( name == null ) { throw new IllegalArgumentException ( "" ) ; } if ( type == null ) { throw new IllegalArgumentException ( "" ) ; } this . region = region ; this . description = description ; this . attributes = Lists . freeze ( attributes ) ; this . name = name ; this . type = type ; } @ Override public Region getRegion ( ) { return region ; } @ Override public < C , R > R accept (
1,447
<s> package org . rubypeople . rdt . core . formatter . rewriter ; public class CallDepth { private int nestedCallDepth ; private int savedNestedCallDepth ; public void enterCall ( ) { nestedCallDepth ++ ; } public void leaveCall ( ) { nestedCallDepth -- ; if ( nestedCallDepth
1,448
<s> package org . rubypeople . rdt . internal . core . parser . warnings ; import org . rubypeople . rdt . core . RubyCore ; import org . rubypeople . rdt . core . parser . warnings . RubyLintVisitor ; public class CoreClassReOpeningTest extends AbstractRubyLintVisitorTestCase { @ Override protected RubyLintVisitor createVisitor ( String src ) { return new CoreClassReOpening ( null , src ) { @ Override protected boolean methodExistsOnType ( String typeName , String methodName ) { return typeName
1,449
<s> package net . sf . sveditor . ui . prop_pages ; import org . eclipse . core . resources . IProject ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . resources . ResourcesPlugin ; import org . eclipse . jface . dialogs . Dialog ; import org . eclipse . jface . dialogs . IDialogConstants ; import org . eclipse . jface . viewers . DoubleClickEvent ; import org . eclipse . jface . viewers . IDoubleClickListener ; import org . eclipse . jface . viewers . ISelectionChangedListener ; import org . eclipse . jface . viewers . IStructuredSelection ; import org . eclipse . jface . viewers . SelectionChangedEvent ; import org . eclipse . jface . viewers . TreeViewer ; import org . eclipse . jface . viewers . Viewer ; import org . eclipse . jface . viewers . ViewerFilter ; import org . eclipse . swt . SWT ; import org . eclipse . swt . layout . GridData ; import org . eclipse . swt . layout . GridLayout ; import org . eclipse . swt .
1,450
<s> package org . rubypeople . rdt . internal . ui . preferences ; import java . util . ArrayList ; import org . eclipse . jface . dialogs . Dialog ; import org . eclipse . jface . dialogs . IDialogConstants ; import org . eclipse . jface . dialogs . MessageDialog ; import org . eclipse . jface . preference . IPreferenceStore ; import org . eclipse . jface . preference . PreferencePage ; 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 . GridLayout ; import org . eclipse . swt . widgets . Button ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Control ; import org . eclipse . swt . widgets . Group ; import org . eclipse . swt . widgets . Label ; import org . eclipse . swt . widgets . Text ; import org . eclipse . ui . IWorkbench ; import org . eclipse . ui . IWorkbenchPreferencePage ; import org . eclipse . ui . PlatformUI ; import org . rubypeople . rdt . internal . ui . IRubyHelpContextIds ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; import org . rubypeople . rdt . internal . ui . dialogs . OptionalMessageDialog ; import org . rubypeople . rdt . internal . ui . util . SWTUtil ; import org . rubypeople . rdt . ui . PreferenceConstants ; public class RubyBasePreferencePage extends PreferencePage implements IWorkbenchPreferencePage { private static final String DOUBLE_CLICK = PreferenceConstants . DOUBLE_CLICK ; private static final String DOUBLE_CLICK_GOES_INTO = PreferenceConstants . DOUBLE_CLICK_GOES_INTO ; private static final String DOUBLE_CLICK_EXPANDS = PreferenceConstants . DOUBLE_CLICK_EXPANDS ; private ArrayList fCheckBoxes ; private ArrayList fRadioButtons ; private ArrayList fTextControls ; public RubyBasePreferencePage ( ) { super ( ) ; setPreferenceStore ( RubyPlugin . getDefault ( ) . getPreferenceStore ( ) ) ; setDescription ( PreferencesMessages . RubyBasePreferencePage_description ) ; fRadioButtons = new ArrayList ( ) ; fCheckBoxes = new ArrayList ( ) ; fTextControls = new ArrayList ( ) ; } public void init ( IWorkbench workbench ) { } public void createControl ( Composite parent ) { super . createControl ( parent ) ; PlatformUI . getWorkbench ( ) . getHelpSystem ( ) . setHelp ( getControl ( ) , IRubyHelpContextIds . JAVA_BASE_PREFERENCE_PAGE ) ; } private Button addRadioButton ( Composite parent , String label , String key , String value ) { GridData gd = new GridData ( GridData . HORIZONTAL_ALIGN_FILL ) ; Button button = new Button ( parent , SWT . RADIO ) ; button . setText ( label ) ; button . setData ( new String [ ] { key , value } ) ; button . setLayoutData ( gd ) ; button . setSelection ( value . equals ( getPreferenceStore ( ) . getString ( key ) ) ) ; fRadioButtons . add ( button ) ; return button ; } private Button addCheckBox ( Composite parent , String label , String key ) { GridData gd = new GridData ( GridData . HORIZONTAL_ALIGN_FILL ) ; Button button = new Button ( parent , SWT . CHECK ) ; button . setText ( label ) ; button . setData ( key ) ; button . setLayoutData ( gd ) ; button . setSelection ( getPreferenceStore ( ) . getBoolean ( key ) ) ;
1,451
<s> package com . lmax . disruptor ; import java . util . List ; import java . util . concurrent . * ; import java . util . concurrent . atomic . AtomicBoolean ; import com . lmax . disruptor . support . DaemonThreadFactory ; import com . lmax . disruptor . support . TestWaiter ; import com . lmax . disruptor . support . StubEntry ; import org . junit . Test ; import static junit . framework . Assert . assertEquals ; import static junit . framework . Assert . assertTrue ; import static org . hamcrest . CoreMatchers . is ; import static org . junit . Assert . assertFalse ; import static org . junit . Assert . assertThat ; public class RingBufferTest { private final ExecutorService EXECUTOR = Executors . newSingleThreadExecutor ( new DaemonThreadFactory ( ) ) ; private final RingBuffer < StubEntry > ringBuffer = new RingBuffer < StubEntry > ( StubEntry . ENTRY_FACTORY , 20 ) ; private final ConsumerBarrier < StubEntry > consumerBarrier = ringBuffer . createConsumerBarrier ( ) ; private final ProducerBarrier < StubEntry > producerBarrier = ringBuffer . createProducerBarrier ( new NoOpConsumer ( ringBuffer ) ) ; @ Test public void shouldClaimAndGet ( ) throws Exception { assertEquals ( RingBuffer . INITIAL_CURSOR_VALUE , ringBuffer . getCursor ( ) ) ; StubEntry expectedEntry = new StubEntry ( 2701 ) ; StubEntry oldEntry = producerBarrier . nextEntry ( ) ; oldEntry . copy ( expectedEntry ) ; producerBarrier . commit ( oldEntry ) ; long sequence = consumerBarrier . waitFor ( 0 ) ; assertEquals ( 0 , sequence ) ; StubEntry entry = ringBuffer . getEntry ( sequence ) ; assertEquals ( expectedEntry , entry ) ; assertEquals ( 0L , ringBuffer . getCursor ( ) ) ; } @ Test public void shouldClaimAndGetWithTimeout ( ) throws Exception { assertEquals ( RingBuffer . INITIAL_CURSOR_VALUE , ringBuffer . getCursor ( ) ) ; StubEntry expectedEntry = new StubEntry ( 2701 ) ; StubEntry oldEntry = producerBarrier . nextEntry ( ) ; oldEntry . copy ( expectedEntry ) ; producerBarrier . commit ( oldEntry ) ; long sequence = consumerBarrier . waitFor ( 0 , 5 , TimeUnit . MILLISECONDS ) ; assertEquals ( 0 , sequence ) ; StubEntry entry = ringBuffer . getEntry ( sequence ) ; assertEquals ( expectedEntry , entry ) ; assertEquals ( 0L , ringBuffer . getCursor ( ) ) ; } @ Test public void shouldGetWithTimeout ( ) throws Exception { long sequence = consumerBarrier . waitFor ( 0 , 5 , TimeUnit . MILLISECONDS ) ; assertEquals ( RingBuffer . INITIAL_CURSOR_VALUE , sequence ) ; } @ Test public void shouldClaimAndGetInSeparateThread ( ) throws Exception { Future < List < StubEntry > > messages = getMessages ( 0 , 0 ) ; StubEntry expectedEntry = new StubEntry ( 2701 ) ; StubEntry oldEntry = producerBarrier . nextEntry ( ) ;
1,452
<s> package com . asakusafw . compiler . flow . visualizer ; import java . util . Collections ; import java . util . Set ; import java . util . UUID ; import com . asakusafw . compiler . common . Precondition ; import com . asakusafw . compiler . flow . plan . FlowBlock ; import com . asakusafw . utils . collections . Sets ; public class VisualBlock implements VisualNode { private final UUID id = UUID . randomUUID ( ) ; private final String label ; private final Set < FlowBlock . Input > inputs ; private final Set < FlowBlock . Output > outputs ; private final Set < VisualNode > nodes ; public VisualBlock ( String label , Set < FlowBlock . Input > inputs , Set < FlowBlock . Output > outputs ,
1,453
<s> package net . sf . sveditor . ui . pref ; import net . sf . sveditor . ui . SVUiPlugin ; import org . eclipse . jface . preference . BooleanFieldEditor ; import org . eclipse . jface . preference . ComboFieldEditor ; import org . eclipse . jface . preference . FieldEditorPreferencePage ; import org . eclipse . ui . IWorkbench ; import org . eclipse . ui . IWorkbenchPreferencePage ; public class SVEditorPrefsPage extends FieldEditorPreferencePage implements IWorkbenchPreferencePage { public SVEditorPrefsPage ( ) { super ( GRID ) ; setPreferenceStore ( SVUiPlugin . getDefault ( ) . getPreferenceStore ( ) ) ; setDescription ( "" ) ; } public void createFieldEditors ( ) { addField ( new ColorStyleFieldEditor ( SVEditorPrefsConstants . P_DEFAULT_C , "" , SVEditorPrefsConstants . P_DEFAULT_S , getFieldEditorParent ( ) ) ) ; addField ( new ColorStyleFieldEditor ( SVEditorPrefsConstants . P_COMMENT_C , "" , SVEditorPrefsConstants . P_COMMENT_S , getFieldEditorParent ( ) ) ) ; addField ( new ColorStyleFieldEditor ( SVEditorPrefsConstants . P_STRING_C , "" , SVEditorPrefsConstants . P_STRING_S , getFieldEditorParent ( ) ) ) ; addField ( new ColorStyleFieldEditor ( SVEditorPrefsConstants . P_KEYWORD_C , "" , SVEditorPrefsConstants . P_KEYWORD_S , getFieldEditorParent
1,454
<s> package org . oddjob . jobs ; import junit . framework . TestCase ; import org . apache . commons . beanutils . PropertyUtils ; import org . apache . log4j . Logger ; import org . oddjob . ConsoleCapture ; import org . oddjob . Helper ; import org . oddjob . Oddjob ; import org . oddjob . OddjobLookup ; import org . oddjob . OurDirs ; import org . oddjob . arooa . xml . XMLConfiguration ; import org . oddjob . state . JobState ; import org . oddjob . state . ParentState ; public class EchoJobTest extends TestCase { private static final Logger logger = Logger . getLogger ( EchoJobTest . class ) ; public void testInOddjob1 ( ) throws Exception { String xml = "<oddjob>" + " <job>" + "" + " </job>" + "</oddjob>" ; Oddjob oj = new Oddjob ( ) ; oj . setConfiguration ( new XMLConfiguration ( "TEST" , xml ) ) ; oj . run ( ) ; Object test = new OddjobLookup ( oj ) . lookup ( "e" ) ; assertEquals ( JobState . COMPLETE , Helper . getJobState ( test ) ) ; assertEquals ( "Hello" , PropertyUtils . getProperty ( test , "text" ) ) ; } public void testInOddjob2 ( ) throws Exception { Oddjob oj = new Oddjob ( ) ; oj . setConfiguration ( new XMLConfiguration ( "" , getClass ( ) . getClassLoader ( ) ) ) ; oj . run ( ) ; Object test = new OddjobLookup ( oj ) . lookup ( "2" ) ; assertEquals ( JobState . COMPLETE , Helper . getJobState ( test ) ) ; assertEquals ( "Hello" , PropertyUtils . getProperty ( test , "text" ) ) ; } public void testLines ( ) throws Exception { OurDirs dirs = new OurDirs ( ) ; Oddjob oddjob = new Oddjob ( ) ; oddjob . setArgs ( new String [ ] { dirs . base ( ) . getPath ( ) } ) ; oddjob . setConfiguration ( new XMLConfiguration ( "" , getClass ( ) . getClassLoader ( ) ) ) ; ConsoleCapture console = new ConsoleCapture ( ) ; console . capture ( Oddjob . CONSOLE ) ; oddjob . run ( ) ; assertEquals ( ParentState . COMPLETE , oddjob . lastStateEvent ( ) . getState ( ) ) ; console . close ( ) ; console . dump ( logger ) ; String [ ] lines = console
1,455
<s> package com . asakusafw . windgate . bootstrap ; import java . text . MessageFormat ; import java . util . ResourceBundle ; import com . asakusafw . windgate . core . WindGateLogger ; public class WindGateBootstrapLogger extends WindGateLogger { private static final ResourceBundle BUNDLE = ResourceBundle . getBundle ( "" ) ; public WindGateBootstrapLogger ( Class < ? > target ) { super ( target , "BOOTSTRAP" ) ; } @ Override
1,456
<s> package net . sf . sveditor . core . indent ; public interface ISVIndenter { void setIndentIncr ( String incr ) ;
1,457
<s> package org . oddjob . designer . view ; import org . oddjob . arooa . design . DesignInstance ;
1,458
<s> package net . bioclipse . opentox . test . api ; import net . bioclipse . opentox . api . Task ; import net . bioclipse . opentox . api . TaskState ; import
1,459
<s> package org . rubypeople . rdt . core ; import java . util . EventObject ; public class ElementChangedEvent extends EventObject { public static final int
1,460
<s> package com . aptana . rdt . internal . core . gems ; import org . eclipse . osgi . util . NLS ; public class GemsMessages extends NLS { private static final String BUNDLE_NAME = GemsMessages . class . getName ( ) ; public static String GemManager_loading_local_gems ; public static
1,461
<s> package org . oddjob . sql ; import java . io . File ; import java . io . Serializable ; import java . net . URL ; import java . sql . Connection ; import junit . framework . TestCase ; import org . apache . commons . beanutils . PropertyUtils ; import org . apache . log4j . Logger ; import org . oddjob . Oddjob ; import org . oddjob . OddjobLookup ; import org . oddjob . StateSteps ; import org . oddjob . arooa . life . ComponentPersister ; import org . oddjob . arooa . standard . StandardArooaSession ; import org . oddjob . arooa . xml . XMLConfiguration ; import org . oddjob . state . ParentState ; public class SQLPersisterTest extends TestCase { private static final Logger logger = Logger . getLogger ( SQLPersisterTest . class ) ; public static class Sample implements Serializable { private static final long serialVersionUID = 2006111 ; String value ; } public void testSql ( ) throws Exception { Oddjob setUp = new Oddjob ( ) ; setUp . setConfiguration ( new XMLConfiguration ( "Resource" , getClass ( ) . getResourceAsStream ( "create.xml" ) ) ) ; setUp . run ( ) ; assertEquals ( ParentState . COMPLETE , setUp . lastStateEvent ( ) . getState ( ) ) ; ConnectionType connection = new OddjobLookup ( setUp ) . lookup ( "vars.con" , ConnectionType . class ) ; SQLPersisterService test = new SQLPersisterService ( ) ; test . setConnection ( connection . toValue ( ) ) ; test . start ( ) ; Sample sample = new Sample ( ) ; String text = "" ; sample . value = text ; StandardArooaSession session = new StandardArooaSession ( ) ; ComponentPersister persister = test . getPersister ( "test" ) . persisterFor ( "oj" ) ; persister . persist ( "foo" , sample , session ) ; Object o = persister . restore ( "foo" , getClass ( ) . getClassLoader ( ) , session ) ; assertNotNull ( o ) ; assertEquals ( Sample . class , o . getClass ( ) ) ; Sample copy = ( Sample ) o ; logger . debug ( copy . value ) ; assertEquals ( text , copy . value ) ; test . stop ( ) ; Connection c = connection . toValue ( ) ; c . createStatement ( ) . execute ( "shutdown" ) ; c . close ( ) ; } public void
1,462
<s> package net . thucydides . showcase . simple ; import net . thucydides . core . annotations . Managed ; import net . thucydides . core . annotations . ManagedPages ; import net . thucydides . core . annotations . Steps ; import net . thucydides . core . annotations . Story ; import net . thucydides . core . pages . Pages ; import net . thucydides . junit . runners . ThucydidesRunner ; import net . thucydides . showcase . simple . requirements . Application ; import net . thucydides . showcase . simple . steps . DeveloperSteps ; import org . junit . Test ; import org . junit . runner
1,463
<s> package de . fuberlin . wiwiss . d2rq . vocab ; import com . hp . hpl . jena . rdf . model . Model ; import com . hp . hpl . jena . rdf . model . ModelFactory ;
1,464
<s> package net . sf . sveditor . ui . views . objects ; import net . sf . sveditor . core . objects . ObjectsTreeNode ; import org . eclipse . jface . viewers
1,465
<s> package de . fuberlin . wiwiss . d2rq . sql . types ; import java . sql . ResultSet ; import java . sql . SQLException ; import de . fuberlin . wiwiss . d2rq .
1,466
<s> package org . rubypeople . rdt . internal . testunit . util ; import org . eclipse . core . runtime . Assert ; import org . eclipse . jface . dialogs . IDialogConstants ; import org . eclipse . jface . resource . JFaceResources ; import org . eclipse . swt . SWT ; import org . eclipse . swt . layout . GridData ; import org . eclipse . swt . layout . GridLayout ; import org . eclipse . swt . widgets . Button ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Control ; import org . eclipse . swt . widgets . Label ; import org . rubypeople . rdt . internal . testunit . wizards . MethodStubsSelectionButtonGroup ; import org . rubypeople . rdt . internal . ui . util . PixelConverter ; public class LayoutUtil { public static int getNumberOfColumns ( MethodStubsSelectionButtonGroup [ ] editors ) { int columnCount = 0 ; for ( int i = 0 ;
1,467
<s> package org . oddjob . state ; import java . util . Date ; import junit . framework . TestCase ; import org . oddjob . MockStateful ; public class StateExchangeTest extends TestCase { private class OurStateful extends MockStateful { StateListener listener ; public void addStateListener ( StateListener listener ) { assertNull ( this . listener ) ; this . listener = listener ; } public void removeStateListener
1,468
<s> package com . asakusafw . compiler . directio ; import java . io . IOException ; import org . apache . hadoop . fs . FileSystem ; import org . apache . hadoop . fs . Path ; import com . asakusafw . compiler . directio . testing . model . Line ; import com . asakusafw . runtime . directio . Counter ; import com . asakusafw . runtime . directio . hadoop . HadoopFileFormat ; import com . asakusafw . runtime . directio . hadoop . HadoopFileFormatAdapter ; import com . asakusafw . runtime . io . ModelInput ; import com . asakusafw . runtime . io . ModelOutput ; public class LineFileFormat extends HadoopFileFormatAdapter < Line > { public LineFileFormat ( ) { super ( new LineFormat ( ) ) ; } @ Override public ModelInput < Line > createInput ( Class < ? extends Line > dataType , FileSystem fileSystem , Path path , long offset , long fragmentSize , Counter counter ) throws IOException , InterruptedException { if ( getConf ( ) == null ) { throw new IllegalStateException ( ) ; } return super . createInput ( dataType
1,469
<s> package org . rubypeople . rdt . internal . testunit . ui ; public class TestRunInfo extends Object { private String fTestId ; private String fTestName ; private String fTrace ; private String fExpected ; private String fActual ; private int fStatus ; public TestRunInfo ( String testId , String testName ) { fTestName = testName ; fTestId = testId ; } public int hashCode ( ) { return getTestId ( ) . hashCode ( ) ; } public boolean equals ( Object obj ) { return getTestId ( ) . equals ( obj ) ; } public String getTestId ( ) { return fTestId ; } public String getTestName ( ) { return fTestName ; } public String
1,470
<s> package com . asakusafw . runtime . core ; import java . text . MessageFormat ; public final class BatchRuntime { public static final int VERSION_MAJOR = 4 ; public static final int VERSION_MINOR = 0 ; public static void require ( int major , int minor ) { if ( major != VERSION_MAJOR || minor != VERSION_MINOR ) { throw new IllegalStateException (
1,471
<s> package org . rubypeople . rdt . internal . ui . filters ; import org . eclipse
1,472
<s> package org . rubypeople . rdt . internal . ui . wizards . buildpaths . newsourcepage ; import java . util . List ; import org . eclipse . core . resources . IFile ; import org . eclipse . core . resources . IFolder ; import org . eclipse . core . resources . IResource ; import org . eclipse . jface . action . IMenuListener ; import org . eclipse . jface . action . IMenuManager ; import org . eclipse . jface . action . MenuManager ; import org . eclipse . jface . viewers . DoubleClickEvent ; import org . eclipse . jface . viewers . IDoubleClickListener ; import org . eclipse . jface . viewers . ISelectionChangedListener ; import org . eclipse . jface . viewers . IStructuredSelection ; import org . eclipse . jface . viewers . SelectionChangedEvent ; import org . eclipse . jface . viewers . StructuredSelection ; import org . eclipse . jface . viewers . TreeViewer ; import org . eclipse . jface . viewers . Viewer ; import org . eclipse . swt . SWT ; import org . eclipse . swt . events . DisposeEvent ; import org . eclipse . swt . events . DisposeListener ; import org . eclipse . swt . graphics . Color ; import org . eclipse . swt . graphics . Image ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Control ; import org . eclipse . swt . widgets . Display ; import org . eclipse . swt . widgets . Menu ; import org . rubypeople . rdt . core . ILoadpathEntry ; import org . rubypeople . rdt . core . IRubyProject ; import org . rubypeople . rdt . core . ISourceFolderRoot ; import org . rubypeople . rdt . core . RubyModelException ; import org . rubypeople . rdt . internal . corext . buildpath . LoadpathModifier ; import org . rubypeople . rdt . internal . corext . util . Messages ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; import org . rubypeople . rdt . internal . ui . filters . LibraryFilter ; import org . rubypeople . rdt . internal . ui . viewsupport . AppearanceAwareLabelProvider ; import org . rubypeople . rdt . internal . ui . viewsupport . DecoratingRubyLabelProvider ; import org . rubypeople . rdt . internal . ui . viewsupport . RubyElementImageProvider ; import org . rubypeople . rdt . internal . ui . wizards . NewWizardMessages ; import org . rubypeople . rdt . internal . ui . wizards . buildpaths . CPListElementAttribute ; import org . rubypeople . rdt . internal . ui . wizards . buildpaths . CPListLabelProvider ; import org . rubypeople . rdt . internal . ui . wizards . buildpaths . newsourcepage . DialogPackageExplorerActionGroup . DialogExplorerActionContext ; import org . rubypeople . rdt . internal . ui . workingsets . WorkingSetModel ; import org . rubypeople . rdt . ui . RubyElementLabels ; import org . rubypeople . rdt . ui . RubyElementSorter ; import org . rubypeople . rdt . ui . StandardRubyElementContentProvider ; public class DialogPackageExplorer implements IMenuListener , ISelectionChangedListener { private final class PackageContentProvider extends StandardRubyElementContentProvider { public PackageContentProvider ( ) { super ( ) ; } public Object [ ] getElements ( Object element ) { if ( fCurrJProject == null ) return new Object [ 0 ] ; return new Object [ ] { fCurrJProject } ; } } private final class PackageLabelProvider extends AppearanceAwareLabelProvider { private CPListLabelProvider outputFolderLabel ; public PackageLabelProvider ( long textFlags , int imageFlags ) { super ( textFlags , imageFlags ) ; outputFolderLabel = new CPListLabelProvider ( ) ; } public String getText ( Object element ) { if ( element instanceof CPListElementAttribute ) return outputFolderLabel . getText ( element ) ; String text = super . getText ( element ) ; try { if ( element instanceof ISourceFolderRoot ) { ISourceFolderRoot root = ( ISourceFolderRoot ) element ; if ( root . exists ( ) && LoadpathModifier . filtersSet ( root ) ) { ILoadpathEntry entry = root . getRawLoadpathEntry ( ) ; int excluded = entry . getExclusionPatterns ( ) . length ; if ( excluded == 1 ) return Messages . format ( NewWizardMessages . DialogPackageExplorer_LabelProvider_SingleExcluded , text ) ; else if ( excluded > 1 ) return Messages . format ( NewWizardMessages . DialogPackageExplorer_LabelProvider_MultiExcluded , new Object [ ] { text , new Integer ( excluded ) } ) ; } } if ( element instanceof IRubyProject ) { IRubyProject project = ( IRubyProject ) element ; if ( project . exists ( ) && project . isOnLoadpath ( project ) ) { ISourceFolderRoot root = project . findSourceFolderRoot ( project . getPath ( ) ) ; if ( LoadpathModifier . filtersSet ( root ) ) { ILoadpathEntry entry = root . getRawLoadpathEntry ( ) ; int excluded = entry . getExclusionPatterns ( ) . length ; if ( excluded == 1 ) return Messages . format ( NewWizardMessages . DialogPackageExplorer_LabelProvider_SingleExcluded , text ) ; else if ( excluded > 1 ) return Messages . format ( NewWizardMessages . DialogPackageExplorer_LabelProvider_MultiExcluded , new Object [ ] { text , new Integer ( excluded ) } ) ; } } } if ( element instanceof IFile || element instanceof IFolder ) { IResource resource = ( IResource ) element ; if ( resource . exists ( ) && LoadpathModifier . isExcluded ( resource , fCurrJProject ) ) return Messages . format ( NewWizardMessages . DialogPackageExplorer_LabelProvider_Excluded , text ) ; } } catch ( RubyModelException e
1,473
<s> package com . asakusafw . windgate . jdbc ; import java . io . IOException ; import java . sql . Connection ; import java . sql . SQLException ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import com . asakusafw . runtime . core . context . SimulationSupport ; import com . asakusafw . windgate . core . DriverScript ; import com . asakusafw . windgate . core . GateScript ; import com . asakusafw . windgate . core . ParameterList ; import com . asakusafw . windgate . core . ProcessScript ; import com . asakusafw . windgate . core . WindGateLogger ; import com . asakusafw . windgate . core . resource . DrainDriver ; import com . asakusafw . windgate . core . resource . ResourceMirror ; import com . asakusafw . windgate . core . resource . SourceDriver ; import com . asakusafw . windgate . core . util . ProcessUtil ; @ SimulationSupport public class JdbcResourceMirror extends ResourceMirror { static final WindGateLogger WGLOG = new JdbcLogger ( JdbcResourceMirror . class ) ; static final Logger LOG = LoggerFactory . getLogger ( JdbcResourceMirror . class ) ; private final JdbcProfile profile ; private final ParameterList arguments ; public JdbcResourceMirror ( JdbcProfile profile , ParameterList arguments ) { if ( profile == null ) { throw new IllegalArgumentException ( "" ) ; } if ( arguments == null ) { throw new IllegalArgumentException ( "" ) ; } this . profile = profile ; this . arguments = arguments ; } @ Override public String getName ( ) { return profile . getResourceName ( ) ; } @ Override public void prepare ( GateScript script ) throws IOException { if ( script == null ) { throw new IllegalArgumentException ( "" ) ; } LOG . debug ( "" , getName ( ) ) ; for ( ProcessScript < ? > process : script . getProcesses ( ) ) { if ( process . getSourceScript ( ) . getResourceName ( ) . equals ( getName ( ) ) ) { JdbcResourceUtil . convert ( profile , process , arguments , DriverScript . Kind . SOURCE ) ; ProcessUtil . newDataModel ( profile . getResourceName ( ) , process ) ; } if ( process . getDrainScript ( ) . getResourceName ( ) . equals ( getName ( ) ) ) { JdbcResourceUtil . convert ( profile , process , arguments , DriverScript . Kind . DRAIN ) ; } } } @ Override public < T > SourceDriver < T > createSource ( ProcessScript < T > script ) throws IOException { if ( script == null ) { throw new IllegalArgumentException ( "" ) ; } LOG . debug ( "" , getName ( ) , script . getName ( ) ) ; JdbcScript < T > jdbcScript = JdbcResourceUtil . convert ( profile , script , arguments , DriverScript . Kind . SOURCE ) ; T object = ProcessUtil . newDataModel ( profile . getResourceName ( ) , script ) ; WGLOG . info ( "I02001" , getName ( ) , script . getName ( ) ) ; Connection connection = profile . openConnection ( ) ; boolean succeed =
1,474
<s> package com . asakusafw . runtime . util ; import java . lang . reflect . ParameterizedType ; import java . lang . reflect . Type ; import java . lang . reflect . TypeVariable ; import java . util . ArrayList ; import java . util . Collections ; import java . util . Iterator ; import java . util . LinkedHashMap ; import java . util . List ; import java . util . Map ; import java . util . NoSuchElementException ; public final class TypeUtil { public static Class < ? > erase ( Type type ) { if ( type == null ) { throw new IllegalArgumentException ( "" ) ; } GenericContext generic = toGenericContext ( type ) ; if ( generic == null ) { throw new IllegalArgumentException ( "" ) ; } return generic . raw ; } public static List < Type > invoke ( Class < ? > target , Type context ) { if ( target == null ) { throw new IllegalArgumentException ( "" ) ; } if ( context == null ) { throw new IllegalArgumentException ( "" ) ; } if ( target . isPrimitive ( ) || target . isArray ( ) ) { throw new IllegalArgumentException ( "" ) ; } if ( target == Object . class ) { return Collections . emptyList ( ) ; } GenericContext generic = toGenericContext ( context ) ; if ( generic == null ) { throw new IllegalArgumentException ( "" ) ; } if ( target . isAssignableFrom ( generic . raw ) == false ) { return null ; } if ( target . getTypeParameters ( ) . length == 0 ) { return Collections . emptyList ( ) ; } if ( target . isInterface ( ) ) { return invokeInterface ( target , generic ) ; } if ( generic . raw . isInterface ( ) ) { return null ; } return invokeClass ( target , generic ) ; } private static List < Type > invokeClass ( Class < ? > target , GenericContext context ) { assert target != null ; assert context != null ; assert target . isInterface ( ) == false ; assert context . raw . isInterface ( ) == false ; for ( GenericContext current = context . getSuperClass ( ) ; current != null ; current = current . getSuperClass ( ) ) { if ( current . raw == target ) { return current . getTypeArguments ( ) ; } } return null ; } private static List < Type > invokeInterface ( Class < ? > target , GenericContext context ) { assert target != null ; assert context != null ; assert target . isInterface ( ) ; GenericContext bottom = findBottomClass ( target , context ) ; if ( bottom == null ) { return null ; } if ( target == bottom . raw ) { return bottom . getTypeArguments ( ) ; } return findInterface ( target , bottom ) ; } private static List < Type > findInterface ( Class < ? > target , GenericContext context ) { assert target != null ; assert context != null ; assert target . isAssignableFrom ( context . raw ) ; Iterator < GenericContext > iter = context . getSuperInterfaces ( ) ; while ( iter . hasNext ( ) ) { GenericContext intf = iter . next ( ) ; if ( target == intf . raw ) { return intf . getTypeArguments ( ) ; } if ( target . isAssignableFrom ( intf . raw ) ) { return findInterface ( target , intf ) ; } } throw new AssertionError ( target ) ; } private static GenericContext findBottomClass ( Class < ? > target , GenericContext context ) { assert target != null ; assert context != null ; GenericContext bottom = null ; for ( GenericContext current = context ; current != null ; current = current . getSuperClass ( ) ) { if ( target . isAssignableFrom ( current . raw ) ) { bottom = current ; } else { break ; } } return bottom ; } private static GenericContext toGenericContext ( Type context ) { assert context != null ; if ( context instanceof Class < ? > ) { return new GenericContext ( ( Class < ? > ) context ) ; } if ( context instanceof ParameterizedType ) { ParameterizedType t = ( ParameterizedType ) context ; Class < ? > raw = ( Class < ? > ) t . getRawType ( ) ; TypeVariable < ? > [ ] params = raw . getTypeParameters ( ) ; Type [ ] args = t . getActualTypeArguments ( ) ; if ( params . length != args . length ) { return new GenericContext ( raw ) ; } LinkedHashMap < TypeVariable < ? > , Type > mapping = new LinkedHashMap < TypeVariable < ? > , Type > ( ) ; for ( int i = 0 ; i < params . length ; i ++ ) { mapping . put ( params [ i ] , args [ i ] ) ; } return new GenericContext ( raw , mapping ) ; } return null ; } private TypeUtil ( ) { throw new AssertionError ( ) ; } static GenericContext analyze ( Type type , Map < TypeVariable < ? > , Type > mapping ) { assert type != null ; assert mapping != null ; Type subst = substitute ( type , mapping ) ; if (
1,475
<s> package com . asakusafw . windgate . hadoopfs . ssh ; import java . io . IOException ; import java . io . InputStream ; import org . apache . hadoop . conf . Configuration ; import org . apache . hadoop . fs . FileStatus ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import com . asakusafw . runtime . io . ModelInput ; import com . asakusafw . runtime . stage . temporary . TemporaryStorage ; import com . asakusafw . windgate . hadoopfs . temporary . ModelInputProvider ; public class FileListModelInputProvider < T > implements ModelInputProvider < T > { static final Logger LOG = LoggerFactory . getLogger ( FileListModelInputProvider . class ) ; private final Configuration conf ; private final FileList . Reader fileList ; private final Class < T > dataModelClass ; public FileListModelInputProvider ( Configuration conf
1,476
<s> package de . fuberlin . wiwiss . d2rq . algebra ; import java . util . ArrayList ; import java . util . Collection ; import java . util . Collections ; import java . util . Set ; import junit . framework . TestCase ; import de . fuberlin . wiwiss . d2rq . algebra . AliasMap . Alias ; import de . fuberlin . wiwiss . d2rq . expr . SQLExpression ; public class AliasMapTest extends TestCase { private final static RelationName foo = new RelationName ( null , "foo" ) ; private final static RelationName bar = new RelationName ( null , "bar" ) ; private final static RelationName baz = new RelationName ( null , "baz" ) ; private final static Attribute foo_col1 = new Attribute ( null , "foo" , "col1" ) ; private final static Attribute bar_col1 = new Attribute ( null , "bar" , "col1" ) ; private final static Attribute baz_col1 = new Attribute ( null , "baz" , "col1" ) ; private final static Attribute abc_col1 = new Attribute ( null , "abc" , "col1" ) ; private final static Attribute xyz_col1 = new Attribute ( null , "xyz" , "col1" ) ; private Alias fooAsBar = new Alias ( foo , bar ) ; private Alias fooAsBaz = new Alias ( foo , baz ) ; private Alias bazAsBar = new Alias ( baz , bar ) ; private AliasMap fooAsBarMap = new AliasMap ( Collections . singleton ( new Alias ( foo , bar ) ) ) ; public void testEmptyMapDoesIdentityTranslation ( ) { AliasMap aliases = AliasMap . NO_ALIASES ; assertFalse ( aliases . isAlias ( foo ) ) ; assertFalse ( aliases . hasAlias ( foo ) ) ; assertEquals ( foo , aliases . applyTo ( foo ) ) ; assertEquals ( foo , aliases . originalOf ( foo ) ) ; } public void testAliasIsTranslated ( ) { assertFalse ( this . fooAsBarMap . isAlias ( foo ) ) ; assertTrue ( this . fooAsBarMap . isAlias ( bar ) ) ; assertFalse ( this . fooAsBarMap . isAlias ( baz ) ) ; assertTrue ( this . fooAsBarMap . hasAlias ( foo ) ) ; assertFalse ( this . fooAsBarMap . hasAlias ( bar ) ) ; assertFalse ( this . fooAsBarMap . hasAlias ( baz ) ) ; assertEquals ( bar , this . fooAsBarMap . applyTo ( foo ) ) ; assertEquals ( baz , this . fooAsBarMap . applyTo ( baz ) ) ; assertEquals ( foo , this . fooAsBarMap . originalOf ( bar ) ) ; assertEquals ( baz , this . fooAsBarMap . originalOf ( baz ) ) ; } public void testApplyToColumn ( ) { assertEquals ( baz_col1 , this . fooAsBarMap . applyTo ( baz_col1 ) ) ; assertEquals ( bar_col1 , this . fooAsBarMap . applyTo ( foo_col1 ) ) ; assertEquals ( bar_col1 , this . fooAsBarMap . applyTo ( bar_col1 ) ) ; } public void testOriginalOfColumn ( ) { assertEquals ( baz_col1 , this . fooAsBarMap . originalOf ( baz_col1 ) ) ; assertEquals ( foo_col1 , this . fooAsBarMap . originalOf ( foo_col1 ) ) ; assertEquals ( foo_col1 , this . fooAsBarMap . originalOf ( bar_col1 ) ) ; } public void testApplyToJoinSetDoesNotModifyUnaliasedJoin ( ) { Join join = new Join ( abc_col1 , xyz_col1 , Join . DIRECTION_RIGHT ) ; Set < Join > joins = Collections . singleton ( join ) ; assertEquals ( joins , this . fooAsBarMap . applyToJoinSet ( joins ) ) ; } public void testApplyToJoinSetDoesModifyAliasedJoin ( ) { Join join = new Join ( foo_col1 , foo_col1 , Join . DIRECTION_RIGHT ) ; Set < Join > aliasedSet = this . fooAsBarMap . applyToJoinSet ( Collections . singleton ( join ) ) ; assertEquals ( 1 , aliasedSet . size ( ) ) ; Join aliased = ( Join ) aliasedSet . iterator ( ) . next ( ) ; assertEquals ( Collections . singletonList ( bar_col1 ) , aliased . attributes1 ( ) ) ; assertEquals ( Collections . singletonList ( bar_col1 ) , aliased . attributes2 ( ) ) ; } public void testApplyToSQLExpression ( ) { assertEquals ( SQLExpression . create ( "bar.col1 = 1" ) , fooAsBarMap . applyTo ( SQLExpression . create ( "foo.col1 = 1" ) ) ) ; } public void testNoAliasesConstantEqualsNewEmptyAliasMap ( ) { AliasMap noAliases = new AliasMap ( Collections . < Alias > emptyList ( ) ) ; assertTrue ( AliasMap . NO_ALIASES . equals ( noAliases ) ) ; assertTrue ( noAliases . equals ( AliasMap . NO_ALIASES ) ) ; } public void testEmptyMapEqualsItself ( ) { assertTrue ( AliasMap . NO_ALIASES . equals ( AliasMap . NO_ALIASES ) ) ; } public void testEmptyMapDoesntEqualPopulatedMap ( ) { assertFalse ( AliasMap . NO_ALIASES . equals ( fooAsBarMap ) ) ; } public void testPopulatedMapDoesntEqualEmptyMap ( ) { assertFalse ( fooAsBarMap . equals ( AliasMap . NO_ALIASES ) ) ; } public void testPopulatedMapEqualsItself ( ) { AliasMap fooAsBar2 = new AliasMap ( Collections . singleton ( new Alias ( foo , bar ) ) ) ; assertTrue ( fooAsBarMap . equals ( fooAsBar2 ) ) ; assertTrue ( fooAsBar2 . equals ( fooAsBarMap ) ) ; } public void testPopulatedMapDoesNotEqualDifferentMap ( ) { AliasMap fooAsBaz = new AliasMap ( Collections . singleton ( new Alias ( foo , baz ) ) ) ; assertFalse ( fooAsBarMap .
1,477
<s> package br . com . caelum . vraptor . dash . statement ; import org . hibernate . SessionFactory ; import org . hibernate . cfg . AnnotationConfiguration ; import org . hibernate . classic . Session ; import org . junit . After ; import org . junit . AfterClass ; import org . junit . Before ; import org . junit . BeforeClass ; public abstract class DatabaseIntegrationTest { private static SessionFactory factory ; protected Session session ; @ BeforeClass public static void setup ( ) { factory = new AnnotationConfiguration ( ) .
1,478
<s> package com . aptana . rdt . internal . ui . preferences ; import org . eclipse . core . resources . IProject ; import org . eclipse . core . runtime . preferences . InstanceScope ; import org . eclipse . jface . preference . BooleanFieldEditor ; import org . eclipse . jface . preference . FieldEditorPreferencePage ; import org . eclipse . jface . preference . IntegerFieldEditor ; import org . eclipse . ui . IWorkbench ; import org . eclipse . ui . IWorkbenchPreferencePage ; import org . rubypeople . rdt . core . RubyCore ; import org . rubypeople . rdt . internal . ui . util . CoreUtility ; import org . rubypeople . rdt . ui . EclipsePreferencesAdapter ; import com . aptana . rdt . AptanaRDTPlugin ; public class DuplicateCodePreferencePage extends FieldEditorPreferencePage implements IWorkbenchPreferencePage { public DuplicateCodePreferencePage ( ) { super ( GRID ) ; setPreferenceStore ( new EclipsePreferencesAdapter ( new InstanceScope ( ) , AptanaRDTPlugin . PLUGIN_ID )
1,479
<s> package org . rubypeople . rdt . internal . ui . packageview ; import org . eclipse . jface . action . Action ; import org . eclipse . ui . PlatformUI ; import org . rubypeople . rdt . internal . ui . IRubyHelpContextIds ; import org . rubypeople . rdt . internal . ui .
1,480
<s> package org . oddjob . beanbus ; public class CrashBusException extends BusException { private static final long serialVersionUID
1,481
<s> package com . asakusafw . utils . java . jsr269 . bridge ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import javax . annotation . processing . ProcessingEnvironment ; import javax . annotation . processing . RoundEnvironment ; import javax . lang . model . element . TypeElement ; import javax . lang . model . type . TypeMirror ; import javax . lang . model . util . Elements ; import javax . lang . model . util . Types ; public abstract class Callback { private RuntimeException runtimeException ; private Error error ; protected ProcessingEnvironment env ; protected Types types ; protected Elements elements ; protected RoundEnvironment round ; @ SuppressWarnings ( "hiding" ) public void run ( ProcessingEnvironment env , RoundEnvironment round ) { this . env = env ; this . round = round ; this . types = env . getTypeUtils ( ) ; this . elements = env . getElementUtils ( ) ; try { test ( ) ; } catch ( RuntimeException e ) { this . runtimeException = e ; } catch ( Error e ) { this . error = e ; } } public void rethrow ( ) { if ( runtimeException != null )
1,482
<s> package org . oddjob . jmx ; import java . util . concurrent . ScheduledExecutorService ; import java . util . concurrent . TimeUnit ; import javax . management . MBeanServerConnection ; import org . oddjob . Structural ; import org . oddjob . jmx . client . ClientSession ; import org . oddjob . jmx . client . ClientSessionImpl ; import org . oddjob . jmx . client . RemoteLogPoller ; import org . oddjob . jmx . client . ServerView ; import org . oddjob . jmx . server . OddjobMBeanFactory ; import org . oddjob . jobs . job . StopJob ; import org . oddjob . jobs . structural . ServiceManager ; import org . oddjob . logging . ConsoleArchiver ; import org . oddjob . logging . LogArchiver ; import org . oddjob . logging . LogLevel ; import org . oddjob . logging . LogListener ; import org . oddjob . structural . ChildHelper ; import org . oddjob . structural . StructuralListener ; public class JMXClientJob extends ClientBase implements Structural , LogArchiver , ConsoleArchiver , RemoteDirectoryOwner { public static final long DEFAULT_LOG_POLLING_INTERVAL = 5000 ; private RemoteLogPoller logPoller ; private ChildHelper < Object > childHelper = new ChildHelper < Object > ( this ) ; private ClientSession clientSession ; private ServerView serverView ; private int maxLoggerLines = LogArchiver . MAX_HISTORY ; private int maxConsoleLines = LogArchiver . MAX_HISTORY ; private long logPollingInterval = 5000 ; @ Deprecated public void setUrl ( String url ) { setConnection ( url ) ; } @ Override public void addLogListener ( LogListener l , Object component , LogLevel level , long last , int history ) { stateHandler . assertAlive ( ) ; if ( logPoller == null ) { throw new NullPointerException ( "" ) ; } logPoller . addLogListener ( l , component , level , last , history ) ; synchronized ( logPoller ) { logPoller . notifyAll ( ) ; } } @ Override public void removeLogListener ( LogListener l , Object component ) { if ( logPoller == null ) { return ; } logPoller . removeLogListener ( l , component ) ; } @ Override public void addConsoleListener ( LogListener l , Object component , long last , int max ) { stateHandler . assertAlive ( ) ; if ( logPoller == null ) { throw new NullPointerException ( "" ) ; } logPoller . addConsoleListener ( l , component , last , max ) ; synchronized ( this ) { notifyAll ( ) ; } } @ Override public void removeConsoleListener ( LogListener l , Object component ) { if ( logPoller == null ) { return ; } logPoller . removeConsoleListener ( l , component ) ; } @ Override public String consoleIdFor ( Object component ) { return logPoller . consoleIdFor ( component ) ; } @ Override public void onInitialised ( ) { if ( maxConsoleLines == 0 ) { maxConsoleLines = LogArchiver . MAX_HISTORY ; } if ( maxLoggerLines == 0 ) { maxLoggerLines = LogArchiver . MAX_HISTORY ; } if ( logPollingInterval == 0 ) { logPollingInterval = DEFAULT_LOG_POLLING_INTERVAL ; } } @ Override protected void doStart ( MBeanServerConnection mbsc , ScheduledExecutorService notificationProcessor ) throws Exception { clientSession = new ClientSessionImpl ( mbsc , notificationProcessor , getArooaSession ( ) , logger ( ) ) ; Object serverMain = clientSession . create ( OddjobMBeanFactory . objectName ( 0 ) ) ; if ( serverMain == null ) { throw new NullPointerException ( "" ) ; } serverView = new ServerView ( serverMain ) ; this . logPoller = new RemoteLogPoller ( serverMain , maxConsoleLines , maxLoggerLines ) ; serverView . startStructural ( childHelper ) ; notificationProcessor . scheduleAtFixedRate ( new Runnable ( ) { public void run ( ) { try { serverView . noop ( ) ; } catch ( RuntimeException e ) { try { doStop ( WhyStop . HEARTBEAT_FAILURE , e ) ; } catch ( Exception e1 ) { logger ( ) . error ( "" , e1 ) ; } } } @ Override public String toString ( ) { return "Heartbeat" ; } } , getHeartbeat ( ) , getHeartbeat ( ) , TimeUnit . MILLISECONDS ) ; logPoller . setLogPollingInterval ( logPollingInterval ) ; Thread t = new Thread ( logPoller ) ;
1,483
<s> package com . sun . tools . hat . internal . server ; import java . io . * ; class OQLHelp extends QueryHandler { public OQLHelp ( ) { } public void run ( ) { InputStream is = getClass ( ) . getResourceAsStream ( "" ) ; int ch = - 1 ; try { is = new BufferedInputStream ( is ) ; while ( ( ch = is . read ( ) ) != - 1 ) { out . print ( ( char ) ch ) ; } } catch ( Exception exp
1,484
<s> package com . pogofish . jadt . printer ; import static com . pogofish . jadt . ast . ASTConstants . EMPTY_PKG ; import static com . pogofish . jadt . ast . ASTConstants . NO_COMMENTS ; import static com . pogofish . jadt . ast . ASTConstants . NO_IMPORTS ; import static com . pogofish . jadt . ast . Annotation . _Annotation ; import static com . pogofish . jadt . ast . AnnotationElement . _ElementValue ; import static com . pogofish . jadt . ast . AnnotationElement . _ElementValuePairs ; import static com . pogofish . jadt . ast . AnnotationKeyValue . _AnnotationKeyValue ; import static com . pogofish . jadt . ast . AnnotationValue . _AnnotationValueAnnotation ; import static com . pogofish . jadt . ast . AnnotationValue . _AnnotationValueExpression ; import static com . pogofish . jadt . ast . ArgModifier . _Final ; import static com . pogofish . jadt . ast . ArgModifier . _Transient ; import static com . pogofish . jadt . ast . ArgModifier . _Volatile ; import static com . pogofish . jadt . ast . BlockToken . _BlockEOL ; import static com . pogofish . jadt . ast . BlockToken . _BlockWhiteSpace ; import static com . pogofish . jadt . ast . BlockToken . _BlockWord ; import static com . pogofish . jadt . ast . Expression . * ; import static com . pogofish . jadt . ast . JDTagSection . _JDTagSection ; import static com . pogofish . jadt . ast . JDToken . _JDAsterisk ; import static com . pogofish . jadt . ast . JDToken . _JDEOL ; import static com . pogofish . jadt . ast . JDToken . _JDTag ; import static com . pogofish . jadt . ast . JDToken . _JDWhiteSpace ; import static com . pogofish . jadt . ast . JDToken . _JDWord ; import static com . pogofish . jadt . ast . JavaComment . _JavaBlockComment ; import static com . pogofish . jadt . ast . JavaComment . _JavaDocComment ; import static com . pogofish . jadt . ast . JavaComment . _JavaEOLComment ; import static com . pogofish . jadt . ast . Literal . _BooleanLiteral ; import static com . pogofish . jadt . ast . Literal . _CharLiteral ; import static com . pogofish . jadt . ast . Literal . _FloatingPointLiteral ; import static com . pogofish . jadt . ast . Literal . _IntegerLiteral ; import static com . pogofish . jadt . ast . Literal . _NullLiteral ; import static com . pogofish . jadt . ast . Literal . _StringLiteral ; import static com . pogofish . jadt . ast . Optional . _Some ; import static com . pogofish . jadt . ast . PrimitiveType . _BooleanType ; import static com . pogofish . jadt . ast . PrimitiveType . _ByteType ; import static com . pogofish . jadt . ast . PrimitiveType . _CharType ; import static com . pogofish . jadt . ast . PrimitiveType . _DoubleType ; import static com . pogofish . jadt . ast . PrimitiveType . _FloatType ; import static com . pogofish . jadt . ast . PrimitiveType . _IntType ; import static com . pogofish . jadt . ast . PrimitiveType . _LongType ; import static com . pogofish . jadt . ast . PrimitiveType . _ShortType ; import static com . pogofish . jadt . ast . RefType . _ArrayType ; import static com . pogofish . jadt . ast . RefType . _ClassType ; import static com . pogofish . jadt . ast . Type . _Primitive ; import static com . pogofish . jadt . ast . Type . _Ref ; import static com . pogofish . jadt . printer . ASTPrinter . print ; import static com . pogofish . jadt . printer . ASTPrinter . printComments ; import static com . pogofish . jadt . util . Util . list ; import static junit . framework . Assert . assertEquals ; import static org . junit . Assert . assertFalse ; import java . util . List ; import org . junit . Test ; import com . pogofish . jadt . ast . Annotation ; import com . pogofish . jadt . ast . AnnotationElement ; import com . pogofish . jadt . ast . Arg ; import com . pogofish . jadt . ast . ArgModifier ; import com . pogofish . jadt . ast . BlockToken ; import com . pogofish . jadt . ast . Constructor ; import com . pogofish . jadt . ast . DataType ; import com . pogofish . jadt . ast . Doc ; import com . pogofish . jadt . ast . Expression ; import com . pogofish . jadt . ast . Imprt ; import com . pogofish . jadt . ast . JDTagSection ; import com . pogofish . jadt . ast . JDToken ; import com . pogofish . jadt . ast . JavaComment ; import com . pogofish . jadt . ast . Literal ; import com . pogofish . jadt . ast . Optional ; import com . pogofish . jadt . ast . Pkg ; import com . pogofish . jadt . ast . RefType ; import com . pogofish . jadt . util . Util ; public class ASTPrinterTest { private static final BlockToken BLOCKEOL = _BlockEOL ( "n" ) ; private static final BlockToken BLOCKSTART = _BlockWord ( "/*" ) ; private static final BlockToken BLOCKEND = _BlockWord ( "*/" ) ; private static final BlockToken BLOCKONEWS = _BlockWhiteSpace ( " " ) ; private static final JDToken ONEEOL = _JDEOL ( "n" ) ; private static final JDToken ONEWS = _JDWhiteSpace ( " " ) ; private static final List < JDToken > NO_TOKENS = Util . < JDToken > list ( ) ; private static final List < RefType > NO_TYPE_ARGS = Util . < RefType > list ( ) ; private static final List < JDTagSection > NO_TAG_SECTIONS = Util . < JDTagSection > list ( ) ; private static final Optional < RefType > NO_EXTENDS = Optional . < RefType > _None ( ) ; private static final List < RefType > NO_IMPLEMENTS = Util . < RefType > list ( ) ; private static final List < Annotation > NO_ANNOTATIONS = Util . < Annotation > list ( ) ; @ Test public void constructorTest ( ) { final ASTPrinter printer = new ASTPrinter ( ) ; assertFalse ( printer . toString ( ) . isEmpty ( ) ) ; } @ Test public void testPrimitiveTypes ( ) { assertEquals ( "boolean" , print ( _Primitive ( _BooleanType ( ) ) ) ) ; assertEquals ( "byte" , print ( _Primitive ( _ByteType ( ) ) ) ) ; assertEquals ( "char" , print ( _Primitive ( _CharType ( ) ) ) ) ; assertEquals ( "short" , print ( _Primitive ( _ShortType ( ) ) ) ) ; assertEquals ( "int" , print ( _Primitive ( _IntType ( ) ) ) ) ; assertEquals ( "long" , print ( _Primitive ( _LongType ( ) ) ) ) ; assertEquals ( "float" , print ( _Primitive ( _FloatType ( ) ) ) ) ; assertEquals ( "double" , print ( _Primitive ( _DoubleType ( ) ) ) ) ; } @ Test public void testClassTypes ( ) { assertEquals ( "String" , print ( _Ref ( _ClassType ( "String" , Util . < RefType > list ( ) ) ) ) ) ; assertEquals ( "List<String>" , print ( _Ref ( _ClassType ( "List" , list ( _ClassType ( "String" , Util . < RefType > list ( ) ) ) ) ) ) ) ; assertEquals ( "" , print ( _Ref ( _ClassType ( "Map" , list ( _ClassType ( "String" , Util . < RefType > list ( ) ) , _ClassType ( "List" , list ( ( _ClassType ( "List" , list ( _ClassType ( "String" , Util . < RefType > list ( ) ) ) ) ) ) ) ) ) ) ) ) ; } @ Test public void testArrayTypes ( ) { assertEquals ( "boolean[]" , print ( _Ref ( _ArrayType ( _Primitive ( _BooleanType ( ) ) ) ) ) ) ; assertEquals ( "String[][]" , print ( _Ref ( _ArrayType ( _Ref ( _ArrayType ( _Ref ( _ClassType ( "String" , Util . < RefType > list ( ) ) ) ) ) ) ) ) ) ; } @ Test public void testArg ( ) { assertEquals ( "" , print ( new Arg ( Util . < ArgModifier > list ( ) , _Ref ( _ArrayType ( _Primitive ( _BooleanType ( ) ) ) ) , "Foo" ) ) ) ; assertEquals ( "" , print ( new Arg ( list ( _Final ( ) ) , _Ref ( _ArrayType ( _Primitive ( _BooleanType ( ) ) ) ) , "Foo" ) ) ) ; assertEquals ( "" , print ( new Arg ( list ( _Final ( ) , _Final ( ) ) , _Ref ( _ArrayType ( _Primitive ( _BooleanType ( ) ) ) ) , "Foo" ) ) ) ; } @ Test public void testArgModifier ( ) { assertEquals ( "final" , print ( _Final ( ) ) ) ; assertEquals ( "volatile" , print ( _Volatile ( ) ) ) ; assertEquals ( "transient" , print ( _Transient ( ) ) ) ; } @ Test public void testConstructors ( ) { assertEquals ( "Foo" , print ( new Constructor ( NO_COMMENTS , "Foo" , Util . < Arg > list ( ) ) ) ) ; assertEquals ( "" , print ( new Constructor ( NO_COMMENTS , "Foo" , list ( new Arg ( Util . < ArgModifier > list ( ) , _Primitive ( _BooleanType ( ) ) , "hello" ) , new Arg ( Util . < ArgModifier > list ( ) , _Primitive ( _IntType ( ) ) , "World" ) ) ) ) ) ; } @ Test public void testDataTypes ( ) { assertEquals ( "Foo =n" + " Barn" + " | Baz" , print ( new DataType ( NO_COMMENTS , NO_ANNOTATIONS , "Foo" , Util . < String > list ( ) , NO_EXTENDS , NO_IMPLEMENTS , list ( new Constructor ( NO_COMMENTS , "Bar" , Util . < Arg > list ( ) ) , new Constructor ( NO_COMMENTS , "Baz" , Util . < Arg > list ( ) ) ) ) ) ) ; assertEquals ( "" + " Barn" + " | Baz" , print ( new DataType ( NO_COMMENTS , NO_ANNOTATIONS , "Foo" , Util . < String > list ( ) , _Some ( _ClassType ( "FooA" , NO_TYPE_ARGS ) ) , list ( _ClassType ( "FooB" , NO_TYPE_ARGS ) , _ClassType ( "FooC" , NO_TYPE_ARGS ) ) , list ( new Constructor ( NO_COMMENTS , "Bar" , Util . < Arg > list ( ) ) , new Constructor ( NO_COMMENTS , "Baz" , Util . < Arg > list ( ) ) ) ) ) ) ; assertEquals ( "" + " Barn" + " | Baz" , print ( new DataType ( NO_COMMENTS , list ( _Annotation ( "foo" , Optional . < AnnotationElement > _None ( ) ) , _Annotation ( "foo" , _Some ( _ElementValue ( _AnnotationValueAnnotation ( _Annotation ( "bar" , Optional . < AnnotationElement > _None ( ) ) ) ) ) ) ) , "Foo" , Util . < String > list ( ) , NO_EXTENDS , NO_IMPLEMENTS , list ( new Constructor ( NO_COMMENTS , "Bar" , Util . < Arg > list ( ) ) , new Constructor ( NO_COMMENTS , "Baz" , Util . < Arg > list ( ) ) ) ) ) ) ; } @ Test public void testDoc ( ) { assertEquals ( "" , print ( new Doc ( "PrinterTest" , EMPTY_PKG , NO_IMPORTS , Util . < DataType > list ( ) ) ) ) ; assertEquals ( "" , print ( new Doc ( "PrinterTest" , Pkg . _Pkg ( NO_COMMENTS , "some.package" ) , NO_IMPORTS , Util . < DataType > list ( ) ) ) ) ; assertEquals ( "" , print ( new Doc ( "PrinterTest" , EMPTY_PKG , list ( Imprt . _Imprt ( NO_COMMENTS , "number.one" ) , Imprt . _Imprt ( NO_COMMENTS , "number.two" ) ) , Util . < DataType > list ( ) ) ) ) ; assertEquals ( "" , print ( new Doc ( "PrinterTest" , Pkg . _Pkg ( NO_COMMENTS , "some.package" ) , list ( Imprt . _Imprt ( NO_COMMENTS , "number.one" ) , Imprt . _Imprt ( NO_COMMENTS , "number.two" ) ) , Util . < DataType > list ( ) ) ) ) ; assertEquals ( "" , print ( new Doc ( "PrinterTest" , Pkg . _Pkg ( NO_COMMENTS , "some.package" ) , list ( Imprt . _Imprt ( NO_COMMENTS , "number.one" ) , Imprt . _Imprt ( NO_COMMENTS , "number.two" ) ) , list ( new DataType ( NO_COMMENTS , NO_ANNOTATIONS , "Foo" , Util . < String > list ( ) , NO_EXTENDS , NO_IMPLEMENTS , list ( new Constructor ( NO_COMMENTS , "Bar" , Util . < Arg > list ( ) ) ) ) ) ) ) ) ; } @ Test public void testJDGeneralSection ( ) { testComment ( "/** */" , _JavaDocComment ( "/**" , list ( ONEWS ) , NO_TAG_SECTIONS , "*/" ) ) ; testComment ( "/*** **/" , _JavaDocComment ( "/***" , list ( ONEWS ) , NO_TAG_SECTIONS , "**/" ) ) ; testComment ( "/** * */" , _JavaDocComment ( "/**" , list ( ONEWS , _JDAsterisk ( ) , ONEWS ) , NO_TAG_SECTIONS , "*/" ) ) ; testComment ( "/** *n */" , _JavaDocComment ( "/**" , list ( ONEWS , _JDAsterisk ( ) , ONEEOL , ONEWS ) , NO_TAG_SECTIONS , "*/" ) ) ; testComment ( "" , _JavaDocComment ( "/**" , list ( ONEEOL , ONEWS , _JDAsterisk ( ) , ONEWS , _JDWord ( "hello" ) , ONEEOL , ONEWS , _JDAsterisk ( ) , ONEWS , _JDWord ( "world" ) , ONEEOL , ONEWS ) , NO_TAG_SECTIONS , "*/" ) ) ; testComment ( "" , _JavaDocComment ( "/**" , list ( ONEEOL , ONEWS , _JDAsterisk ( ) , ONEWS , _JDWord ( "hello" ) , ONEWS , _JDTag ( "@foo" ) , ONEWS ) , NO_TAG_SECTIONS , "*/" ) ) ; testComment ( "" , _JavaDocComment ( "/**" , list ( ONEEOL , ONEWS , _JDAsterisk ( ) , ONEWS , _JDWord ( "hello" ) , ONEEOL , ONEWS , _JDAsterisk ( ) , ONEWS , _JDAsterisk ( ) , ONEWS , _JDTag ( "@world" ) , ONEEOL , ONEWS ) , NO_TAG_SECTIONS , "*/" ) ) ; } @ Test public void testJDTagSections ( ) { testComment ( "/**@Foo*/" , _JavaDocComment ( "/**" , NO_TOKENS , list ( _JDTagSection ( "@Foo" , list ( _JDTag ( "@Foo" ) ) ) ) , "*/" ) ) ; testComment ( "" , _JavaDocComment ( "/**" , NO_TOKENS , list ( _JDTagSection ( "@Foo" , list ( _JDTag ( "@Foo" ) , ONEWS , _JDWord ( "hello" ) , ONEEOL , ONEWS , _JDAsterisk ( ) , ONEWS , _JDWord ( "world" ) ) ) ) , "*/" ) ) ; testComment ( "" , _JavaDocComment ( "/**" , NO_TOKENS , list ( _JDTagSection ( "@Foo" , list ( _JDTag ( "@Foo" ) , ONEWS , _JDWord ( "hello" ) , ONEEOL , ONEWS , _JDAsterisk ( ) , ONEWS , _JDWord ( "world" ) , ONEEOL ) ) , _JDTagSection ( "@Bar" , list ( _JDTag ( "@Bar" ) , ONEWS ,
1,485
<s> package org . rubypeople . rdt . internal . ui . text ; import org . eclipse . jface . text . BadLocationException ; import org . eclipse . jface . text . IDocument ; import org . eclipse . jface . text . IRegion ; import org . eclipse . jface . text . Region ; public class RubyWordFinder { private static final char [ ] BOUNDARIES = { ' ' , '\n' , '\t' , '\r' , '.' , '(' , ')' , '{' , '}' , '[' , ']' , '=' , '*' , '+' , '-' , '"' , '\'' , '#' , ',' , '|' , '>' , '%' } ; public static IRegion findWord ( IDocument document , int offset ) { int start = - 1 ; int end = - 1 ; try { int pos = offset ; char c ; while ( pos >= 0 ) { c = document . getChar ( pos ) ; if ( ! isRubyWordPart ( c ) ) break ; -- pos ; } start = pos ; pos = offset ; int length = document . getLength ( ) ; while ( pos < length ) { c = document . getChar ( pos ) ; if ( ! isRubyWordPart ( c ) ) break ; ++ pos ; } end = pos ; } catch ( BadLocationException x ) { return null ; } if ( start >= - 1 && end > - 1 ) { if ( start == offset && end == offset ) return new Region ( offset , 0 ) ; else if ( start == offset ) return new Region ( start , end - start ) ; else return new Region ( start + 1 , end - start - 1
1,486
<s> package journal . io . api ; import java . io . DataInput ; import java . io . DataOutput ; import java . io . IOException ; import java . util . concurrent . CountDownLatch ; public final class Location implements Comparable < Location > { static final byte ANY_RECORD_TYPE = 0 ; static final byte USER_RECORD_TYPE = 1 ; static final byte BATCH_CONTROL_RECORD_TYPE = 2 ; static final byte DELETED_RECORD_TYPE = 3 ; static final int NOT_SET = - 1 ; private volatile int dataFileId = NOT_SET ; private volatile int pointer = NOT_SET ; private volatile int size = NOT_SET ; private volatile byte type = ANY_RECORD_TYPE ; private volatile WriteCallback writeCallback = NoWriteCallback . INSTANCE ; private volatile byte [ ] data ; private CountDownLatch latch ; public Location ( ) { } public Location ( Location item ) { this . dataFileId = item . dataFileId ; this . pointer = item . pointer ; this . size = item . size ; this . type = item . type ; }
1,487
<s> package net . bioclipse . opentox . ds . wizards ; import org . eclipse . jface . viewers . IContentProvider ; import org . eclipse . jface . viewers . ITreeContentProvider ; import org . eclipse . jface . viewers . Viewer ; public class ServicesContentProvider implements ITreeContentProvider { @ Override public Object [ ] getElements ( Object inputElement ) { return null ; } @ Override public void dispose ( ) { } @ Override public void inputChanged ( Viewer viewer , Object oldInput , Object newInput ) { } @ Override public Object [ ] getChildren ( Object parentElement ) { return
1,488
<s> package org . rubypeople . rdt . internal . ui . util ; import java . util . Comparator ; import java . util . HashSet ; import java . util . Set ; import java . util . Vector ; import org . eclipse . jface . util . Assert ; import org . eclipse . jface . viewers . ILabelProvider ; import org . eclipse . swt . SWT ; import org . eclipse . swt . events . DisposeEvent ; import org . eclipse . swt . events . DisposeListener ; import org . eclipse . swt . events . SelectionListener ; import org . eclipse . swt . graphics . Image ; import org . eclipse . swt . layout . GridData ; import org . eclipse . swt . layout . GridLayout ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Event ; import org . eclipse . swt . widgets . Table ; import org . eclipse . swt . widgets . TableItem ; public class FilteredList extends Composite { public interface FilterMatcher { void setFilter ( String pattern , boolean ignoreCase , boolean ignoreWildCards ) ; boolean match ( Object element ) ; } private class DefaultFilterMatcher implements FilterMatcher { private StringMatcher fMatcher ; public void setFilter ( String pattern , boolean ignoreCase , boolean ignoreWildCards ) { fMatcher = new StringMatcher ( pattern + '*' , ignoreCase , ignoreWildCards ) ; } public boolean match ( Object element ) { return fMatcher . match ( fRenderer . getText ( element ) ) ; } } private Table fList ; private ILabelProvider fRenderer ; private boolean fMatchEmtpyString = true ; private boolean fIgnoreCase ; private boolean fAllowDuplicates ; private String fFilter = "" ; private TwoArrayQuickSorter fSorter ; private Object [ ] fElements = new Object [ 0 ] ; private Label [ ] fLabels ; private Vector fImages = new Vector ( ) ; private int [ ] fFoldedIndices ; private int fFoldedCount ; private int [ ] fFilteredIndices ; private int fFilteredCount ; private FilterMatcher fFilterMatcher = new DefaultFilterMatcher ( ) ; private Comparator fComparator ; private static class Label { public final String string ; public final Image image ; public Label ( String string , Image image ) { this . string = string ; this . image = image ; } public boolean equals ( Label label ) { if ( label == null ) return false ; return string . equals ( label . string ) && image . equals ( label . image ) ; } } private final class LabelComparator implements Comparator { private boolean fIgnoreCase ; LabelComparator ( boolean ignoreCase ) { fIgnoreCase = ignoreCase ; } public int compare ( Object left , Object right ) { Label leftLabel = ( Label ) left ; Label rightLabel = ( Label ) right ; int value ; if ( fComparator == null ) { value = fIgnoreCase ? leftLabel . string . compareToIgnoreCase ( rightLabel . string ) : leftLabel . string . compareTo ( rightLabel . string ) ; } else { value = fComparator . compare ( leftLabel . string , rightLabel . string ) ; } if ( value != 0 ) return value ; if ( leftLabel . image == null ) { return ( rightLabel . image == null ) ? 0 : - 1 ; } else if ( rightLabel . image == null ) { return + 1 ; } else { return fImages . indexOf ( leftLabel . image ) - fImages . indexOf ( rightLabel . image ) ; } } } public FilteredList ( Composite parent , int style , ILabelProvider renderer , boolean ignoreCase , boolean allowDuplicates , boolean matchEmptyString ) { super ( parent , SWT . NONE ) ; GridLayout layout = new GridLayout ( ) ; layout . marginHeight = 0 ; layout . marginWidth = 0 ; setLayout ( layout ) ; fList = new Table ( this , style ) ; fList . setLayoutData ( new GridData ( GridData . FILL_BOTH ) ) ; fList . addDisposeListener ( new DisposeListener ( ) { public void widgetDisposed ( DisposeEvent e ) { fRenderer . dispose ( ) ; } } ) ; fRenderer = renderer ; fIgnoreCase = ignoreCase ; fSorter = new TwoArrayQuickSorter ( new LabelComparator ( ignoreCase ) ) ; fAllowDuplicates = allowDuplicates ; fMatchEmtpyString = matchEmptyString ; } public void setElements ( Object [ ] elements ) { if ( elements == null ) { fElements = new Object [ 0 ] ; } else { fElements = new Object [ elements . length ] ; System . arraycopy ( elements , 0 , fElements , 0 , elements . length ) ; } int length = fElements . length ; fLabels = new Label [ length ] ; Set imageSet = new HashSet ( ) ; for ( int i = 0 ; i != length ; i ++ ) { String text = fRenderer . getText ( fElements [ i ] ) ; Image image = fRenderer . getImage ( fElements [ i ] ) ; fLabels [ i ] = new Label ( text , image ) ; imageSet . add ( image ) ; } fImages . clear ( ) ; fImages . addAll ( imageSet ) ; fSorter . sort ( fLabels , fElements ) ; fFilteredIndices = new int [ length ] ; fFilteredCount = filter ( ) ; fFoldedIndices = new int [ length ] ; fFoldedCount = fold ( ) ; updateList ( ) ; } public boolean isEmpty ( ) { return ( fElements == null ) || ( fElements . length == 0 ) ; } public void setFilterMatcher ( FilterMatcher filterMatcher ) { Assert . isNotNull ( filterMatcher ) ; fFilterMatcher = filterMatcher ; } public void setComparator ( Comparator comparator ) { Assert . isNotNull ( comparator ) ; fComparator = comparator ; } public void addSelectionListener ( SelectionListener listener ) { fList . addSelectionListener ( listener ) ; } public void removeSelectionListener ( SelectionListener listener ) { fList . removeSelectionListener ( listener ) ; } public void setSelection ( int [ ] selection ) { fList . setSelection ( selection ) ; } public int [ ] getSelectionIndices ( ) { return fList . getSelectionIndices ( ) ; } public int getSelectionIndex ( ) { return fList . getSelectionIndex ( ) ; } public void setSelection ( Object [ ] elements ) { if ( ( elements == null ) || ( fElements == null ) ) return ; int [ ] indices = new int [ elements . length ] ; for ( int i = 0 ; i != elements . length ; i ++ ) { int j ; for ( j = 0 ; j != fFoldedCount ; j ++ ) { int max = ( j == fFoldedCount - 1 ) ? fFilteredCount : fFoldedIndices [ j + 1 ] ; int l ; for ( l = fFoldedIndices [ j ] ; l != max ; l ++ ) { if ( fElements [ fFilteredIndices [ l ] ] . equals ( elements [ i ] ) ) { indices [ i ] = j ; break ; } } if ( l != max ) break ; } if ( j == fFoldedCount ) indices [ i ] = 0 ; } fList . setSelection ( indices ) ; } public Object [ ] getSelection ( ) { if ( fList . isDisposed ( ) || ( fList . getSelectionCount ( ) == 0 ) ) return new Object [ 0 ] ; int [ ] indices = fList . getSelectionIndices ( ) ; Object [ ] elements = new Object [ indices . length ] ; for ( int i = 0 ; i != indices . length ; i ++ ) elements [ i ] = fElements [ fFilteredIndices [ fFoldedIndices [ indices [ i ] ] ] ] ; return elements ; } public void setFilter ( String filter ) { fFilter = ( filter == null ) ? "" : filter ; fFilteredCount = filter ( ) ; fFoldedCount = fold ( ) ; updateList ( ) ; } public String getFilter ( ) { return fFilter ; } public Object [ ] getFoldedElements ( int index ) { if ( ( index < 0 ) || ( index >= fFoldedCount ) ) return null ; int start = fFoldedIndices [ index ] ; int count = ( index == fFoldedCount - 1 ) ? fFilteredCount - start : fFoldedIndices [ index + 1 ] -
1,489
<s> package org . rubypeople . rdt . internal . launching ; import java . io . BufferedReader ; import java . io . IOException ; import java . io . InputStream ; import java . io . InputStreamReader ; import java . io . OutputStream ; import java . io . PrintWriter ; public class EvaluateRubyProcessOutput implements Runnable { private byte [ ] inBuffer = new byte [ 1024 ] ; private byte [ ] errBuffer = new byte [ 1024 ] ; private Process process ; private InputStream pErrorStream ; private InputStream pInputStream ; private OutputStream pOutputStream ; private PrintWriter outputWriter ; private Thread inReadThread ; private Thread errReadThread ; public EvaluateRubyProcessOutput ( Process p ) { process = p ; pErrorStream = process . getErrorStream (
1,490
<s> package org . oddjob . jobs ; import java . io . Serializable ; import org . apache . log4j . Logger ; import org . oddjob . arooa . ArooaSession ; import org . oddjob . arooa . ArooaValue ; import org . oddjob . arooa . convert . ArooaConverter ; import org . oddjob . arooa . convert . ConversionFailedException ; import org . oddjob . arooa . convert . NoConversionAvailableException ; import org . oddjob . arooa . deploy . annotations . ArooaAttribute ; import org . oddjob . arooa . deploy . annotations . ArooaHidden ; import org . oddjob . arooa . life . ArooaSessionAware ; public class CheckJob implements Runnable , Serializable , ArooaSessionAware { private static final long serialVersionUID = 2009092700L ; private static final Logger logger = Logger . getLogger ( CheckJob . class ) ; private int result ; private transient boolean null_ ; private transient Object value ; private transient ArooaValue eq ; private transient ArooaValue ne ; private transient ArooaValue lt ; private transient ArooaValue le ; private transient ArooaValue gt ; private transient ArooaValue ge ; private transient ArooaSession session ; private transient String name ; @ SuppressWarnings ( "unchecked" ) public void run ( ) { result = 0 ; Check [ ] checks = new Check [ ] { new Check ( ) { @ Override public boolean required ( ) { return true ; } @ Override public boolean check ( ) { return ! ( value == null ^ null_ ) ; } @ Override public String toString ( ) { return "value [" + value + "] should" + ( null_ ? "" : " not" ) + " be null" ; } } , new Check ( ) { @ Override public boolean required ( ) { return eq != null ; } @ Override public boolean check ( ) { return value != null && value . equals ( convert ( eq ) ) ; } @ Override public String toString ( ) { return "[" + value + "" + eq + "]" ; } } , new Check ( ) { @ Override public boolean required ( ) { return ne != null ; } @ Override public boolean check ( ) { return value != null && ! value . equals ( convert ( ne ) ) ; } @ Override public String toString ( ) { return "[" + value + "" + ne + "]" ; } } , new Check ( ) { @ Override public boolean required ( ) { return lt != null ; } @ SuppressWarnings ( "rawtypes" ) @ Override public boolean check ( ) { return value != null && ( ( Comparable ) value ) . compareTo ( convert ( lt ) ) < 0 ; } @ Override public String toString ( ) { return "[" + value + "" + lt + "]" ; } } , new Check ( ) { @ Override public boolean required ( ) { return le != null ; } @ Override @ SuppressWarnings ( "rawtypes" ) public boolean check ( ) { return value != null && ( ( Comparable ) value ) . compareTo ( convert ( le ) ) <= 0 ; } @ Override public String toString ( ) { return "[" + value + "" + le + "]" ; } } , new Check ( ) { @ Override public boolean required ( ) { return gt != null ; } @ Override @ SuppressWarnings ( "rawtypes" ) public boolean check ( ) { return value != null && ( ( Comparable ) value ) . compareTo ( convert ( gt ) ) > 0 ; } @ Override public String toString ( ) { return "[" + value + "" + gt + "]" ; } } ,
1,491
<s> package com . asakusafw . testdriver . core ; import java . io . Serializable ; import java . util . ArrayList ; import java . util . Arrays ; import java . util . Collections ; import java . util . Iterator ; import java . util . List ; public final class PropertyName implements Comparable < PropertyName > , Serializable { private static final long serialVersionUID = - 362878710044414915L ; private final List < String > originalWords ; private final List < String > normalized ; private PropertyName ( List < String > words ) { this . originalWords = words ; this . normalized = normalize ( words ) ; } private static List < String > normalize ( List < String > words ) { assert words != null ; List < String > results = new ArrayList < String > ( words . size ( ) ) ; Iterator < String > iter = words . iterator ( ) ; assert iter . hasNext ( ) ; String last = iter . next ( ) ; while ( iter . hasNext ( ) ) { String next = iter . next ( ) ; assert next . isEmpty ( ) == false ; char c = next . charAt ( 0 ) ; if ( '0' <= c && c <= '9' ) { last += next ; } else { results . add ( last ) ; last = next ; } } results . add ( last ) ; return Collections
1,492
<s> package com . asakusafw . compiler . directio . testing . io ; import java . io . IOException ; import com . asakusafw . compiler . directio . testing . model . Line1 ; import com . asakusafw . runtime . io . ModelOutput ; import com . asakusafw . runtime . io . RecordEmitter ; public final class Line1Output implements ModelOutput < Line1 > {
1,493
<s> package net . sf . sveditor . core . db . stmt ; import java . util . ArrayList ; import java . util . List ; import net . sf . sveditor . core . db . SVDBItemType ; public class SVDBDefParamStmt extends SVDBStmt { public List < SVDBDefParamItem > fParamAssignList ; public SVDBDefParamStmt
1,494
<s> package com . asakusafw . bulkloader . importer ; import java . io . File ; import java . io . IOException ; import java . sql . Connection ; import java . sql . PreparedStatement ; import java . sql . SQLException ; import java . sql . Timestamp ; import java . text . MessageFormat ; import java . util . Calendar ; import java . util . List ; import com . asakusafw . bulkloader . bean . ImportBean ; import com . asakusafw . bulkloader . bean . ImportTargetTableBean ; import com . asakusafw . bulkloader . common . Constants ; import com . asakusafw . bulkloader . common . DBAccessUtil ; import com . asakusafw . bulkloader . common . DBConnection ; import com . asakusafw . bulkloader . common . FileNameUtil ; import com . asakusafw . bulkloader . common . ImportTableLockType ; import com . asakusafw . bulkloader . exception . BulkLoaderSystemException ; import com . asakusafw . bulkloader . log . Log ; import com . asakusafw . thundergate . runtime . cache . ThunderGateCacheSupport ; public class ImportFileCreate { static final Log LOG = new Log ( ImportFileCreate . class ) ; private static final String [ ] EMPTY = new String [ 0 ] ; public boolean createImportFile ( ImportBean bean , String jobflowSid ) { Connection conn = null ; try { conn = DBConnection . getConnection ( ) ; List < String > list = bean . getImportTargetTableList ( ) ; for ( String tableName : list ) { ImportTargetTableBean targetTable = bean . getTargetTable ( tableName ) ; ImportTableLockType lockType = targetTable . getLockType ( ) ; File importFile = FileNameUtil . createImportFilePath ( bean . getTargetName ( ) , bean . getJobflowId ( ) , bean . getExecutionId ( ) , tableName ) ; LOG . info ( "" , tableName , lockType , importFile . getAbsolutePath ( ) ) ; if ( importFile . exists ( ) ) { if ( ! importFile . delete ( ) ) { throw new BulkLoaderSystemException ( getClass ( ) , "" , importFile . getName ( ) ) ; } } if ( ImportTableLockType . TABLE . equals ( lockType
1,495
<s> package com . asakusafw . vocabulary . batch ; import java . text . MessageFormat ; import com . asakusafw . vocabulary . flow . FlowDescription ; import com . asakusafw . vocabulary . flow . JobFlow ; public class JobFlowWorkDescription extends WorkDescription { private String name ; private Class < ? extends FlowDescription > flowClass ; public JobFlowWorkDescription ( Class < ? extends FlowDescription > flowClass ) { if ( flowClass == null ) { throw new IllegalArgumentException ( "" ) ; } if ( FlowDescription . isJobFlow ( flowClass ) == false ) { throw new IllegalArgumentException ( MessageFormat . format ( "" , flowClass . getName ( ) , JobFlow . class . getSimpleName ( ) ) ) ; } this . name = FlowDescription . getJobFlowName ( flowClass ) ; if ( isValidName ( name ) == false ) { throw new IllegalArgumentException ( MessageFormat . format ( "" , name , flowClass . getName ( ) ) ) ; } this . flowClass = flowClass ; } @ Override public String getName ( ) { return name ; } public Class < ? extends FlowDescription > getFlowClass ( ) { return flowClass ; } @ Override public int hashCode ( ) { final int prime = 31 ; int result = 1 ; result = prime *
1,496
<s> package com . asakusafw . testdriver ; import static org . junit . Assert . * ; import java . io . File ; import java . io . IOException ; import java . util . Arrays ; import java . util . LinkedList ; import java . util . List ; import org . apache . commons . io . FileUtils ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import com . asakusafw . compiler . flow . JobFlowClass ; import com . asakusafw . compiler . flow . JobFlowDriver ; import com . asakusafw . compiler . flow . Location ; import com . asakusafw . compiler . testing . DirectFlowCompiler ; import com . asakusafw . compiler . testing . JobflowInfo ; import com . asakusafw . testdriver . core . VerifyContext ; import com . asakusafw . vocabulary . flow . FlowDescription ; import com . asakusafw . vocabulary . flow . graph . FlowGraph ; public class JobFlowTester extends TestDriverBase { static final Logger LOG = LoggerFactory . getLogger ( JobFlowTester . class ) ; protected List < JobFlowDriverInput < ? > > inputs = new LinkedList < JobFlowDriverInput < ? > > ( ) ; protected List < JobFlowDriverOutput < ? > > outputs = new LinkedList < JobFlowDriverOutput < ? > > ( ) ; public JobFlowTester ( Class < ? > callerClass ) { super ( callerClass ) ; } public < T > JobFlowDriverInput < T > input ( String name , Class
1,497
<s> package de . fuberlin . wiwiss . d2rq . parser ; import junit . framework . TestCase ; public class URITest extends TestCase { public void testAbsoluteHTTPURIIsNotChanged ( ) { assertEquals ( "" , MapParser . absolutizeURI ( "" ) ) ; } public void testAbsoluteFileURIIsNotChanged ( ) { assertEquals ( "" , MapParser . absolutizeURI ( "" ) ) ; } public void testRelativeFileURIIsAbsolutized ( ) { String uri = MapParser . absolutizeURI ( "foo/bar" ) ; assertTrue ( uri . startsWith ( "file://" ) ) ; assertTrue ( uri . endsWith ( "/foo/bar" ) ) ; } public void testRootlessFileURIIsAbsolutized ( ) { String uri = MapParser
1,498
<s> package org . rubypeople . rdt . ui . actions ; import org . eclipse . jface . dialogs . ErrorDialog ; import org . eclipse . jface . text . ITextSelection ; import org . eclipse . jface . viewers . IStructuredSelection ; import org . eclipse . ui . IWorkbenchSite ; import org . eclipse . ui . PlatformUI ; import org . rubypeople . rdt . core . IOpenable ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . RubyModelException ; import org . rubypeople . rdt . internal . ui . IRubyHelpContextIds ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; import org . rubypeople . rdt . internal . ui . actions . ActionMessages ; import org . rubypeople . rdt . internal . ui . actions . SelectionConverter ; import org . rubypeople . rdt . internal . ui . packageview . PackageExplorerPart ; import org . rubypeople . rdt . internal . ui . rubyeditor . RubyEditor ; public class ShowInRubyExplorerViewAction extends SelectionDispatchAction { private RubyEditor fEditor ; public ShowInRubyExplorerViewAction ( IWorkbenchSite site ) { super ( site ) ; setText ( ActionMessages . ShowInPackageViewAction_label ) ; setDescription ( ActionMessages . ShowInPackageViewAction_description ) ; setToolTipText ( ActionMessages . ShowInPackageViewAction_tooltip ) ; PlatformUI . getWorkbench ( ) . getHelpSystem ( ) . setHelp ( this , IRubyHelpContextIds . SHOW_IN_PACKAGEVIEW_ACTION ) ; } public ShowInRubyExplorerViewAction ( RubyEditor editor ) { this ( editor . getEditorSite ( ) ) ; fEditor = editor ; setEnabled ( SelectionConverter . canOperateOn ( fEditor ) ) ; } public void selectionChanged ( ITextSelection selection ) { } public void selectionChanged ( IStructuredSelection selection ) { setEnabled ( checkEnabled ( selection ) ) ; } private boolean checkEnabled ( IStructuredSelection selection ) { if ( selection . size ( ) != 1 ) return false ; return selection
1,499
<s> package com . asakusafw . compiler . flow ; import java . io . IOException ; import java . util . Collections ; import java . util . List ; import java . util . Map ; import java . util . Set ; import org . apache . hadoop . mapreduce . InputFormat ; import org . apache . hadoop . mapreduce . OutputFormat ; import com . asakusafw . compiler . common . Precondition ; import com . asakusafw . compiler . flow . jobflow . CompiledStage ; import com . asakusafw . utils . collections . Maps ; import com . asakusafw . vocabulary . external . ExporterDescription ; import com . asakusafw . vocabulary . external . ImporterDescription ; import com . asakusafw . vocabulary . flow . graph . InputDescription ; import com . asakusafw . vocabulary . flow . graph . OutputDescription ; public abstract class ExternalIoDescriptionProcessor extends FlowCompilingEnvironment . Initialized { public abstract Class < ? extends ImporterDescription > getImporterDescriptionType ( ) ; public abstract Class < ? extends ExporterDescription > getExporterDescriptionType ( ) ; public abstract boolean validate ( List < InputDescription > inputs , List < OutputDescription > outputs ) ; public abstract SourceInfo getInputInfo ( InputDescription description ) ; public List < CompiledStage > emitPrologue ( IoContext context ) throws IOException { return Collections . emptyList ( ) ; } public List < CompiledStage > emitEpilogue ( IoContext context ) throws IOException { return Collections . emptyList ( ) ; } public void emitPackage ( IoContext context ) throws IOException { return ; } public ExternalIoCommandProvider createCommandProvider ( IoContext context ) { Precondition . checkMustNotBeNull ( context , "context" ) ; return new ExternalIoCommandProvider ( ) ; } public static class IoContext { private final List < Input > inputs ; private final List < Output > outputs ; public IoContext ( List < Input > inputs , List < Output > outputs ) { this . inputs = inputs ; this . outputs = outputs ; } public List < Input > getInputs ( ) { return inputs ; } public List < Output > getOutputs ( ) { return outputs ; } } public static class Output { private final OutputDescription description ; private final List < SourceInfo >