id
int32
0
3k
input
stringlengths
43
33.8k
gt
stringclasses
1 value
1,500
<s> package org . rubypeople . rdt . internal . debug . core . commands ; import java . io . IOException ; import org . rubypeople . rdt . internal . debug . core . DebuggerNotFoundException ; import org . rubypeople . rdt . internal . debug . core . parsing . AbstractReadStrategy ; import org . rubypeople . rdt . internal . debug . core . parsing . XmlStreamReader ; public abstract class AbstractCommand { private String command ; private boolean isControl ; private XmlStreamReader resultReader ; protected AbstractCommand ( String command , boolean isControl ) { this . command = command ; this . isControl = isControl ; } public void execute ( AbstractDebuggerConnection debuggerConnection ) throws DebuggerNotFoundException , IOException { AbstractReadStrategy readStrategy = debuggerConnection . sendCommand ( this ) ; resultReader = createResultReader ( readStrategy ) ; } protected abstract XmlStreamReader createResultReader ( AbstractReadStrategy readStrategy ) ; public XmlStreamReader getResultReader ( ) { if ( !
1,501
<s> package edsdk ; import com . sun . jna . NativeLong ; import com . sun . jna . Structure ; public class EdsVolumeInfo extends Structure { public NativeLong storageType ; public int access ; public long maxCapacity ; public long freeSpaceInBytes ; public byte [ ] szVolumeLabel = new byte [ ( 256 ) ] ; public EdsVolumeInfo ( ) { super ( ) ; initFieldOrder ( ) ; } protected void initFieldOrder ( ) { setFieldOrder ( new java . lang . String [ ] {
1,502
<s> package com . asakusafw . testtools ; import java . util . HashMap ; import java . util . Map ; public enum RowMatchingCondition { EXACT ( "-UNK-" ) , PARTIAL ( "-UNK-" ) , NONE ( "-UNK-" ) ; private String japaneseName ; private RowMatchingCondition ( String japaneseName ) { this . japaneseName = japaneseName ; } public String getJapaneseName ( ) { return japaneseName ; } private static Map < String , RowMatchingCondition > japaneseNameMap = new HashMap < String , RowMatchingCondition > ( ) ; static { for ( RowMatchingCondition conditon : RowMatchingCondition . values ( ) ) { String key = conditon . getJapaneseName ( ) ; if ( japaneseNameMap
1,503
<s> package com . asakusafw . yaess . basic ; import java . io . IOException ; import java . util . Collections ; import java . util . HashMap ; import java . util . Map ; import org . junit . Test ; import com . asakusafw . yaess . core . ExecutionContext ; import com . asakusafw . yaess . core . ExecutionMonitor ; import com . asakusafw . yaess . core . ExecutionMonitorProvider ; import com . asakusafw . yaess . core . ExecutionPhase ; import com . asakusafw . yaess . core . ProfileContext ; import com . asakusafw . yaess . core . ServiceProfile ; public class BasicMonitorProviderTest { private static final Map < String , String > EMPTY = Collections . < String , String > emptyMap ( ) ; private static final ExecutionContext CONTEXT = new ExecutionContext ( "b" , "f" , "e" , ExecutionPhase . MAIN , EMPTY ) ; @ Test public void
1,504
<s> package com . pogofish . jadt . source ; import static com . pogofish . jadt . util . TestUtil . assertEqualsBarringFileSeparators ; import static org . junit . Assert . assertEquals ; import static org . junit . Assert . fail ; import java . io . BufferedReader ; import java . io . BufferedWriter ; import java . io . File ; import java . io . FileOutputStream ; import java . io . IOException ; import java . io . OutputStreamWriter ; import java . util . ArrayList ; import java . util . Collections ; import java . util . Comparator ; import java . util . List ; import org . junit . Test ; import com . pogofish . jadt . util . TestUtil ; public class FileSourceFactoryTest { private static final class SourceComparator implements Comparator < Source > { @ Override public int compare ( Source source1 , Source source2 ) { return source1 . getSrcInfo ( ) . compareTo ( source2 . getSrcInfo ( ) ) ; } } @ Test public void testValidFile ( ) throws IOException { final File temp = File . createTempFile ( "testFactory" , "java" ) ; try { final BufferedWriter writer = new BufferedWriter ( new OutputStreamWriter ( new FileOutputStream ( temp ) , "UTF-8" ) ) ; try { writer . write ( "hello" ) ; } finally { writer . close ( ) ; } final SourceFactory factory = new FileSourceFactory ( ) ; final List < ? extends Source > sources = factory . createSources ( temp . getAbsolutePath ( ) ) ; assertEquals ( 1 , sources . size ( ) ) ; final Source source = sources . get ( 0 ) ; final BufferedReader reader = source . createReader ( ) ; try { assertEquals ( "hello" , reader . readLine ( ) ) ; assertEquals ( temp . getAbsolutePath ( ) , source . getSrcInfo ( ) ) ; } finally { reader . close ( ) ; } } finally { temp . delete ( ) ; } } @ Test public void testInValidFile ( ) throws IOException { final File temp = File . createTempFile ( "testFactory" , "java" ) ; temp . delete ( ) ; final SourceFactory factory = new FileSourceFactory ( ) ; final List < ? extends Source > sources = factory . createSources ( temp . getAbsolutePath ( ) ) ; final Source source = sources . get ( 0 ) ; try { final BufferedReader reader = source . createReader ( ) ; try { assertEquals ( "hello" , reader . readLine ( ) ) ; assertEquals ( temp . getAbsolutePath ( ) , source . getSrcInfo ( ) ) ; } finally { reader . close ( ) ; } fail ( "" ) ; } catch ( RuntimeException e ) { } } @ Test public void testDir ( ) throws IOException { final File tempDir = TestUtil . createTmpDir ( ) ; try { final List < File > tempFiles = new ArrayList < File > ( ) ; try { for ( int i = 0 ; i < 5 ; i ++ ) { tempFiles . add ( createTempFile ( tempDir , i ) ) ; } final SourceFactory factory = new FileSourceFactory ( ) ; final List < ? extends Source > sources = factory . createSources ( tempDir . getAbsolutePath ( ) ) ; assertEquals ( 5 , sources . size ( ) ) ; Collections . sort ( sources , new SourceComparator ( ) ) ; for ( int i = 0 ; i < 5 ; i ++ ) { checkSource ( i , tempDir , sources . get ( i ) ) ; } } finally { for (
1,505
<s> package net . ggtools . grand . ui . actions ; import net . ggtools . grand . filters . GraphFilter ; import net . ggtools . grand . filters . ToNodeFilter ; import net . ggtools . grand . ui . graph . GraphControlerListener ; import net . ggtools . grand . ui . graph . GraphControlerProvider ; import net . ggtools . grand . ui . graph . GraphListener ; import org . apache . commons . logging . Log ;
1,506
<s> package br . com . caelum . vraptor . dash . monitor ; import java . lang . reflect . Field ; import java . util . EnumSet ; import net . vidageek . mirror . dsl . Mirror ; import br . com . caelum . vraptor . http . route . FixedMethodStrategy ; import br . com . caelum . vraptor . http . route . Route ; import br . com . caelum . vraptor . resource . HttpMethod ; import br . com . caelum . vraptor . resource . ResourceMethod ; public class FreemarkerRoute { private final Route route ; public FreemarkerRoute ( Route route ) { this . route = route ; } public String getAllowedMethods ( ) { StringBuilder builder = new StringBuilder ( ) ; builder . append ( "[" ) ; if (
1,507
<s> package com . asakusafw . utils . java . parser . javadoc ; import java . util . ArrayList ; import java . util . Collections ; import java . util . EnumSet ; import java . util . List ; import java . util . Set ; import com . asakusafw . utils . java . internal . parser . javadoc . ir . IrDocBasicType ; import com . asakusafw . utils . java . internal . parser . javadoc . ir . IrDocBlock ; import com . asakusafw . utils . java . internal . parser . javadoc . ir . IrDocField ; import com . asakusafw . utils . java . internal . parser . javadoc . ir . IrDocFragment ; import com . asakusafw . utils . java . internal . parser . javadoc . ir . IrDocMethod ; import com . asakusafw . utils . java . internal . parser . javadoc . ir . IrDocName ; import com . asakusafw . utils . java . internal . parser . javadoc . ir . IrDocNamedType ; import com . asakusafw . utils . java . internal . parser . javadoc . ir . IrDocSimpleName ; import com . asakusafw . utils . java . internal . parser . javadoc . ir . IrDocText ; import com . asakusafw . utils . java . internal . parser . javadoc . ir . IrDocType ; import com . asakusafw . utils . java . internal . parser . javadoc . ir . JavadocTokenKind ; public abstract class JavadocBlockParser extends JavadocBaseParser { private static final Set < JavadocTokenKind > S_FOLLOW ; static { Set < JavadocTokenKind > set = EnumSet . noneOf ( JavadocTokenKind . class ) ; set . add ( JavadocTokenKind . WHITE_SPACES ) ; set . add ( JavadocTokenKind . LINE_BREAK ) ; set . add ( JavadocTokenKind . EOF ) ; S_FOLLOW = Collections . unmodifiableSet ( set ) ; } protected JavadocBlockParser ( ) { this ( Collections . < JavadocBlockParser > emptyList ( ) ) ; } protected JavadocBlockParser ( List < ? extends JavadocBlockParser > blockParsers ) { super ( blockParsers ) ; } public abstract boolean canAccept ( String tag ) ; public abstract IrDocBlock parse ( String tag , JavadocScanner scanner ) throws JavadocParseException ; public IrDocBlock newBlock ( String tag , List < ? extends IrDocFragment > fragments ) { if ( fragments == null ) { throw new IllegalArgumentException ( "fragments" ) ; } IrDocBlock block = new IrDocBlock ( ) ; block . setTag ( tag ) ; block . setFragments ( fragments ) ; return block ; } public List < IrDocFragment > fetchRestFragments ( JavadocScanner scanner ) throws JavadocParseException { int index = scanner . getIndex ( ) ; try { ArrayList < IrDocFragment > fragments = new ArrayList < IrDocFragment > ( ) ; while ( true ) { JavadocTokenKind la = scanner . lookahead ( 0 ) . getKind ( ) ; if ( la == JavadocTokenKind . LINE_BREAK ) { int count = JavadocScannerUtil . countUntilNextPrintable ( scanner , 0 ) ; scanner . consume ( count ) ; }
1,508
<s> package com . asakusafw . runtime . directio . hadoop ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . util . ArrayList ; import java . util . Collections ; import java . util . Comparator ; import java . util . List ; import org . junit . Test ; import com . asakusafw . runtime . directio . DirectInputFragment ; public class FragmentComputerTest { @ Test public void simple ( ) { BlockBuilder builder = new BlockBuilder ( ) ; builder . add ( 100 , "a" ) ; List < DirectInputFragment > results = builder . compute ( 50 , 100 , true , true ) ; assertThat ( results . size ( ) , is ( 1 ) ) ; assertThat ( find ( results , 0 ) . getOwnerNodeNames ( ) , hasItem ( "a" ) ) ; } @ Test public void empty ( ) { BlockBuilder builder = new BlockBuilder ( ) ; List < DirectInputFragment > results = builder . compute ( 50 , 100 , true , true ) ; assertThat ( results . size ( ) , is ( 1 ) ) ; } @ Test public void no_info ( ) { BlockBuilder builder = new BlockBuilder ( ) ; builder . seek ( 1000 ) ; List < DirectInputFragment > results = builder . compute ( 50 , 100 , true , true ) ; assertThat ( results . size ( ) , is ( 10 ) ) ; } @ Test public void sparse ( ) { BlockBuilder builder = new BlockBuilder ( ) ; builder . seek ( 5 ) ; builder . add ( 10 , "a" ) ; builder . seek ( 5 ) ; builder . add ( 10 , "a" ) ; builder . seek ( 5 ) ; builder . add ( 10 , "a" ) ; builder . seek ( 5 ) ; builder . add ( 10 , "a" ) ; builder . seek ( 5 ) ; builder . add ( 10 , "a" ) ; builder . seek ( 5 ) ; List < DirectInputFragment > results = builder . compute ( 50 , 100 , true , true ) ; assertThat ( results . size ( ) , is ( 1 ) ) ; assertThat ( find ( results , 0 ) . getOwnerNodeNames ( ) , hasItem ( "a" ) ) ; } @ Test public void no_fragmentation ( ) { BlockBuilder builder = new BlockBuilder ( ) ; builder . add ( 10 , "a" ) ; builder . add ( 10 , "b" ) ; builder . add ( 10 , "c" ) ; List < DirectInputFragment > results = builder . compute ( - 1 , 100 , true , true ) ; assertThat ( results . size ( ) , is ( 1 ) ) ; } @ Test public void too_small ( ) { BlockBuilder builder = new BlockBuilder ( ) ; builder . add ( 10 , "a" ) ; builder . add ( 10 , "b" ) ; builder . add ( 10 , "c" ) ; List < DirectInputFragment > results = builder . compute ( 100 , 200 , true , true ) ; assertThat ( results . size ( ) , is ( 1 ) ) ; } @ Test public void head_too_small ( ) { BlockBuilder builder = new BlockBuilder ( ) ; builder . add ( 10 , "b" ) ; builder . add ( 10 , "c" ) ; builder . add ( 10 , "d" ) ; builder . add ( 100 , "a" ) ; List < DirectInputFragment > results = builder . compute ( 50 , 200 , true , true ) ; assertThat ( results . size ( ) , is ( 1 ) ) ; assertThat ( results . get ( 0 ) . getOwnerNodeNames ( ) , hasItem ( "a" ) ) ; } @ Test public void tail_too_small ( ) { BlockBuilder builder = new BlockBuilder ( ) ; builder . add ( 100 , "a" ) ; builder . add ( 10 , "b" ) ; builder . add ( 10 , "c" ) ; builder . add ( 10 , "d" ) ; List < DirectInputFragment > results = builder . compute ( 50 , 200 , true , true ) ; assertThat ( results . size ( ) , is ( 1 ) ) ; assertThat ( results . get ( 0 ) . getOwnerNodeNames ( ) , hasItem ( "a" ) ) ; } @ Test public void edge_too_small ( ) { BlockBuilder builder = new BlockBuilder ( ) ; builder . add ( 10 , "b" ) ; builder . add ( 10 , "c" ) ; builder . add ( 400 , "a" ) ; builder . add ( 10 , "b" ) ; builder
1,509
<s> package org . rubypeople . rdt . ui . actions ; import java . util . Iterator ; import org . eclipse . jface . action . IAction ; import org . eclipse . jface . action . IMenuManager ; import org . eclipse . jface . action . MenuManager ; import org . eclipse . jface . action . Separator ; import org . eclipse . jface . util . Assert ; import org . eclipse . jface . viewers . ISelection ; import org . eclipse . jface . viewers . ISelectionChangedListener ; import org . eclipse . jface . viewers . ISelectionProvider ; import org . eclipse . search . ui . IContextMenuConstants ; import org . eclipse . ui . IActionBars ; import org . eclipse . ui . IWorkbenchSite ; import org . eclipse . ui . IWorkingSet ; import org . eclipse . ui . actions . ActionGroup ; import org . eclipse . ui . texteditor . ITextEditorActionConstants ; import org . rubypeople . rdt . internal . ui . rubyeditor . RubyEditor ; import org . rubypeople . rdt . internal . ui . search . SearchMessages ; import org . rubypeople . rdt . internal . ui . search . SearchUtil ; public class ReferencesSearchGroup extends ActionGroup { private static final String MENU_TEXT = SearchMessages . group_references ; private IWorkbenchSite fSite ; private RubyEditor fEditor ; private IActionBars fActionBars ; private String fGroupId ; private FindReferencesAction fFindReferencesAction ; private FindReferencesInProjectAction fFindReferencesInProjectAction ; private FindReferencesInHierarchyAction fFindReferencesInHierarchyAction ; private FindReferencesInWorkingSetAction fFindReferencesInWorkingSetAction ; public ReferencesSearchGroup ( IWorkbenchSite site ) { fSite = site ; fGroupId = IContextMenuConstants . GROUP_SEARCH ; fFindReferencesAction = new FindReferencesAction ( site ) ; fFindReferencesAction . setActionDefinitionId ( IRubyEditorActionDefinitionIds . SEARCH_REFERENCES_IN_WORKSPACE ) ; fFindReferencesInProjectAction = new FindReferencesInProjectAction ( site ) ; fFindReferencesInProjectAction . setActionDefinitionId ( IRubyEditorActionDefinitionIds . SEARCH_REFERENCES_IN_PROJECT ) ; fFindReferencesInHierarchyAction = new FindReferencesInHierarchyAction ( site ) ; fFindReferencesInHierarchyAction . setActionDefinitionId ( IRubyEditorActionDefinitionIds . SEARCH_REFERENCES_IN_HIERARCHY ) ; fFindReferencesInWorkingSetAction = new FindReferencesInWorkingSetAction ( site ) ; fFindReferencesInWorkingSetAction . setActionDefinitionId ( IRubyEditorActionDefinitionIds . SEARCH_REFERENCES_IN_WORKING_SET ) ; ISelectionProvider provider = fSite . getSelectionProvider ( ) ; ISelection selection = provider . getSelection ( ) ; registerAction ( fFindReferencesAction , provider , selection ) ; registerAction ( fFindReferencesInProjectAction , provider , selection ) ; registerAction ( fFindReferencesInHierarchyAction , provider , selection ) ; registerAction ( fFindReferencesInWorkingSetAction , provider , selection ) ; } public ReferencesSearchGroup ( RubyEditor editor ) { Assert . isNotNull ( editor ) ; fEditor = editor ; fSite = fEditor . getSite ( ) ; fGroupId = ITextEditorActionConstants . GROUP_FIND ; fFindReferencesAction = new FindReferencesAction ( editor ) ; fFindReferencesAction . setActionDefinitionId ( IRubyEditorActionDefinitionIds . SEARCH_REFERENCES_IN_WORKSPACE ) ; fEditor . setAction ( "" , fFindReferencesAction ) ; fFindReferencesInProjectAction = new FindReferencesInProjectAction ( fEditor ) ; fFindReferencesInProjectAction . setActionDefinitionId ( IRubyEditorActionDefinitionIds . SEARCH_REFERENCES_IN_PROJECT ) ; fEditor . setAction ( "" , fFindReferencesInProjectAction ) ; fFindReferencesInHierarchyAction = new FindReferencesInHierarchyAction ( fEditor ) ; fFindReferencesInHierarchyAction . setActionDefinitionId ( IRubyEditorActionDefinitionIds . SEARCH_REFERENCES_IN_HIERARCHY ) ; fEditor . setAction ( "" , fFindReferencesInHierarchyAction ) ; fFindReferencesInWorkingSetAction = new FindReferencesInWorkingSetAction ( fEditor ) ; fFindReferencesInWorkingSetAction . setActionDefinitionId ( IRubyEditorActionDefinitionIds . SEARCH_REFERENCES_IN_WORKING_SET ) ; fEditor . setAction ( "" , fFindReferencesInWorkingSetAction ) ; } private void registerAction ( SelectionDispatchAction action , ISelectionProvider provider , ISelection selection ) { action . update ( selection ) ; provider . addSelectionChangedListener ( action ) ; } protected String getName ( ) { return MENU_TEXT ; } public void fillActionBars ( IActionBars actionBars ) { Assert . isNotNull ( actionBars ) ; super . fillActionBars ( actionBars ) ;
1,510
<s> package com . lmax . disruptor . support ; import java . util . concurrent . BlockingQueue ; public final class FizzBuzzQueueConsumer implements Runnable { private final FizzBuzzStep fizzBuzzStep ; private final BlockingQueue < Long > fizzInputQueue ; private final BlockingQueue < Long > buzzInputQueue ; private final BlockingQueue < Boolean > fizzOutputQueue ; private final BlockingQueue < Boolean > buzzOutputQueue ; private volatile boolean running ; private volatile long sequence ; private long fizzBuzzCounter = 0 ; public FizzBuzzQueueConsumer ( final FizzBuzzStep fizzBuzzStep , final BlockingQueue < Long > fizzInputQueue , final BlockingQueue < Long > buzzInputQueue , final BlockingQueue < Boolean > fizzOutputQueue , final BlockingQueue < Boolean > buzzOutputQueue ) { this . fizzBuzzStep = fizzBuzzStep ; this . fizzInputQueue = fizzInputQueue ; this . buzzInputQueue = buzzInputQueue ; this . fizzOutputQueue = fizzOutputQueue ; this . buzzOutputQueue = buzzOutputQueue ; } public long getFizzBuzzCounter ( ) { return fizzBuzzCounter ; } public void reset ( ) { fizzBuzzCounter = 0L ; sequence = - 1L ; } public long getSequence ( ) { return sequence ; } public void halt ( ) { running = false ; } @ Override public void run ( ) { running = true ; while ( running ) { try { switch ( fizzBuzzStep ) { case FIZZ : { Long value = fizzInputQueue . take ( ) ; fizzOutputQueue . put ( Boolean . valueOf ( 0 == ( value . longValue ( ) % 3 ) ) ) ; break ; } case BUZZ : { Long value = buzzInputQueue . take ( ) ; buzzOutputQueue . put ( Boolean . valueOf (
1,511
<s> package org . rubypeople . rdt . internal . cheatsheets . webservice ; import java . io . File ; import java . io . FileInputStream ; import java . io . InputStream ; import org . eclipse . core . resources . IFile ; import org . eclipse . core . runtime . Path ; import org . eclipse . jface . action . Action ; import org . eclipse . ui . cheatsheets . ICheatSheetAction ; import org . eclipse . ui . cheatsheets . ICheatSheetManager ; import org . rubypeople . rdt . core . RubyCore ; import org . rubypeople . rdt . internal
1,512
<s> package org . rubypeople . rdt . internal . debug . core . commands ; import org . rubypeople . rdt . internal . debug . core . parsing . AbstractReadStrategy ; import org . rubypeople . rdt . internal . debug . core . parsing . EvalReader ; import org . rubypeople . rdt . internal . debug . core . parsing . XmlStreamReader ; public class EvalCommand extends AbstractCommand { public EvalCommand ( String command , boolean isControl ) { super ( command , isControl ) ; } @ Override protected XmlStreamReader createResultReader ( AbstractReadStrategy
1,513
<s> package de . fuberlin . wiwiss . d2rq . expr ; import java . util . Arrays ; import java . util . Collections ; import java . util . HashMap ; import java . util . HashSet ; import java . util . Map ; import java . util . Set ; import junit . framework . TestCase ; import de . fuberlin . wiwiss . d2rq . algebra . AliasMap ; import de . fuberlin . wiwiss . d2rq . algebra . Attribute ; import de . fuberlin . wiwiss . d2rq . algebra . ColumnRenamerMap ; import de . fuberlin . wiwiss . d2rq . algebra . RelationName ; import de . fuberlin . wiwiss . d2rq . algebra . AliasMap . Alias ; public class SQLExpressionTest extends TestCase { public void testCreate ( ) { Expression e = SQLExpression . create ( "" ) ; assertEquals ( "" , e . toString ( ) ) ; assertFalse ( e . isTrue ( ) ) ; assertFalse ( e . isFalse ( ) ) ; } public void testFindsColumns ( ) { Expression e = SQLExpression . create ( "" ) ; Set < Attribute > expectedColumns = new HashSet < Attribute > ( Arrays . asList ( new Attribute [ ] { new Attribute ( null , "papers" , "publish" ) , new Attribute ( null , "papers" , "url1" ) , new Attribute ( null , "papers" , "url2" ) , new Attribute ( null , "papers" , "rating" ) } ) ) ; assertEquals ( expectedColumns , e . attributes ( ) ) ; } public void testToString ( ) { Expression e = SQLExpression . create ( "" ) ; assertEquals ( "" , e . toString ( ) ) ; } public void testTwoExpressionsAreEqual ( ) { assertEquals ( SQLExpression . create ( "1=1" ) , SQLExpression . create ( "1=1" ) ) ; assertEquals ( SQLExpression . create ( "1=1" ) . hashCode ( ) , SQLExpression . create ( "1=1" ) . hashCode ( ) ) ; } public void testTwoExpressionsAreNotEqual ( ) { assertFalse ( SQLExpression . create ( "1=1" ) . equals (
1,514
<s> package org . rubypeople . rdt . internal . formatter ; import java . io . PrintWriter ; public class Indentor { private int indentation ; private int indentationSteps ; private char indentationChar ; public Indentor ( int indentationSteps , char indentationChar ) { this . indentationSteps = indentationSteps ; this . indentationChar = indentationChar ; } public void indent ( ) { indentation += indentationSteps ; } public void outdent ( ) { indentation -= indentationSteps ; } public void printIndentation ( PrintWriter out ) { for (
1,515
<s> package org . oddjob . persist ; import java . io . Serializable ; import java . util . ArrayList ; import java . util . List ; import org . apache . log4j . Logger ; import org . oddjob . arooa . ArooaSession ; import org . oddjob . arooa . life . ComponentPersistException ; import org . oddjob . arooa . life . ComponentPersister ; import org . oddjob . arooa . registry . Path ; import org . oddjob . framework . Transient ; abstract public class PersisterBase implements OddjobPersister { private static final Logger logger = Logger . getLogger ( PersisterBase . class ) ; private List < String > include ; private List < String > exclude ; private Path ourPath ; public PersisterBase ( ) { } protected PersisterBase ( Path path ) { this . ourPath = path ; } public void setPath ( String path ) { ourPath = new Path ( path ) ; } public ComponentPersister persisterFor ( String id ) { Path path ; if ( ourPath == null ) { path = new Path ( id ) ; } else { path = ourPath . addId ( id ) ; } logger . info ( "" + id + "]" ) ; return new InnerPersister ( path ) ; } private class InnerPersister implements OddjobPersister , ComponentPersister { private final Path path ; private boolean closed ; private List < InnerPersister > children = new ArrayList < InnerPersister > ( ) ; public InnerPersister ( Path path ) { this . path = path ; } @ Override public ComponentPersister persisterFor ( String id ) { if ( id == null ) { throw new NullPointerException ( "No path." ) ; } InnerPersister child = new InnerPersister ( this . path . addId ( id ) ) { public void close ( ) { super . close ( ) ; children . remove ( this ) ; } } ; children . add ( child ) ; return child ; } @ Override public void persist ( String id , Object proxy , ArooaSession session ) throws ComponentPersistException { if ( closed ) { return ; } if ( ! ( proxy instanceof Serializable ) ) { logger . debug ( "[" + proxy + "" ) ; return ; } if ( ( proxy instanceof Transient ) ) { logger . debug ( "[" + proxy + "" ) ; return ; } if ( include != null && ! include . contains ( id ) ) { logger . debug ( "[" + proxy + "], id [" + id + "" ) ; return ; } if ( exclude != null && exclude . contains ( id ) ) { logger . debug ( "[" +
1,516
<s> package com . asakusafw . yaess . jsch ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . io . File ; import java . io . IOException ; import java . util . Arrays ; import java . util . HashMap ; import java . util . List ; import java . util . Map ; import org . junit . Test ; import com . asakusafw . runtime . core . context . RuntimeContext ; import com . asakusafw . runtime . core . context . RuntimeContext . ExecutionMode ; import com . asakusafw . yaess . basic . ProcessHadoopScriptHandler ; import com . asakusafw . yaess . core . ExecutionContext ; import com . asakusafw . yaess . core . ExecutionMonitor ; import com . asakusafw . yaess . core . ExecutionPhase ; import com . asakusafw . yaess . core . HadoopScript ; import com . asakusafw . yaess . core . HadoopScriptHandler ; import com . asakusafw . yaess . core . ProfileContext ; import com . asakusafw . yaess . core . ServiceProfile ; public class SshHadoopScriptHandlerTest extends SshScriptHandlerTestRoot { @ Test public void simple ( ) throws Exception { String target = new File ( getAsakusaHome ( ) , ProcessHadoopScriptHandler . PATH_EXECUTE ) . getAbsolutePath ( ) ; File shell = putScript ( "arguments.sh" , new File ( target ) ) ; HadoopScript script = new HadoopScript ( "testing" , set ( ) , "" , map ( ) , map ( ) ) ; HadoopScriptHandler handler = handler ( "" , getAsakusaHome ( ) . getAbsolutePath ( ) ) ; ExecutionContext context = new ExecutionContext ( "tbatch" , "tflow" , "texec" , ExecutionPhase . MAIN , map ( "hello" , "world" , "key" , "value" ) ) ; execute ( context , script , handler ) ; List < String > results = getOutput ( shell ) ; assertThat ( results . subList ( 0 , 5 ) , is ( Arrays . asList ( "" , "tbatch" , "tflow" , "texec" , context . getArgumentsAsString ( ) ) ) ) ; } @ Test public void properties ( ) throws Exception { String target = new File ( getAsakusaHome ( ) , ProcessHadoopScriptHandler . PATH_EXECUTE ) . getAbsolutePath ( ) ; File shell = putScript ( "arguments.sh" , new File ( target ) ) ; HadoopScript script = new HadoopScript ( "testing" , set ( ) , "" , map ( "hello" , "world" , "hoge" , "foo" ) , map ( ) ) ; HadoopScriptHandler handler = handler ( "" , getAsakusaHome ( ) . getAbsolutePath ( ) , "prop.hello" , "handler" , "prop.bar" , "moga" ) ; ExecutionContext context = new ExecutionContext ( "tbatch" , "tflow" , "texec" , ExecutionPhase . MAIN , map ( ) ) ; execute ( context , script , handler ) ; List < String > results = getOutput ( shell ) ; assertThat ( results . subList ( 0 , 5 ) , is ( Arrays . asList ( "" , "tbatch" , "tflow" , "texec" , context . getArgumentsAsString ( ) ) ) ) ; List < String > rest = results . subList ( 5 , results . size ( ) ) ; int hello = rest . indexOf ( "hello=world" ) ; assertThat ( hello , greaterThanOrEqualTo ( 1 ) ) ; assertThat ( rest . get ( hello - 1 ) , is ( "-D" ) ) ; int hoge = rest . indexOf ( "hoge=foo" ) ; assertThat ( hoge , greaterThanOrEqualTo ( 1 ) ) ; assertThat ( rest . get ( hoge - 1 ) , is ( "-D" ) ) ; int bar = rest . indexOf ( "bar=moga" ) ; assertThat ( bar , greaterThanOrEqualTo ( 1 ) ) ; assertThat ( rest . get ( bar - 1 ) , is ( "-D" ) ) ; } @ Test public void complex_prefix ( ) throws Exception { String target = new File ( getAsakusaHome ( ) , ProcessHadoopScriptHandler . PATH_EXECUTE ) . getAbsolutePath ( ) ; File shell = putScript ( "arguments.sh" , new File ( target ) ) ; HadoopScript script = new HadoopScript ( "testing" , set ( ) , "" , map ( ) , map ( ) ) ; HadoopScriptHandler handler = handler ( "" , getAsakusaHome ( ) . getAbsolutePath ( ) , "command.0" , "@[0]" , "command.1" , "" ) ; ExecutionContext context = new ExecutionContext ( "tbatch" , "tflow" , "texec" , ExecutionPhase . MAIN , map ( "hello" , "world" , "key" , "value" ) ) ; execute ( context , script , handler ) ; List < String > results = getOutput ( shell ) ; assertThat ( results . subList ( 0 , 7 ) , is ( Arrays . asList ( "" , shell . getAbsolutePath ( ) , "" , "tbatch" , "tflow" , "texec" , context . getArgumentsAsString ( ) ) ) ) ; } @ Test public void environment ( ) throws Exception { String target = new File ( getAsakusaHome ( ) , ProcessHadoopScriptHandler . PATH_EXECUTE ) . getAbsolutePath ( ) ; File shell = putScript ( "" , new File ( target ) ) ; HadoopScript script = new HadoopScript ( "testing" , set ( ) , "" , map ( ) , map ( "script" , "SCRIPT" , "override" , "SCRIPT" ) ) ; HadoopScriptHandler handler = handler ( "" , getAsakusaHome ( ) . getAbsolutePath ( ) , "env.handler" , "HANDLER" , "env.override" , "HANDLER" ) ; execute ( script , handler ) ; List < String > results = getOutput ( shell ) ; assertThat ( results , hasItem ( equalToIgnoringWhiteSpace ( "" ) ) ) ; assertThat ( results , hasItem ( equalToIgnoringWhiteSpace ( "" ) ) ) ; assertThat ( results , hasItem ( equalToIgnoringWhiteSpace ( "" ) ) ) ; } @ Test public void runtime_context ( ) throws Exception { String target = new File ( getAsakusaHome ( ) , ProcessHadoopScriptHandler . PATH_EXECUTE ) . getAbsolutePath ( ) ; File shell = putScript ( "" , new File ( target ) ) ; HadoopScript script = new HadoopScript ( "testing" , set ( ) , "" , map ( ) , map ( "script" , "SCRIPT" , "override" , "SCRIPT" ) ) ; HadoopScriptHandler handler = handler ( "" , getAsakusaHome ( ) . getAbsolutePath ( ) , "env.handler" , "HANDLER" , "env.override" , "HANDLER" ) ; RuntimeContext rc = RuntimeContext . DEFAULT . batchId ( "b" ) . mode ( ExecutionMode . SIMULATION ) . buildId ( "OK" ) ; ExecutionContext context = new ExecutionContext ( "b" , "f" , "e" , ExecutionPhase . MAIN , map ( ) , rc . unapply ( ) ) ; execute ( context , script , handler ) ; Map < String , String > map = new HashMap < String , String > ( ) ; for ( String line : getOutput ( shell ) ) { if ( line . trim ( ) . isEmpty ( ) ) { continue ; } String [ ] kv = line . split ( "=" , 2 ) ; if ( kv . length != 2 ) { continue ; } map . put ( kv [ 0 ] , kv [ 1 ] ) ; } assertThat ( RuntimeContext . DEFAULT . apply ( map ) , is ( rc ) ) ; } @ Test ( expected = IOException . class ) public void missing_config ( ) throws Exception { String target = new File ( getAsakusaHome ( ) , ProcessHadoopScriptHandler . PATH_EXECUTE ) . getAbsolutePath ( ) ; putScript ( "arguments.sh" , new File ( target ) ) ; Map < String , String > conf = map ( ) ; conf . put ( "" , getAsakusaHome ( ) . getAbsolutePath ( ) ) ; ServiceProfile < HadoopScriptHandler > profile = new ServiceProfile < HadoopScriptHandler > ( "hadoop" , SshHadoopScriptHandler . class , conf , ProfileContext . system ( getClass ( ) . getClassLoader ( )
1,517
<s> package com . asakusafw . vocabulary . batch ; import com . asakusafw . vocabulary . flow . FlowDescription ; import com . asakusafw . vocabulary . flow . JobFlow ; @ JobFlow ( name = "testing1" ) public
1,518
<s> package com . asakusafw . dmdl . directio . sequencefile . driver ; import java . util . Map ; import com . asakusafw . dmdl . directio . sequencefile . driver . SequenceFileFormatTrait . Configuration ; import com . asakusafw . dmdl . model . AstAttribute ; import com . asakusafw . dmdl . model . AstAttributeElement ; import com . asakusafw . dmdl . semantics . DmdlSemantics ; import com . asakusafw . dmdl . semantics . ModelDeclaration ; import com . asakusafw . dmdl . spi . ModelAttributeDriver ; import com . asakusafw . dmdl . util . AttributeUtil ; public class SequenceFileFormatDriver extends ModelAttributeDriver { public static final String TARGET_NAME = "" ; @ Override public String getTargetName ( ) { return TARGET_NAME ; } @ Override public void process ( DmdlSemantics environment
1,519
<s> package com . asakusafw . compiler . flow . stage ; import java . text . MessageFormat ; import java . util . List ; import com . asakusafw . compiler . common . JavaName ; import com . asakusafw . compiler . common . Precondition ; import com . asakusafw . compiler . flow . Compilable ; import com . asakusafw . compiler . flow . DataClass ; import com . asakusafw . compiler . flow . ShuffleDescription ; import com . asakusafw . compiler . flow . plan . StageBlock ; import com . asakusafw . vocabulary . flow . graph . FlowElementInput ; public class ShuffleModel extends Compilable . Trait < CompiledShuffle > { private final StageBlock stageBlock ; private final List < Segment > segments ; public ShuffleModel ( StageBlock stageBlock , List < Segment > segments ) { Precondition . checkMustNotBeNull ( stageBlock , "stageBlock" ) ; Precondition . checkMustNotBeNull ( segments , "segments" ) ; this . stageBlock = stageBlock ; this . segments = segments ; } public StageBlock getStageBlock ( ) { return stageBlock ; } public List < Segment > getSegments ( ) { return segments ; } public Segment findSegment ( FlowElementInput input ) { Precondition . checkMustNotBeNull ( input , "input" ) ; for ( Segment segment : getSegments ( ) ) { if ( segment . getPort ( ) . equals ( input ) ) { return segment ; } } return null ; } @ Override public String toString ( ) { return MessageFormat . format ( "Shuffle({0})" , segments ) ; } public static class Segment extends Compilable . Trait < CompiledShuffleFragment > { private final int elementId ; private final int portId ; private final ShuffleDescription description ; private final FlowElementInput port ; private final DataClass source ; private final DataClass target ; private final List < Term > terms ; public Segment ( int elementId , int portId , ShuffleDescription description , FlowElementInput port , DataClass source , DataClass target , List < Term > terms ) { Precondition . checkMustNotBeNull ( description , "description" ) ; Precondition . checkMustNotBeNull ( port , "port" ) ; Precondition . checkMustNotBeNull ( source , "source" ) ; Precondition . checkMustNotBeNull ( target , "target" ) ; Precondition . checkMustNotBeNull ( terms , "terms" ) ; this . elementId = elementId ; this . portId = portId ; this . description = description ; this . port = port ; this . source = source ; this . target = target ; this . terms = terms ; } public int getElementId ( ) { return elementId ; } public int getPortId ( ) { return portId ; } public ShuffleDescription getDescription ( ) { return description ; } public FlowElementInput getPort ( ) { return port ; } public DataClass getSource ( ) { return source ; } public DataClass getTarget ( ) { return target ; } public List < Term > getTerms ( ) { return terms ; } public Term findTerm ( String propertyName ) { Precondition . checkMustNotBeNull ( propertyName , "propertyName" ) ; if ( propertyName . trim ( ) . isEmpty ( ) ) { return null ; } String name
1,520
<s> package com . mcbans . firestar . mcbans . callBacks ; import java . util . HashMap ; import org . bukkit . ChatColor ; import com . mcbans . firestar . mcbans . BukkitInterface ; import com . mcbans . firestar . mcbans . request . JsonHandler ; public
1,521
<s> package org . rubypeople . rdt . ui . text . ruby ; import org . eclipse . core . runtime . CoreException ; import org . rubypeople . rdt . core . IRubyScript ; public interface IQuickFixProcessor { boolean hasCorrections
1,522
<s> package com . asakusafw . compiler . flow . external ; import java . util . List ; import java . util . ListIterator ; import java . util . Map ; import java . util . Set ; 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 . ExternalIoDescriptionProcessor . Repository ; import com . asakusafw . compiler . flow . FlowCompilingEnvironment ; import com . asakusafw . utils . collections . Lists ; import com . asakusafw . utils . collections . Maps ; import com . asakusafw . utils . collections . Sets ; import com . asakusafw . utils . collections . Tuple2 ; import com . asakusafw . utils . collections . Tuples ; import com . asakusafw . vocabulary . flow . graph . FlowGraph ; import com . asakusafw . vocabulary . flow . graph . FlowIn ; import com . asakusafw . vocabulary . flow . graph . FlowOut ; import com . asakusafw . vocabulary . flow . graph . InputDescription ; import com . asakusafw . vocabulary . flow . graph . OutputDescription ; public class ExternalIoAnalyzer { static final Logger LOG = LoggerFactory . getLogger ( ExternalIoAnalyzer . class ) ; private final FlowCompilingEnvironment environment ; public ExternalIoAnalyzer ( FlowCompilingEnvironment environment ) { Precondition . checkMustNotBeNull ( environment , "environment" ) ; this . environment = environment ; } public boolean validate ( FlowGraph graph ) { Precondition . checkMustNotBeNull ( graph , "graph" ) ; LOG . info ( "" , graph . getDescription ( ) . getName ( ) ) ; List < Tuple2 < InputDescription , ExternalIoDescriptionProcessor > > inputs = Lists . create ( ) ; List < Tuple2 < OutputDescription , ExternalIoDescriptionProcessor > > outputs = Lists . create ( ) ; if ( collect ( graph , inputs , outputs ) == false ) { return false ; } boolean valid = true ; Set < ExternalIoDescriptionProcessor > processors = getActiveProcessors ( inputs , outputs ) ; for ( ExternalIoDescriptionProcessor proc : processors ) { List < InputDescription > in = getOnly ( inputs , proc ) ; List < OutputDescription > out = getOnly ( outputs , proc ) ; valid &= proc
1,523
<s> package com . asakusafw . yaess . basic ; import java . io . IOException ; import java . util . concurrent . BlockingQueue ; import java . util . concurrent . Callable ; import java . util . concurrent . FutureTask ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import com . asakusafw . yaess . core . ExecutionContext ; import com . asakusafw . yaess . core . ExecutionMonitor ; import com . asakusafw . yaess . core . Job ; public interface JobExecutor { Executing submit ( ExecutionMonitor monitor , ExecutionContext context , Job job , BlockingQueue < Executing > doneQueue ) throws InterruptedException , IOException ; public final class Executing extends FutureTask < Void > { static final Logger LOG = LoggerFactory . getLogger ( JobExecutor . class ) ; private final Job job ; private final BlockingQueue < Executing > doneQueue ; public Executing ( ExecutionMonitor monitor , ExecutionContext context , Job job , BlockingQueue < Executing > doneQueue ) { super ( build ( monitor , context , job ) ) ; this . job = job ; this . doneQueue = doneQueue ; } private static Callable < Void > build ( final ExecutionMonitor monitor , final ExecutionContext context , final Job job ) { if ( monitor == null ) { throw new IllegalArgumentException ( "" ) ; } if ( context == null ) { throw new IllegalArgumentException ( "" ) ; } if ( job == null ) { throw new IllegalArgumentException ( "" ) ; } return new Callable < Void > ( ) { @ Override public Void call ( ) throws Exception { LOG . debug ( "" , job . getId ( ) , Thread . currentThread ( ) .
1,524
<s> package com . lmax . disruptor . support ; import org . jmock . api . Action ; import org . jmock . api . Invocation ; import org . jmock . lib . action . CustomAction ; import java . util . concurrent . CountDownLatch ; public final class Actions { public static Action countDown ( final CountDownLatch latch ) { return new CustomAction ( "" ) { public Object
1,525
<s> package org . rubypeople . rdt . refactoring . editprovider ; import org . jruby . ast . Node ; public class SimpleNodeEditProvider extends ReplaceEditProvider { private final Node node ; public SimpleNodeEditProvider ( Node node ) { this . node = node ; } @ Override protected int getOffsetLength ( ) { return node . getPosition ( ) . getEndOffset ( ) - node . getPosition ( ) . getStartOffset ( ) ; } @ Override protected Node getEditNode ( int offset , String document )
1,526
<s> package org . oddjob . arooa . types ; import java . io . IOException ; import org . custommonkey . xmlunit . XMLTestCase ; import org . oddjob . Oddjob ; import org . oddjob . OddjobLookup ; import org . oddjob . arooa . convert . ArooaConversionException ; import org . oddjob . arooa . reflect . ArooaPropertyException ; import org . oddjob . arooa . xml . XMLConfiguration ; import org . oddjob . state . ParentState ; import org . xml . sax . SAXException ; public class XMLTypeExamplesTest extends XMLTestCase { public void testExample ( ) throws ArooaPropertyException , ArooaConversionException , SAXException , IOException { Oddjob oddjob = new Oddjob ( ) ; oddjob . setConfiguration ( new XMLConfiguration ( "" , getClass ( ) . getClassLoader ( ) ) ) ; oddjob . run ( ) ; assertEquals ( ParentState
1,527
<s> package com . asakusafw . testdriver . core ; import java . io . IOException ; import java . net . URI ; public
1,528
<s> package com . asakusafw . yaess . core ; import java . io . IOException ; import java . text . MessageFormat ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; public abstract class ExecutionLockProvider implements Service { static final Logger LOG = LoggerFactory . getLogger ( ExecutionLockProvider . class ) ; public static final String KEY_SCOPE = "scope" ; private volatile ExecutionLock . Scope scope ; @ Override public final void configure ( ServiceProfile < ? > profile ) throws
1,529
<s> package org . rubypeople . rdt . internal . core . pmd ; import java . util . Comparator ; import java . util . Iterator ; import java . util . Set ; import java . util . TreeSet ; public class Match implements Comparable { private int tokenCount ; private int lineCount ; private Set < TokenEntry > markSet = new TreeSet < TokenEntry > ( ) ; private TokenEntry [ ] marks = new TokenEntry [ 2 ] ; private String code ; private MatchCode mc ; private String label ; public static final Comparator MatchesComparator = new Comparator ( ) { public int compare ( Object a , Object b ) { Match ma = ( Match ) a ; Match mb = ( Match ) b ; return mb . getMarkCount ( ) - ma . getMarkCount ( ) ; } } ; public static final Comparator LinesComparator = new Comparator ( ) { public int compare ( Object a , Object b ) { Match ma = ( Match ) a ; Match mb = ( Match ) b ; return mb . getLineCount ( ) - ma . getLineCount ( ) ; } } ; public static final Comparator LabelComparator = new Comparator ( ) { public int compare ( Object a , Object b ) { Match ma = ( Match ) a ; Match mb = ( Match ) b ; if ( ma . getLabel ( ) == null ) return 1 ; if ( mb . getLabel ( ) == null ) return - 1 ; return mb . getLabel ( ) . compareTo ( ma . getLabel ( ) ) ; } } ; public static final Comparator LengthComparator = new Comparator ( ) { public int compare ( Object
1,530
<s> package org . rubypeople . rdt . refactoring . core . movemethod ; import org . jruby . ast . Node ; import org . jruby . ast . SelfNode ; import org . rubypeople . rdt . refactoring . core . NodeFactory ; import org . rubypeople . rdt . refactoring . editprovider . ReplaceEditProvider ; import org . rubypeople . rdt . refactoring . nodewrapper . CallArgsNodeWrapper ; import org . rubypeople . rdt . refactoring . nodewrapper . MethodCallNodeWrapper ; public class ReplaceMethodCallEditProvider extends ReplaceEditProvider { private MethodCallNodeWrapper methodCallNode ; private MoveMethodConfig config ; public ReplaceMethodCallEditProvider ( MethodCallNodeWrapper methodCallNode , MoveMethodConfig config ) { super ( false ) ; this . config = config ; this .
1,531
<s> package org . rubypeople . rdt . refactoring . core . inlinemethod ; import org . eclipse . text . edits . ReplaceEdit ; import org . eclipse . text . edits . TextEdit ; import org . jruby . ast . AssignableNode ; import org . jruby . ast . Node ; import org . rubypeople . rdt . refactoring . editprovider . EditProvider ; import org . rubypeople . rdt . refactoring . util . HsrFormatter ; public class InlineMethodEditProvider extends EditProvider { private final Node node ; private final InlineMethodConfig config ; public InlineMethodEditProvider ( InlineMethodConfig config ) { super ( true , false ) ; this . config = config ; if ( config . getSelectedCall ( ) == null ) { this . node = null ; return ; } Node parent = config . getCallParent ( ) ; if ( parent instanceof AssignableNode ) { this . node = parent ; } else { this . node = config . getSelectedCall ( ) . getWrappedNode ( ) ; } } @ Override public TextEdit getEdit ( final String document ) { return new ReplaceEdit ( getOffset ( ) , getOffsetLength ( ) , format ( document ) . replaceFirst ( "^\\s*" , "" ) ) ; } private String format ( final String document ) { return HsrFormatter . format ( document , config . getMethodDefDoc
1,532
<s> package org . oddjob . scheduling ; import org . oddjob . arooa . registry . SimpleBeanRegistry ; import junit . framework . TestCase ; public class JobTokenTest extends TestCase { public void test1 ( ) { Object job = new Object ( ) ; JobToken jobToken = JobToken . create ( null , job ) ; assertEquals ( job . toString ( ) , jobToken . toString ( ) ) ; } public void test2 ( ) { Object job = new Object ( ) ; SimpleBeanRegistry cr = new SimpleBeanRegistry ( ) ; cr . register ( "x" , job ) ; JobToken jobToken = JobToken . create ( cr , job ) ; assertEquals ( "Path: x" , jobToken . toString ( ) ) ; } public void testNoPath ( ) { Object job = new Object
1,533
<s> package com . asakusafw . testdriver ; import java . io . File ; import java . io . IOException ; import java . net . URI ; import java . net . URISyntaxException ; import java . util . List ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import com . asakusafw . testdriver . core . DataModelSinkFactory ; import com . asakusafw . testdriver . core . DifferenceSinkFactory ; import com . asakusafw . testdriver . core . ModelTester ; import com . asakusafw . testdriver . core . ModelVerifier ; import com . asakusafw . testdriver . core . TestRule ; import com . asakusafw . testdriver . core . VerifierFactory ; import com . asakusafw . testdriver . core . VerifyRule ; import com . asakusafw . utils . collections . Lists ; import com . asakusafw . vocabulary . external . ExporterDescription ; public class DriverOutputBase < T > extends DriverInputBase < T > { private static final Logger LOG = LoggerFactory . getLogger ( DriverOutputBase . class ) ; protected ExporterDescription exporterDescription ; protected VerifierFactory verifier ; protected DataModelSinkFactory resultSink ; protected DifferenceSinkFactory differenceSink ; protected ExporterDescription getExporterDescription ( ) { return exporterDescription ; } protected void setExporterDescription ( ExporterDescription exporterDescription ) { this . exporterDescription = exporterDescription ; } protected VerifierFactory getVerifier ( ) { return verifier ; } protected void setVerifier ( VerifierFactory verifier ) { this . verifier = verifier ; } protected void setVerifier ( URI expectedUri , URI ruleUri , List < ? extends ModelTester < ? super T > > extraRules ) throws IOException { List < TestRule > ruleFragments = Lists . create ( ) ; for ( ModelTester < ? super T > tester : extraRules ) { TestRule fragment = driverContext . getRepository ( ) . toVerifyRuleFragment ( modelType , tester ) ; ruleFragments . add ( fragment ) ; } VerifierFactory factory = driverContext . getRepository ( ) . getVerifierFactory ( expectedUri , ruleUri , ruleFragments ) ; setVerifier ( factory ) ; } protected void setVerifier ( URI expectedUri , ModelVerifier < ? super T > modelVerifier ) throws IOException { LOG . info ( "expected: {}" , expectedUri ) ; VerifyRule rule = driverContext . getRepository ( ) . toVerifyRule ( modelType , modelVerifier ) ; VerifierFactory factory = driverContext . getRepository ( ) . getVerifierFactory ( expectedUri , rule ) ; setVerifier ( factory ) ; } protected void setVerifier ( String expectedPath , String rulePath , List < ? extends ModelTester < ? super T > > extraRules ) throws IOException { URI expectedUri ; try { expectedUri = toUri ( expectedPath ) ; } catch ( URISyntaxException e ) { throw new IllegalArgumentException ( "" + expectedPath , e ) ; } URI ruleUri ; try {
1,534
<s> package org . oddjob . monitor . view ; import java . awt . Component ; import javax . swing . ImageIcon ; import javax . swing . JTree ; import javax . swing . tree . DefaultTreeCellRenderer ; import org . oddjob . monitor . model . JobTreeNode ; public class JobTreeCellRenderer extends DefaultTreeCellRenderer { private static final long serialVersionUID = 2005010100L ; public Component getTreeCellRendererComponent ( JTree tree , Object value , boolean sel , boolean expanded , boolean leaf ,
1,535
<s> package org . oddjob . monitor . action ; import javax . swing . KeyStroke ; import org . oddjob . Loadable ; import org . oddjob . monitor . Standards ; import org . oddjob . monitor . context . ExplorerContext ; import org . oddjob . monitor . model . JobAction ; import org . oddjob . util . ThreadManager ; public class UnloadAction extends JobAction { private Loadable job = null ; private ThreadManager threadManager ; public String getName ( ) { return "Unload" ; } public String getGroup ( ) { return JOB_GROUP ; } public Integer getMnemonicKey ( ) { return Standards . UNLOAD_MNEMONIC_KEY ; } public KeyStroke getAcceleratorKey ( ) { return Standards . UNLOAD_ACCELERATOR_KEY ; } @ Override protected void doPrepare ( ExplorerContext explorerContext ) { Object component = explorerContext . getThisComponent ( ) ; if ( component instanceof Loadable ) { this . job = ( Loadable ) component ; this . threadManager = explorerContext . getThreadManager ( ) ; setEnabled ( ! this . job . isLoadable ( ) ) ; setVisible ( true ) ; }
1,536
<s> package org . oddjob . script ; import java . io . StringReader ; import javax . script . Invocable ; import javax . script . ScriptException ; import junit . framework . TestCase ; public class ScriptCompilerTest extends TestCase { public void testCompile ( ) throws ScriptException { ScriptCompiler test = new ScriptCompiler ( ) ; test . setLanguage ( "JavaScript" ) ; Evaluatable evaluatable = test . compileScript ( new StringReader ( "" ) ) ; assertEquals ( PreCompiled . class , evaluatable . getClass ( ) ) ; evaluatable . eval ( ) ; assertEquals ( "hello" , evaluatable . get ( "result" ) ) ; } public void testNoVarAtComile ( ) throws ScriptException { ScriptCompiler test = new ScriptCompiler ( ) ; test . setLanguage ( "JavaScript" ) ; Evaluatable evaluatable
1,537
<s> package com . pogofish . jadt . emitter ; import java . util . List ; import com . pogofish . jadt . ast . Constructor ; import com . pogofish . jadt . sink . Sink ; public class DummyClassBodyEmitter implements ClassBodyEmitter { @ Override public void constructorFactory ( Sink sink , String dataTypeName , String factoryName , List < String > typeParameters , Constructor constructor ) { sink . write ( "" + dataTypeName + " " + factoryName + " " + constructor . name + "*/" ) ; } @ Override public void emitConstructorMethod ( Sink sink , String indent , Constructor constructor ) { sink . write ( indent + "" + constructor . name + "*/" ) ; } @ Override public void emitToString ( Sink sink , String indent , Constructor constructor ) { sink . write ( indent + "" + constructor . name + "*/" ) ; } @ Override public void emitEquals ( Sink sink , String indent ,
1,538
<s> package org . springframework . samples . petclinic ; import java . util . ArrayList ; import java . util . Collections ; import java . util . HashSet ; import java . util . List ; import java . util . Set ; import javax . persistence . Basic ; import javax . persistence . Column ; import javax . persistence . Entity ; import javax . persistence . FetchType ; import javax . persistence . GeneratedValue ; import javax . persistence . GenerationType ; import javax . persistence . Id ; import javax . persistence . JoinColumn ; import javax . persistence . JoinTable ; import javax . persistence . ManyToMany ; import javax . persistence . Table ; import javax . xml . bind . annotation . XmlElement ; import org . hibernate . annotations . Index ; import org . springframework . beans . support . MutableSortDefinition ; import org . springframework . beans . support . PropertyComparator ; @ Entity @ Table ( name = "vets" ) public class Vet implements Person { @ Basic @ Column ( name = "first_name" ) private String firstName ; @ Id @ GeneratedValue ( strategy = GenerationType . IDENTITY ) private Integer id ; @ Basic @ Column ( name = "last_name" ) @ Index ( name = "" ) private String lastName ; @ ManyToMany ( targetEntity = Specialty . class , fetch = FetchType . EAGER ) @ JoinTable ( name = "" , joinColumns = { @ JoinColumn ( name = "vet_id" ) } , inverseJoinColumns = { @ JoinColumn ( name = "specialty_id" ) } ) private Set < Specialty > specialties ; public void addSpecialty ( Specialty specialty ) { getSpecialtiesInternal ( ) . add ( specialty ) ; } @ Override public String getFirstName ( ) { return this . firstName ; } @ Override public Integer getId ( ) { return id ; } @ Override public String getLastName ( ) { return this . lastName ; } public int getNrOfSpecialties ( ) { return getSpecialtiesInternal ( ) . size ( ) ; } @ XmlElement public List < Specialty > getSpecialties ( ) { List < Specialty > sortedSpecs = new ArrayList < Specialty > ( getSpecialtiesInternal ( ) ) ; PropertyComparator . sort ( sortedSpecs , new MutableSortDefinition ( "name" , true , true ) ) ; return Collections . unmodifiableList ( sortedSpecs ) ; } protected Set
1,539
<s> package com . pogofish . jadt . maven ; import static org . junit . Assert . assertEquals ; import static org . junit . Assert . fail ; import java . io . File ; import java . util . Collections ; import org . apache . maven . plugin . MojoExecutionException ; import org . apache . maven . project . MavenProject ; import org . junit . Test ; import com . pogofish . jadt . JADT ; import com . pogofish . jadt . errors . SemanticError ; import com . pogofish . jadt . errors . SyntaxError ; import com . pogofish . jadt . sink . StringSinkFactoryFactory ; public class JADTMojoTest { @ Test public void testHappy ( ) throws Exception { final File srcFile = new File ( JADT . TEST_SRC_INFO ) ; final File destDir = new File ( JADT . TEST_DIR ) ; final JADTMojo mojo = new JADTMojo ( ) ; final StringSinkFactoryFactory factory = new StringSinkFactoryFactory ( ) ; mojo . jadt = JADT . createDummyJADT ( Collections . < SyntaxError > emptyList ( ) , Collections . < SemanticError > emptyList ( ) , srcFile . getCanonicalPath ( ) , factory ) ; mojo . setSrcPath ( srcFile ) ; mojo . setDestDir ( destDir ) ; mojo . setProject ( new MavenProject ( ) ) ; mojo . execute ( ) ; final String result = factory . results ( ) . get ( destDir . getCanonicalPath ( ) ) . get ( 0 ) . getResults ( ) . get ( JADT . TEST_CLASS_NAME ) ; assertEquals ( JADT . TEST_SRC_INFO , result ) ; assertEquals ( 1 , mojo . project . getCompileSourceRoots ( ) . size ( ) ) ; assertEquals ( destDir . getCanonicalPath ( ) , mojo . project . getCompileSourceRoots ( ) . get ( 0 ) ) ; } @ Test public void testException ( ) throws Exception { final File srcFile = new File ( JADT . TEST_SRC_INFO ) ; final File
1,540
<s> package com . asakusafw . compiler . repository ; import java . text . MessageFormat ; import com . asakusafw . compiler . common . JavaName ; import com . asakusafw . compiler . common . Precondition ; import com . asakusafw . compiler . flow . DataClass ; import com . asakusafw . runtime . value . ValueOption ; import com . asakusafw . utils . java . model . syntax . Expression ; import com . asakusafw . utils . java . model . syntax . ModelFactory ; import com . asakusafw . utils . java . model . syntax . Statement ; import com . asakusafw . utils . java . model . syntax . Type ; import com . asakusafw . utils . java . model . util . ExpressionBuilder ; import com . asakusafw . utils . java . model . util . Models ; import com . asakusafw . utils . java . model . util . TypeBuilder ; public class ValueOptionProperty implements DataClass . Property { private ModelFactory factory ; private String name ; private Class < ? extends ValueOption < ? > > optionClass ; public ValueOptionProperty ( ModelFactory factory , String name , Class < ? extends ValueOption < ? > > optionClass ) { Precondition . checkMustNotBeNull ( factory , "factory" ) ; Precondition . checkMustNotBeNull ( name , "name" ) ; Precondition . checkMustNotBeNull ( optionClass , "optionClass" ) ; this . factory = factory ; this . name = name ; this . optionClass = optionClass ; } @ Override public String getName ( ) { return name ; } @ Override public java . lang . reflect . Type getType ( ) { return optionClass ; } @ Override public Expression createNewInstance ( Type target ) { return new TypeBuilder ( factory , target ) . newObject ( ) . toExpression ( ) ; } @ Override public boolean canNull ( ) { return true ; } @ Override public Expression createIsNull ( Expression object ) { JavaName javaName = JavaName . of ( name ) ; javaName . addFirst ( "get" ) ; javaName . addLast ( "option" ) ; return new ExpressionBuilder ( factory , object ) . method ( javaName . toMemberName ( ) ) . method ( "isNull" ) . toExpression ( ) ; } @ Override public Expression createGetter ( Expression object ) { JavaName javaName = JavaName . of ( name ) ; javaName . addFirst ( "get" ) ; javaName . addLast ( "option" ) ; return new ExpressionBuilder ( factory , object ) . method ( javaName . toMemberName ( ) ) . toExpression ( ) ; } @ Override public Statement assign ( Expression target , Expression source ) { return new ExpressionBuilder ( factory
1,541
<s> package net . sf . sveditor . core . db . expr ; import java . util . ArrayList ; import java . util . List ; import net . sf . sveditor . core . db . SVDBItemType ; public class SVDBPropertyCaseStmt extends SVDBExpr { public SVDBExpr fExpr ; public List < SVDBPropertyCaseItem > fItemList ; public SVDBPropertyCaseStmt (
1,542
<s> package org . rubypeople . rdt . core ; import org . eclipse . core . runtime . IPath ; public interface ILoadpathContainer { int K_APPLICATION = 1 ; int K_SYSTEM = 2 ; int K_DEFAULT_SYSTEM = 3 ; ILoadpathEntry [
1,543
<s> package com . asakusafw . windgate . hadoopfs . ssh ; import java . lang . reflect . InvocationTargetException ; import java . lang . reflect . Method ; import java . text . MessageFormat ; public final class StdoutEscapeMain { static { StdioHelper . load ( ) ; } private StdoutEscapeMain ( ) { return ; } public static void main ( String [ ] args ) throws Throwable { if ( args . length == 0 ) { throw new IllegalArgumentException ( MessageFormat . format ( "" , StdoutEscapeMain . class . getName ( ) ) ) ; } String mainClassName = args [ 0 ] ; String [ ] mainArgs = new String
1,544
<s> package com . mcbans . firestar . mcbans . org . json ; public class Cookie { public static String escape ( String string ) { char c ; String s = string . trim ( ) ; StringBuffer sb = new StringBuffer ( ) ; int length = s . length ( ) ; for ( int i = 0 ; i < length ; i += 1 ) { c = s . charAt ( i ) ; if ( c < ' ' || c == '+' || c == '%' || c == '=' || c == ';' ) { sb . append ( '%' ) ; sb . append ( Character . forDigit ( ( char ) ( ( c >>> 4 ) & 0x0f ) , 16 ) ) ; sb . append ( Character . forDigit ( ( char ) ( c & 0x0f ) , 16 ) ) ; } else { sb . append ( c ) ; } } return sb . toString ( ) ; } public static JSONObject toJSONObject ( String string ) throws JSONException { String name ; JSONObject jo = new JSONObject ( ) ; Object value ; JSONTokener x = new JSONTokener ( string ) ; jo . put ( "name" , x . nextTo ( '=' ) ) ; x . next ( '=' ) ; jo . put ( "value" , x . nextTo ( ';' ) ) ; x . next ( ) ; while ( x . more ( ) ) { name = unescape ( x . nextTo ( "=;" ) ) ; if ( x . next ( ) != '=' ) { if ( name . equals ( "secure" ) ) { value = Boolean . TRUE ; } else { throw x . syntaxError ( "" ) ; } } else { value = unescape ( x . nextTo ( ';' ) ) ; x . next ( ) ; } jo . put ( name , value ) ; } return jo ; } public static String toString ( JSONObject jo ) throws JSONException { StringBuffer sb = new StringBuffer ( ) ; sb . append ( escape ( jo . getString ( "name" ) ) ) ; sb . append ( "=" ) ; sb . append ( escape ( jo . getString ( "value" ) ) ) ; if ( jo . has ( "expires" ) ) { sb . append ( ";expires=" ) ; sb . append ( jo . getString ( "expires" ) ) ; } if ( jo . has ( "domain" ) ) { sb . append ( ";domain=" ) ; sb . append ( escape ( jo . getString ( "domain" ) ) ) ; } if ( jo
1,545
<s> package org . rubypeople . rdt . internal . core . search . matching ; import org . eclipse . core . runtime . CoreException ; 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 . rdt . core . IType ; import org . rubypeople . rdt . core . RubyCore ; import org . rubypeople . rdt . core . RubyModelException ; import org . rubypeople . rdt . internal . core . RubyScript ; import org . rubypeople . rdt . internal . core . util . Util ; public class TypeDeclarationLocator extends PatternLocator { private TypeDeclarationPattern pattern ; public TypeDeclarationLocator ( TypeDeclarationPattern pattern ) { super ( pattern ) ;
1,546
<s> package org . rubypeople . rdt . internal . core . builder ; import junit . framework . Test ; import junit . framework . TestSuite ;
1,547
<s> package de . fuberlin . wiwiss . d2rq . functional_tests ; import com . hp . hpl . jena . datatypes . xsd . XSDDatatype ; import com . hp . hpl . jena . rdf . model . AnonId ; import com . hp . hpl . jena . sparql . vocabulary . FOAF ; import com . hp . hpl . jena . vocabulary . DC ; import com . hp . hpl . jena . vocabulary . RDF ; import com . hp . hpl . jena . vocabulary . RDFS ; import com . hp . hpl . jena . vocabulary . VCARD ; import de . fuberlin . wiwiss . d2rq . helpers . FindTestFramework ; import de . fuberlin . wiwiss . d2rq . vocab . ISWC ; import de . fuberlin . wiwiss . d2rq . vocab . SKOS ; public class FindTest extends FindTestFramework { public void testListTypeStatements ( ) { find ( null , RDF . type , null ) ; assertStatement ( resource ( "papers/1" ) , RDF . type , ISWC . InProceedings ) ; assertNoStatement ( resource ( "papers/6" ) , RDF . type , ISWC . InProceedings ) ; assertStatement ( resource ( "" ) , RDF . type , ISWC . Conference ) ; assertStatement ( resource ( "topics/15" ) , RDF . type , SKOS . Concept ) ; assertStatementCount ( 95 ) ; } public void testListTopicInstances ( ) { find ( null , RDF . type , SKOS . Concept ) ; assertStatement ( resource ( "topics/1" ) , RDF . type , SKOS . Concept ) ; assertStatement ( resource ( "topics/15" ) , RDF . type , SKOS . Concept ) ; assertStatementCount ( 15 ) ; } public void testListTopicNames ( ) { find ( null , SKOS . prefLabel , null ) ; assertStatement ( resource ( "topics/1" )
1,548
<s> package org . rubypeople . rdt . internal . debug . ui . actions ; import org . eclipse . debug . core . DebugException ; import org . eclipse . debug . core . model . IValue ; import org . eclipse . debug . core . model . IVariable ; import org . eclipse . swt . widgets . Display ; import org . rubypeople . rdt . debug . core . model . IEvaluationResult ; import org . rubypeople . rdt . debug . core . model . IRubyValue ; import org . rubypeople . rdt . internal . debug . ui . RdtDebugUiPlugin ; import org . rubypeople . rdt . internal . debug . ui . display . IDataDisplay ; public class ExecuteAction extends EvaluateAction { protected void displayResult ( final IEvaluationResult result ) { if ( result . hasErrors ( ) ) { final Display display = RdtDebugUiPlugin . getStandardDisplay ( ) ; display . asyncExec ( new Runnable ( ) { public void run ( ) { if ( display . isDisposed ( ) ) { return ; } reportErrors ( result ) ; evaluationCleanup ( ) ; } } ) ; } else { final Display display = RdtDebugUiPlugin . getStandardDisplay ( ) ; display . asyncExec ( new Runnable ( ) { public void run ( ) { if ( display . isDisposed ( ) ) { return ; } IValue value = result . getValue ( ) ; IDataDisplay dataDisplay = getDirectDataDisplay ( ) ; if ( dataDisplay != null ) { try { dataDisplay . displayExpressionValue ( valueToCode ( value ) ) ; } catch ( DebugException e ) { RdtDebugUiPlugin . log ( e ) ; } } evaluationCleanup ( ) ; } } ) ; } } public static String valueToCode ( IValue value ) throws DebugException { String string = value . getValueString ( ) ; if ( value instanceof IRubyValue ) { IRubyValue rubyValue = ( IRubyValue ) value ; if ( value . getReferenceTypeName ( ) . equals ( "Array" ) ) { StringBuffer buffer = new StringBuffer ( "[" ) ; IVariable [ ] vars = rubyValue . getVariables ( ) ; for ( int i = 0 ; i < vars . length ; i ++ ) { buffer . append ( vars [ i ] . getValue ( ) . getValueString ( ) ) ; if ( i < vars . length - 1 ) buffer . append ( ", " ) ; } buffer . append ( "]" ) ; string
1,549
<s> package com . asakusafw . compiler . flow ; import java . util . List ; import java . util . Map ; import com . asakusafw . compiler . common . NameGenerator ; import com . asakusafw . compiler . common . Precondition ; import com . asakusafw . utils . collections . Lists ; import com . asakusafw . utils . java . model . syntax . Expression ; import com . asakusafw . utils . java . model . syntax . SimpleName ; import com . asakusafw . utils . java . model . syntax . Statement ; import com
1,550
<s> package org . oddjob . designer . components ; import org . oddjob . arooa . design . DesignFactory ; import org . oddjob . arooa . design . DesignInstance ; import org . oddjob . arooa . design . DesignProperty ; import org . oddjob . arooa . design . SimpleDesignProperty ; import org . oddjob . arooa . design . etc . FileAttribute ; import org . oddjob . arooa . design . screem . BorderedGroup ; import org . oddjob . arooa . design . screem . FieldSelection ; import org . oddjob . arooa . design . screem . Form ; import org . oddjob . arooa . design . screem . StandardForm ; import org . oddjob . arooa . parsing . ArooaContext ; import org . oddjob . arooa . parsing . ArooaElement ; public class CopyDC implements DesignFactory { public DesignInstance createDesign ( ArooaElement element , ArooaContext parentContext ) { return new CopyDesign ( element , parentContext ) ; } }
1,551
<s> package com . asakusafw . testdata . generator . excel ; import static com . asakusafw . dmdl . util . CommandLineUtils . * ; import java . io . File ; import java . io . IOException ; import java . nio . charset . Charset ; import java . text . MessageFormat ; import java . util . Arrays ; import java . util . List ; import org . apache . commons . cli . BasicParser ; import org . apache . commons . cli . CommandLine ; import org . apache . commons . cli . CommandLineParser ; import org . apache . commons . cli . HelpFormatter ; import org . apache . commons . cli . Option ; import org . apache . commons . cli . Options ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import com . asakusafw . dmdl . source . DmdlSourceRepository ; import com . asakusafw . testdata . generator . GenerateTask ; import com . asakusafw . testdata . generator . TemplateGenerator ; public final class Main { static final Logger LOG = LoggerFactory . getLogger ( Main . class ) ; private static final Option OPT_OUTPUT ; private static final Option OPT_FORMAT ; private static final Option OPT_ENCODING ; private static final Option OPT_SOURCE_PATH ; private static final Option OPT_PLUGIN ; private static final Options OPTIONS ; static { OPT_OUTPUT = new Option ( "output" , true , "" ) ; OPT_OUTPUT . setArgName ( "" ) ; OPT_OUTPUT . setRequired ( true ) ; OPT_SOURCE_PATH = new Option ( "source" , true , "" ) ; OPT_SOURCE_PATH . setArgName ( "" + File . pathSeparatorChar + "" ) ; OPT_SOURCE_PATH . setRequired ( true ) ; OPT_FORMAT = new Option ( "format" , true , "" ) ; OPT_FORMAT . setArgName ( MessageFormat . format ( "one-of-{0}" , Arrays . toString ( WorkbookFormat . values ( ) )
1,552
<s> package com . asakusafw . windgate . core . resource ; import java . io . Closeable ; import java . io . IOException ; import com . asakusafw . windgate . core . GateScript ; import com . asakusafw . windgate . core . ProcessScript ; public abstract class ResourceMirror implements Closeable { public abstract String getName ( ) ; public boolean isTransactional ( ) { return false ; } public void onSessionCreated ( ) throws IOException { return ; } public
1,553
<s> package org . oddjob . values ; import java . util . Map ; import junit . framework . TestCase ; import org . apache . commons . beanutils . DynaBean ; 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 . OddjobDescriptorFactory ; import org . oddjob . OddjobLookup ; import org . oddjob . arooa . ArooaBeanDescriptor ; import org . oddjob . arooa . ArooaDescriptor ; import org . oddjob . arooa . ArooaSession ; import org . oddjob . arooa . ArooaType ; import org . oddjob . arooa . ArooaValue ; import org . oddjob . arooa . ConfiguredHow ; import org . oddjob . arooa . ElementMappings ; import org . oddjob . arooa . beandocs . MappingsContents ; import org . oddjob . arooa . beanutils . BeanUtilsPropertyAccessor ; import org . oddjob . arooa . convert . ArooaConversionException ; import org . oddjob . arooa . convert . ArooaConverter ; import org . oddjob . arooa . convert . DefaultConverter ; import org . oddjob . arooa . life . ArooaSessionAware ; import org . oddjob . arooa . life . InstantiationContext ; import org . oddjob . arooa . parsing . ArooaElement ; import org . oddjob . arooa . reflect . ArooaClass ; import org . oddjob . arooa . reflect . BeanOverview ; import org . oddjob . arooa . reflect . PropertyAccessor ; import org . oddjob . arooa . registry . SimpleBeanRegistry ; import org . oddjob . arooa . standard . StandardArooaSession ; import org . oddjob . arooa . types . ArooaObject ; import org . oddjob . arooa . types . ValueType ; import org . oddjob . arooa . xml . XMLConfiguration ; import org . oddjob . describe . UniversalDescriber ; import org . oddjob . state . JobState ; import org . oddjob . state . ParentState ; public class VariablesJobTest extends TestCase { private static final Logger logger = Logger . getLogger ( VariablesJobTest . class ) ; protected void setUp ( ) { logger . debug ( "" + getName ( ) + "" ) ; } public void testSimple ( ) throws Exception { ValueType vt = new ValueType ( ) ; vt . setValue ( new ArooaObject ( "fred" ) ) ; VariablesJob test = new VariablesJob ( ) ; PropertyUtils . setProperty ( test , "test" , vt ) ; PropertyUtils . setProperty ( test , "another" , vt ) ; ArooaValue result = ( ArooaValue ) PropertyUtils . getProperty ( test , "test" ) ; assertNotNull ( result ) ; Map < String , String > description = new UniversalDescriber ( new StandardArooaSession ( ) ) . describe ( test ) ; assertTrue ( description . containsKey (
1,554
<s> package com . fredbrunel . android . twitter ; import android . os . Handler ; import android . os . Message ; import jtwitter . TwitterConnection ; import jtwitter . TwitterConnectionException ; import jtwitter . TwitterResponse ; public class TwitterService { public static final int RESPONSE_OK = 0 ; public static final int RESPONSE_KO = 1 ; public static final int RESPONSE_CONN_KO = 2 ; public static final int REQUEST_FRIENDS_TIMELINE = 10 ; public static final int REQUEST_STATUS_UPDATE = 11 ; private TwitterConnection twitter ; public TwitterService ( String accessKey , String accessSecret ) { this . twitter = new TwitterConnection ( accessKey , accessSecret ) ; } public void requestFriendsTimeline ( Handler response ) { new Thread ( new DoGetFriendsTimeline ( response ) ) . start ( ) ; } public void requestUpdateStatus ( String text , Handler
1,555
<s> package de . fuberlin . wiwiss . pubby . negotiation ; import java . util . ArrayList ; import java . util . Collections ; import java . util . List ; import java . util . regex . Matcher ; import java . util . regex . Pattern ; public class MediaRangeSpec { private final static Pattern tokenPattern ; private final static Pattern parameterPattern ; private final static Pattern mediaRangePattern ; private final static Pattern qValuePattern ; static { String token = "" ; String quotedString = "" ; String parameter = "" + token + ")=(?:(" + token + ")|" + quotedString + ")" ; String qualityValue = "" ; String quality = "" ; String regex = "(" + token + ")/(" + token + ")" + "((?:\\s*" + parameter + ")*)" + "(?:\\s*" + quality + ")?" + "((?:\\s*" + parameter + ")*)" ; tokenPattern = Pattern . compile ( token ) ; parameterPattern = Pattern . compile ( parameter ) ; mediaRangePattern = Pattern . compile ( regex ) ; qValuePattern = Pattern . compile ( qualityValue ) ; } public static MediaRangeSpec parseType ( String mediaType ) { MediaRangeSpec m = parseRange ( mediaType ) ; if ( m == null || m . isWildcardType ( ) || m . isWildcardSubtype ( ) ) { return null ; } return m ; } public static MediaRangeSpec parseRange ( String mediaRange ) { Matcher m = mediaRangePattern . matcher ( mediaRange ) ; if ( ! m . matches ( ) ) { return null ; } String type = m . group ( 1 ) . toLowerCase ( ) ; String subtype = m . group ( 2 ) . toLowerCase ( ) ; String unparsedParameters = m . group ( 3 ) ; String qValue = m . group ( 7 ) ; m = parameterPattern . matcher ( unparsedParameters ) ; if ( "*" . equals ( type ) && ! "*" . equals ( subtype ) ) { return null ; } List < String > parameterNames = new ArrayList < String > ( ) ; List < String > parameterValues = new ArrayList < String > ( ) ; while ( m . find ( ) ) { String name = m . group ( 1 ) . toLowerCase ( ) ; String value = ( m . group ( 3 ) == null ) ? m . group ( 2 ) : unescape ( m . group ( 3 ) ) ; parameterNames . add ( name ) ; parameterValues . add ( value ) ; } double quality = 1.0 ; if ( qValue != null && qValuePattern . matcher ( qValue ) . matches ( ) ) { try { quality = Double . parseDouble ( qValue ) ; } catch ( NumberFormatException ex ) { } } return new MediaRangeSpec ( type , subtype , parameterNames , parameterValues , quality ) ; } public static List < MediaRangeSpec > parseAccept ( String s ) { List < MediaRangeSpec > result = new ArrayList < MediaRangeSpec > ( ) ; Matcher m = mediaRangePattern . matcher ( s ) ; while ( m . find ( ) ) { result . add ( parseRange ( m . group ( ) ) ) ; } return result ; } private static String unescape ( String s ) { return s . replaceAll ( "\\\\(.)" , "$1" ) ; } private static String escape ( String s ) { return s . replaceAll ( "[\\\\\"]" , "\\\\$0" ) ; } private final String type ; private final String subtype ; private final List < String > parameterNames ; private final List < String > parameterValues ; private final String mediaType ; private final double quality ; private MediaRangeSpec ( String type , String subtype , List < String > parameterNames , List < String > parameterValues , double quality ) { this . type = type ; this . subtype = subtype ; this . parameterNames = Collections . unmodifiableList ( parameterNames ) ; this . parameterValues = parameterValues ; this . mediaType = buildMediaType ( ) ; this . quality = quality ; } private String buildMediaType ( ) { StringBuffer result = new StringBuffer ( ) ; result . append ( type ) ; result . append ( "/" ) ; result . append ( subtype ) ; for ( int i = 0 ; i < parameterNames . size ( ) ; i ++ ) { result . append ( ";" ) ; result . append ( parameterNames . get ( i ) ) ; result . append ( "=" ) ; String value = parameterValues . get ( i ) ; if ( tokenPattern . matcher ( value ) . matches ( ) ) { result . append ( value ) ; } else { result . append ( "\"" ) ; result . append ( escape ( value ) ) ; result . append ( "\"" ) ; } } return result . toString ( ) ; } public String getType ( ) { return type ; } public String getSubtype ( ) { return subtype ; } public String getMediaType ( ) { return mediaType ; } public List < String > getParameterNames ( ) { return parameterNames ; } public String getParameter ( String parameterName ) { for ( int i = 0 ; i < parameterNames . size ( ) ; i ++ ) { if ( parameterNames . get ( i ) . equals ( parameterName . toLowerCase ( ) ) ) { return parameterValues . get ( i ) ; } } return null ; } public boolean
1,556
<s> package org . oddjob . designer . components ; import org . oddjob . arooa . design . DesignFactory ; import org . oddjob . arooa . design . DesignInstance ; import org . oddjob . arooa . design . DesignProperty ; import org . oddjob . arooa . design . etc . FileAttribute ; import org . oddjob . arooa . design . screem . BorderedGroup ; import org . oddjob . arooa . design . screem . FileSelection ; import org . oddjob . arooa . design . screem . Form ; import org . oddjob . arooa . design . screem . StandardForm ; import org . oddjob . arooa . parsing . ArooaContext ; import org . oddjob . arooa . parsing . ArooaElement ; public class MkdirDC implements DesignFactory { public DesignInstance
1,557
<s> package org . rubypeople . rdt . internal . ui . compare ; import java . util . ArrayList ; import java . util . List ; import org . eclipse . compare . contentmergeviewer . ITokenComparator ; import org . eclipse . compare . rangedifferencer . IRangeComparator ; import org . eclipse . core . runtime . Assert ; import org . rubypeople . rdt . core . ToolFactory ; import org . rubypeople . rdt . core . compiler . IScanner ; import org . rubypeople . rdt . core . compiler . InvalidInputException ; public class RubyTokenComparator implements ITokenComparator { private String fText ; private boolean fShouldEscape = true ; private List < Integer > fStarts ; private List < Integer > fLengths ; public
1,558
<s> package com . asakusafw . compiler . flow . processor ; import java . util . List ; import com . asakusafw . compiler . common . TargetOperator ; import com . asakusafw . compiler . flow . RendezvousProcessor ; import com . asakusafw . utils . collections . Lists ; import com . asakusafw . utils . java . model . syntax . Expression ; import com . asakusafw . utils . java . model . syntax . ModelFactory ; import com . asakusafw . utils . java . model . util . ExpressionBuilder ; import com . asakusafw . utils . java . model . util . Models ; import com . asakusafw . vocabulary . flow . graph . FlowElementPortDescription ; import com . asakusafw . vocabulary . flow . graph . OperatorDescription ; import com . asakusafw . vocabulary . flow .
1,559
<s> package hudson . jbpm . hibernate ; import hudson . model . Hudson ; import hudson . model . Job ; import hudson . model . Run ; import org . jbpm . context . exe . Converter ; public class RunToStringConverter implements Converter { private static final long serialVersionUID = 1L ; public boolean supports ( Object value ) { if ( value == null ) return true ; return Run . class . isAssignableFrom ( value . getClass ( ) ) ; } public Object convert ( Object o ) { Run < ? , ? > run = ( Run < ? , ? > ) o ; Job < ? , ? > job = run . getParent ( ) ; String convertedValue = job . getName ( ) + "#" + run . getNumber ( ) ; return
1,560
<s> package net . sf . sveditor . ui . pref ; import java . util . HashMap ; import java . util . Map ; import net . sf . sveditor . core . XMLTransformUtils ; import net . sf . sveditor . core . templates . DefaultTemplateParameterProvider ; import net . sf . sveditor . ui . SVUiPlugin ; import org . eclipse . core . runtime . preferences . AbstractPreferenceInitializer ; import org . eclipse . jface . preference . IPreferenceStore ; import org . eclipse . jface . preference . PreferenceConverter ; import org . eclipse . swt . SWT ; import org . eclipse . swt . graphics . RGB ; public class SVEditorPrefsInitialize extends AbstractPreferenceInitializer { public void initializeDefaultPreferences ( ) { IPreferenceStore store = SVUiPlugin . getDefault ( ) . getPreferenceStore ( ) ; PreferenceConverter . setDefault ( store , SVEditorPrefsConstants . P_DEFAULT_C , new RGB ( 0 , 0 , 0 ) ) ; PreferenceConverter . setDefault ( store , SVEditorPrefsConstants . P_COMMENT_C , new RGB ( 0 , 128 , 0 ) ) ; PreferenceConverter . setDefault ( store , SVEditorPrefsConstants . P_STRING_C , new RGB ( 42 , 0 , 255 ) ) ; PreferenceConverter . setDefault ( store , SVEditorPrefsConstants . P_KEYWORD_C , new RGB ( 128 , 0 , 64 ) ) ; PreferenceConverter . setDefault ( store , SVEditorPrefsConstants . P_CONTENT_ASSIST_HOVER_BG_COLOR , new RGB ( 0xFF , 0xFF , 0xC0 ) ) ; PreferenceConverter . setDefault ( store , SVEditorPrefsConstants . P_CONTENT_ASSIST_HOVER_FG_COLOR , new RGB ( 0x00 , 0x00 , 0x00 ) ) ; store . setDefault ( SVEditorPrefsConstants . P_DEFAULT_S ,
1,561
<s> package com . aptana . rdt . internal . ui . actions ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . core . runtime . IStatus ; import org . eclipse . core . runtime . jobs . Job ; import org . eclipse . jface . action . IAction ; import org . eclipse . jface . dialogs . MessageDialog ; import org . eclipse . jface . viewers . ISelection ; import org . eclipse . jface . viewers . IStructuredSelection ; import org . eclipse . swt . widgets . Display ; import org . eclipse . ui . IObjectActionDelegate ; import org . eclipse . ui . IViewActionDelegate ; import org . eclipse . ui . IViewPart ; import org . eclipse . ui . IWorkbenchPart ; import com . aptana . rdt . core . gems . Gem ; import com . aptana . rdt . core . gems . IGemManager ; import com . aptana . rdt . ui . gems . GemsMessages ; import com . aptana . rdt . ui . gems . GemsView ; import com . aptana . rdt . ui . gems . RemoveGemDialog ; public class RemoveGemActionDelegate implements IObjectActionDelegate , IViewActionDelegate { private GemsView view ; private Gem selectedGem ; public void setActivePart ( IAction action , IWorkbenchPart targetPart ) { } public void run ( IAction action ) { if ( selectedGem == null ) return ; boolean okay = MessageDialog . openConfirm ( view . getViewSite ( ) . getShell ( ) , null , GemsMessages . bind ( GemsMessages . RemoveGemDialog_msg , selectedGem . getName ( ) ) ) ; if ( ! okay ) return ; Job job = null ; if ( selectedGem . hasMultipleVersions ( ) ) { final int [ ] result = new int [ 1 ] ; final String [ ] version = new String [ 1 ] ; Display . getDefault ( ) . syncExec ( new Runnable ( ) { public void run ( ) { RemoveGemDialog dialog = new RemoveGemDialog ( Display . getDefault ( ) . getActiveShell (
1,562
<s> package com . asakusafw . compiler . repository ; import java . lang . annotation . Annotation ; 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 . FlowCompilingEnvironment ; import com . asakusafw . compiler . flow . FlowElementProcessor ; import com . asakusafw . compiler . flow . LinePartProcessor ; import com . asakusafw . compiler . flow . LineProcessor ; import com . asakusafw . compiler . flow . RendezvousProcessor ; import com . asakusafw . utils . collections . Maps ; import com . asakusafw . vocabulary . flow . graph . FlowElementDescription ; import com . asakusafw . vocabulary . flow . graph . FlowElementKind ; import com . asakusafw . vocabulary . flow . graph . OperatorDescription ; public class SpiFlowElementProcessorRepository extends FlowCompilingEnvironment . Initialized implements FlowElementProcessor . Repository { static final Logger LOG = LoggerFactory . getLogger ( SpiFlowElementProcessorRepository . class ) ; private LinePartProcessor emptyProcessor ; private Map < Class < ? extends Annotation > , LineProcessor > lines ; private Map < Class < ? extends Annotation > , RendezvousProcessor > rendezvouses ; @ Override protected void doInitialize ( ) { LOG . info ( "" ) ; this . emptyProcessor = new LinePartProcessor . Nop ( ) ; this . lines = Maps . create ( ) ; this . rendezvouses = Maps . create ( ) ; emptyProcessor . initialize ( getEnvironment ( ) ) ; Map < Class < ? > , FlowElementProcessor > saw = Maps . create ( ) ; ServiceLoader < FlowElementProcessor > services = ServiceLoader . load ( FlowElementProcessor . class , getEnvironment ( ) . getServiceClassLoader ( ) ) ; for ( FlowElementProcessor proc : services ) { proc . initialize ( getEnvironment ( ) ) ; Class < ? extends Annotation > targetType = proc . getTargetAnnotationType ( ) ; if ( saw . containsKey ( targetType ) ) { getEnvironment ( ) . error ( "" , targetType .
1,563
<s> package com . asakusafw . compiler . flow ; import com . asakusafw . compiler . common . Precondition ; import com . asakusafw . vocabulary . flow . JobFlow ; import com .
1,564
<s> package org . rubypeople . rdt . internal . corext . util ; import java . io . File ; import java . io . FileInputStream ; import java . io . FileOutputStream ; import java . io . IOException ; import java . io . InputStreamReader ; import java . io . OutputStream ; import java . util . Collection ; import java . util . Hashtable ; import java . util . Iterator ; import java . util . LinkedHashMap ; import java . util . Map ; import java . util . Set ; import javax . xml . parsers . DocumentBuilder ; import javax . xml . parsers . DocumentBuilderFactory ; import javax . xml . parsers . ParserConfigurationException ; import javax . xml . transform . OutputKeys ; import javax . xml . transform . Transformer ; import javax . xml . transform . TransformerException ; import javax . xml . transform . TransformerFactory ; import javax . xml . transform . TransformerFactoryConfigurationError ; import javax . xml . transform . dom . DOMSource ; import javax . xml . transform . stream . StreamResult ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IPath ; import org . eclipse . core . runtime . IStatus ; import org . rubypeople . rdt . internal . corext . CorextMessages ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; import org . rubypeople . rdt . internal . ui . RubyUIException ; import org . rubypeople . rdt . internal . ui . RubyUIStatus ; import org . w3c . dom . Document ; import org . w3c . dom . Element ; import org . w3c . dom . Node ; import org . w3c . dom . NodeList ; import org . xml . sax . InputSource ; import org . xml . sax . SAXException ; public abstract class History { private static final String DEFAULT_ROOT_NODE_NAME = "" ; private static final String DEFAULT_INFO_NODE_NAME = "infoNode" ; private static final int MAX_HISTORY_SIZE = 60 ; private static RubyUIException createException ( Throwable t , String message ) { return new RubyUIException ( RubyUIStatus . createError ( IStatus . ERROR , message , t ) ) ; } private final Map fHistory ; private final Hashtable fPositions ; private final String fFileName ; private final String fRootNodeName ; private final String fInfoNodeName ; public History ( String fileName , String rootNodeName , String infoNodeName ) { fHistory = new LinkedHashMap ( 80 , 0.75f , true ) { private static final long serialVersionUID = 1L ; protected boolean removeEldestEntry ( Map . Entry eldest ) { return size ( ) > MAX_HISTORY_SIZE ; } } ; fFileName = fileName ; fRootNodeName = rootNodeName ; fInfoNodeName = infoNodeName ; fPositions = new Hashtable ( MAX_HISTORY_SIZE ) ; } public History ( String fileName ) { this ( fileName , DEFAULT_ROOT_NODE_NAME , DEFAULT_INFO_NODE_NAME ) ; } public synchronized void accessed ( Object object ) { fHistory . put ( getKey ( object ) , object ) ; rebuildPositions ( ) ; } public synchronized boolean contains ( Object object ) { return fHistory . containsKey ( getKey ( object ) ) ; } public synchronized boolean containsKey ( Object key ) { return fHistory . containsKey ( key ) ; } public synchronized boolean isEmpty ( ) { return fHistory . isEmpty ( ) ; } public synchronized Object remove ( Object object ) { Object removed = fHistory . remove ( getKey ( object ) ) ; rebuildPositions ( ) ; return removed ; } public synchronized Object removeKey ( Object key ) { Object removed = fHistory . remove ( key ) ; rebuildPositions ( ) ; return removed ; } public synchronized float getNormalizedPosition ( Object key ) { if ( ! containsKey ( key ) ) return 0.0f ; int pos = ( ( Integer ) fPositions . get ( key ) ) . intValue ( ) + 1 ; return ( float ) pos / ( float ) fHistory . size ( ) ; } public synchronized int getPosition ( Object key ) { if ( ! containsKey ( key ) ) return - 1 ; return ( ( Integer ) fPositions . get ( key ) ) . intValue ( ) ; } public synchronized void load ( ) { IPath stateLocation
1,565
<s> package org . rubypeople . rdt . internal . compiler . util ; import org . rubypeople . rdt . internal . core . util . CharOperation ; public final class HashtableOfObject implements Cloneable { public char [ ] keyTable [ ] ; public Object valueTable [ ] ; public int elementSize ; int threshold ; public HashtableOfObject ( ) { this ( 13 ) ; } public HashtableOfObject ( int size ) { this . elementSize = 0 ; this . threshold = size ; int extraRoom = ( int ) ( size * 1.75f ) ; if ( this . threshold == extraRoom ) extraRoom ++ ; this . keyTable = new char [ extraRoom ] [ ] ; this . valueTable = new Object [ extraRoom ] ; } public void clear ( ) { for ( int i = this . keyTable . length ; -- i >= 0 ; ) { this . keyTable [ i ] = null ; this . valueTable [ i ] = null ; } this . elementSize = 0 ; } public Object clone ( ) throws CloneNotSupportedException { HashtableOfObject result = ( HashtableOfObject ) super . clone ( ) ; result . elementSize = this . elementSize ; result . threshold = this . threshold ; int length = this . keyTable . length ; result . keyTable = new char [ length ] [ ] ; System . arraycopy ( this . keyTable , 0 , result . keyTable , 0 , length ) ; length = this . valueTable . length ; result . valueTable = new Object [ length ] ; System . arraycopy ( this . valueTable , 0 , result . valueTable , 0 , length ) ; return result ; } public boolean containsKey ( char [ ] key ) { int length = keyTable . length , index = CharOperation . hashCode ( key ) % length ; int keyLength = key . length ; char [ ] currentKey ; while ( ( currentKey = keyTable [ index ] ) != null ) { if ( currentKey . length == keyLength && CharOperation . equals ( currentKey , key ) ) return true ; if ( ++ index
1,566
<s> package org . oddjob . state ; import org . oddjob . Structural ; public class WorstStateOp implements StateOperator { @ Override public ParentState evaluate ( State ... states ) { new AssertNonDestroyed ( ) . evaluate ( states ) ; ParentState state = ParentState . READY ; if ( states . length > 0 ) { state = new ParentStateConverter ( ) . toStructuralState ( states [ 0 ] ) ; for ( int i = 1 ; i < states . length ; ++ i ) { State next = states [ i ] ; if ( state . isStoppable ( ) || next . isStoppable ( ) ) { state = ParentState . ACTIVE ; } else if ( state . isException ( ) || next . isException ( ) ) { state = ParentState . EXCEPTION ; } else if ( state . isIncomplete ( ) || next . isIncomplete ( ) )
1,567
<s> package net . sf . sveditor . core ; import java . util . ArrayList ; import java . util . Iterator ; import java . util . List ; public class StringIterableIterator implements Iterable < String > , Iterator < String > { private List < Iterable < String > > fIterables ; private int fIterableIdx ; private Iterator < String > fIterator ; public StringIterableIterator ( ) { fIterables = new ArrayList < Iterable < String > > ( ) ; } private StringIterableIterator ( List < Iterable < String > > it ) {
1,568
<s> package org . rubypeople . rdt . internal . debug . ui . preferences ; import org . eclipse . swt . SWT ; import org . eclipse . swt . layout . GridData ; import org . eclipse . swt . layout . GridLayout ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Control ; import org . eclipse . swt . widgets . Label ; import org . eclipse . swt . widgets . Shell ; import org . eclipse . swt . widgets . Text ; import org . rubypeople . rdt . internal . debug . ui . RdtDebugUiMessages ; import org . rubypeople . rdt . internal . debug . ui . evaluation . EvaluationExpression ; import org . rubypeople . rdt . internal . ui . dialogs . StatusDialog ; public class EditEvaluationExpressionDialog extends StatusDialog { protected EvaluationExpression evaluationExpression ; protected Text txtName ; protected Text txtDescription ; protected Text txtExpression ; public EditEvaluationExpressionDialog ( Shell parentShell , String aDialogTitle , EvaluationExpression expr ) { super ( parentShell ) ; setTitle ( aDialogTitle ) ; evaluationExpression = expr ; } protected void okPressed ( ) { evaluationExpression . setName ( txtName . getText ( ) ) ; evaluationExpression . setDescription ( txtDescription . getText ( ) ) ; evaluationExpression . setExpression ( txtExpression . getText ( ) ) ; super . okPressed ( ) ; } protected Control createDialogArea ( Composite parent ) { Composite composite = ( Composite ) super . createDialogArea ( parent ) ; GridLayout layout = new GridLayout ( ) ; layout . numColumns = 2 ; composite . setLayout (
1,569
<s> package org . rubypeople . rdt . internal . debug . core . breakpoints ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . debug . core . DebugPlugin ; import org . eclipse . debug . core . model . Breakpoint ; import org . rubypeople . rdt . debug . core . RdtDebugModel ; public abstract class RubyBreakpoint extends Breakpoint { protected static final String EXPIRED = "" ; protected static final String HIT_COUNT = "" ; protected static final String TYPE_NAME = "" ; protected static final String INSTALL_COUNT = "" ; protected String fInstalledTypeName = null ; protected void setTypeName ( String typeName ) throws CoreException { setAttribute ( TYPE_NAME , typeName ) ; } public String getTypeName ( ) throws CoreException { if ( fInstalledTypeName == null ) { return ensureMarker (
1,570
<s> package org . rubypeople . rdt . debug . core . tests ; import java . io . BufferedReader ; import java . io . IOException ; import java . io . InputStream ; import java . io . InputStreamReader ; public class OutputRedirectorThread extends Thread { private InputStream inputStream ; private String lastLine = "No output." ; public OutputRedirectorThread ( InputStream aInputStream ) { inputStream = aInputStream ; } public void run ( ) { System . out . println ( "" ) ; BufferedReader br = new BufferedReader (
1,571
<s> package com . asakusafw . bulkloader . bean ; import com . asakusafw . bulkloader . common . ExportTempTableStatus ; public class ExportTempTableBean { private String jobflowSid ; private String exportTableName ; private String temporaryTableName ; private String duplicateFlagTableName = null ; private ExportTempTableStatus tempTableStatus ; public String getJobflowSid ( ) { return jobflowSid ; } public void setJobflowSid ( String jobflowSid ) { this . jobflowSid = jobflowSid ; } public String getExportTableName ( ) { return exportTableName ; } public void setExportTableName ( String tableName ) { this . exportTableName =
1,572
<s> package com . asakusafw . compiler . testing . flow ; import com . asakusafw . compiler . flow . testing . external . Ex1MockImporterDescription ; import com . asakusafw . compiler . flow . testing . model . Ex1 ; import com . asakusafw . compiler . flow . testing . operator . ExOperatorFactory ; import com . asakusafw . compiler . flow . testing . operator . ExOperatorFactory . Update ; import com . asakusafw . vocabulary . flow . Export ; import com . asakusafw . vocabulary . flow . FlowDescription ; import com . asakusafw . vocabulary . flow . Import ; import com . asakusafw . vocabulary
1,573
<s> package com . asakusafw . dmdl . java . emitter . driver ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . util . Arrays ; import org . hamcrest . BaseMatcher ; import org . hamcrest . Description ; import org . hamcrest . Matcher ; import org . junit . Before ; import org . junit . Test ; import com . asakusafw . dmdl . java . GeneratorTesterRoot ; import com . asakusafw . vocabulary . model . Joined ; import com . asakusafw . vocabulary . model . Key ; public class JoinDriverTest extends GeneratorTesterRoot { @ Before public void setUp ( ) throws Exception { emitDrivers . add ( new JoinDriver ( ) ) ; } @ Test public void simple_join ( ) { ModelLoader loader = generate ( ) ; Joined annotation = loader . modelType ( "Simple" ) . getAnnotation ( Joined . class ) ; assertThat ( annotation , not ( nullValue ( ) ) ) ; assertThat ( annotation . terms ( ) . length , is ( 2 ) ) ; Joined . Term a = annotation . terms ( ) [ 0 ] ; assertThat ( a . source ( ) , eq ( loader . modelType ( "A" ) ) ) ; assertThat ( a . mappings ( ) . length , is ( 2 ) ) ; assertThat ( a . mappings ( ) , hasItemInArray ( mapping ( "sid" , "sid" ) ) ) ; assertThat ( a . mappings ( ) , hasItemInArray ( mapping ( "value" , "aValue" ) ) ) ; assertThat ( a . shuffle ( ) , is ( grouping ( "sid" ) ) ) ; Joined . Term b = annotation . terms ( ) [ 1 ] ; assertThat ( b . source ( ) , eq ( loader . modelType ( "B" ) ) ) ; assertThat ( b . mappings ( ) . length , is ( 2 ) ) ; assertThat ( b . mappings ( ) , hasItemInArray ( mapping ( "sid" , "sid" ) ) ) ; assertThat ( b . mappings ( ) , hasItemInArray ( mapping ( "value" , "bValue" ) ) ) ; assertThat ( b . shuffle ( ) , is ( grouping ( "sid" ) ) ) ; } @ Test public void join_rename_key ( ) { ModelLoader loader = generate ( ) ; Joined annotation = loader . modelType ( "Simple" ) . getAnnotation ( Joined . class ) ; assertThat ( annotation , not ( nullValue ( ) ) ) ; assertThat ( annotation . terms ( ) . length , is ( 2 ) ) ; Joined . Term a = annotation . terms ( ) [ 0 ] ; assertThat ( a . source ( ) , eq ( loader . modelType ( "A" ) ) ) ; assertThat ( a . mappings ( ) . length , is ( 2 ) ) ; assertThat ( a . mappings ( ) , hasItemInArray ( mapping ( "sid" , "key" ) ) ) ; assertThat ( a . mappings ( ) , hasItemInArray ( mapping ( "value" , "aValue" ) ) ) ;
1,574
<s> package com . asakusafw . runtime . stage . collector ; import java . io . IOException ; import org . apache . hadoop . io . Writable ; import org . apache . hadoop . mapreduce . Mapper ; public abstract class SlotDistributor < T extends Writable > extends Mapper < Object , T , SortableSlot , WritableSlot > { public static final String NAME_SET_SLOT_SPEC = "setSlotSpec" ; private final SortableSlot keyOut = new SortableSlot ( ) ; private final WritableSlot valueOut = new WritableSlot ( ) ;
1,575
<s> package org . rubypeople . rdt . core . compiler ; import org . rubypeople . rdt . internal . core . util . CharOperation ; public abstract class CategorizedProblem implements IProblem { public static final int CAT_UNSPECIFIED = 0 ; public static final int CAT_BUILDPATH = 10 ; public static final int CAT_SYNTAX = 20 ; public static final int CAT_IMPORT = 30 ; public static final int CAT_TYPE = 40 ; public static final int CAT_MEMBER = 50 ; public static final int
1,576
<s> package com . asakusafw . runtime . core ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . io . IOException ; import java . util . ArrayList ; import java . util . Arrays ; import java . util . List ; import org . junit . Before ; import org . junit . Test ; import com . asakusafw . runtime . core . Report . Level ; public class ReportTest { @ Before public void setUp ( ) throws Exception { Report . setDelegate ( null ) ; Mock . levels . clear ( ) ; Mock . messages . clear ( ) ; } @ Test ( expected = Report . FailedException . class ) public void noDelegate ( ) { Report . info ( "Hello" ) ; } @ Test public void info ( ) { Report . setDelegate ( new Mock ( ) ) ; Report . info ( "Hello" ) ; assertThat ( Mock . levels , is ( list ( Level . INFO ) ) ) ; assertThat ( Mock . messages , is ( list ( "Hello" ) ) ) ; } @ Test ( expected = Report . FailedException . class ) public void info_error ( ) { Report . setDelegate ( new Report . Delegate ( ) { @ Override protected void report ( Level level , String message ) throws IOException { throw new IOException ( ) ; } } ) ; Report . info ( "Hello" ) ; } @ Test public void warn ( ) { Report . setDelegate ( new Mock ( ) ) ; Report . warn ( "Hello" ) ; assertThat ( Mock . levels , is ( list ( Level . WARN ) ) ) ; assertThat ( Mock . messages , is ( list ( "Hello" ) ) ) ; } @ Test ( expected = Report . FailedException . class ) public void warn_error ( ) { Report . setDelegate ( new Report . Delegate ( ) { @ Override protected void report ( Level level , String message ) throws IOException { throw new IOException ( ) ; } } ) ; Report . warn ( "Hello" ) ; } @ Test public void testError ( ) { Report . setDelegate ( new Mock ( ) ) ; Report . error ( "Hello" ) ; assertThat ( Mock . levels , is ( list ( Level . ERROR ) ) ) ; assertThat ( Mock . messages , is ( list ( "Hello" ) ) ) ; } @ Test ( expected = Report . FailedException . class ) public void error_error ( ) { Report . setDelegate ( new Report . Delegate ( ) { @ Override protected void report ( Level level , String message ) throws IOException { throw new IOException ( ) ; } } ) ; Report . error ( "Hello" ) ; } @
1,577
<s> package org . oddjob . images ; import java . util . ArrayList ; import java . util . List ; import javax . swing . ImageIcon ; import junit . framework . TestCase ; import org . oddjob . Iconic ; public class IconHelperTest extends TestCase { class OurListener implements IconListener { List < IconEvent > events = new ArrayList < IconEvent > ( ) ; @ Override public void iconEvent ( IconEvent e ) { events . add ( e ) ; } } class OurIconic implements Iconic { @ Override public void addIconListener ( IconListener listener ) { } @ Override public void removeIconListener ( IconListener listener ) { } @ Override public ImageIcon iconForId ( String id ) { throw new RuntimeException ( ) ; } } public void testSameIdNotFired ( ) { IconHelper test = new IconHelper ( new OurIconic ( ) ) ; OurListener listener = new OurListener ( ) ; test . addIconListener ( listener ) ; assertEquals ( "ready" , listener . events . get ( 0 ) . getIconId
1,578
<s> package org . oddjob . jmx . server ; import javax . management . JMException ; import javax . management . MBeanServer ; import javax . management . MBeanServerFactory ; import javax . management . ObjectName ; import junit . framework . TestCase ; import org . oddjob . arooa . registry . Address ; import org . oddjob . jmx . handlers . StructuralHandlerFactory ; import org . oddjob . jobs . structural . JobFolder ; public class OddjobMBeanFactoryTest extends TestCase { private class OurServerContext extends MockServerContext { ServerInterfaceManagerFactory simf ; @ Override public
1,579
<s> package com . asakusafw . runtime . value ; import java . io . IOException ; import org . apache . hadoop . io . WritableComparator ; final class ByteArrayUtil { static int compare ( int a , int b ) { if ( a == b ) { return 0 ; } if ( a < b ) { return - 1 ; } return + 1 ; } static int compare ( long a , long b ) { if ( a == b ) { return 0 ; } if ( a < b ) { return - 1 ; } return + 1 ; } static short readShort
1,580
<s> package net . sf . sveditor . core . parser ; import net . sf . sveditor . core . db . ISVDBAddChildItem ; import net . sf . sveditor . core . db . SVDBClockingBlock ; import net . sf . sveditor . core . db . expr . SVDBExpr ; public class SVClockingBlockParser extends SVParserBase { public SVClockingBlockParser ( ISVParser parser ) { super ( parser ) ; } public void parse ( ISVDBAddChildItem parent ) throws SVParseException { SVDBClockingBlock clk_blk = new SVDBClockingBlock ( "" ) ; String name = "" ; clk_blk . setLocation ( fLexer . getStartLocation ( ) ) ; parent . addChildItem ( clk_blk ) ; try { String type = null ; if ( fLexer . peekKeyword ( "default" , "global" ) ) { type = fLexer . eatToken ( ) ; } fLexer . readKeyword ( "clocking" ) ; if ( ! fLexer . peekOperator ( "@" ) ) { name = fLexer . readId ( ) ; } clk_blk . setName ( name ) ; clk_blk . setExpr ( fParsers . exprParser ( ) . clocking_event ( ) ) ; fLexer . readOperator ( ";" ) ; if ( type == null || ! type . equals ( "global" ) ) { while ( fLexer . peek ( ) != null && ! fLexer . peekKeyword ( "endclocking" ) ) { clocking_item ( clk_blk ) ; } } clk_blk . setEndLocation ( fLexer . getStartLocation ( ) ) ; fLexer . readKeyword ( "endclocking" ) ; if ( fLexer . peekOperator ( ":" ) ) { fLexer . eatToken ( ) ; fLexer . readId ( ) ; } } finally { } } private void clocking_item ( SVDBClockingBlock clk_blk ) throws SVParseException { if ( fLexer . peekKeyword ( "default" ) ) { default_skew ( ) ; fLexer . readOperator ( ";" ) ; } else if ( fLexer . peekKeyword ( "input" , "output" , "inout" ) ) { String dir = fLexer . eatToken ( ) ; if ( ! dir . equals ( "inout" ) ) { if ( fLexer . peekKeyword ( "posedge" , "negedge" ) || fLexer . peekOperator ( "#" ) ) { clocking_skew ( ) ; if ( dir . equals ( "input" ) && fLexer . peekKeyword ( "output" ) ) { fLexer . eatToken ( ) ; if ( fLexer . peekKeyword ( "posedge" , "negedge" ) || fLexer . peekOperator ( "#" ) ) { clocking_skew ( ) ; } } } } } else { fParsers . attrParser ( ) . parse ( null ) ; assertion_item_declaration ( clk_blk ) ; fLexer . eatToken ( ) ; } } private void assertion_item_declaration ( ISVDBAddChildItem parent ) throws SVParseException { String type = fLexer . readKeyword ( "property" , "sequence" , "let" ) ; if ( type . equals ( "property" ) ) { fParsers . propertyParser ( ) . property ( parent ) ; } else if ( type . equals
1,581
<s> package org . rubypeople . rdt . refactoring . tests . core . movefield ; import junit . framework . TestSuite ; import org . rubypeople . rdt . refactoring . tests . FileTestSuite ; import org . rubypeople . rdt . refactoring . tests . core . movefield . conditionchecks . TS_MoveFieldChecks ; public class TS_MoveField extends FileTestSuite { public static TestSuite suite ( ) { TestSuite suite = createSuite ( "Move Field" , "" ,
1,582
<s> package org . oddjob . jobs ; import java . io . IOException ; import junit . framework . TestCase ; import org . apache . log4j . Logger ; import org . oddjob . ConsoleCapture ; import org . oddjob . Oddjob ; import org . oddjob . OurDirs ; import org . oddjob . arooa . xml . XMLConfiguration ; import org . oddjob . launch . Launcher ; import org . oddjob . state . ParentState ; public class LaunchJobTest extends TestCase { private static final Logger logger = Logger . getLogger ( LaunchJobTest . class ) ; public void testLaunchAsjobInOddjob ( ) throws IOException { ClassLoader existingContext = Thread . currentThread ( ) . getContextClassLoader ( ) ; Thread . currentThread (
1,583
<s> package net . sf . sveditor . core . db ; public class SVDBPreProcCond extends SVDBScopeItem { public String fConditional ; public SVDBPreProcCond ( ) { super ( "" , SVDBItemType . PreProcCond ) ; } public SVDBPreProcCond (
1,584
<s> package com . sun . tools . hat . internal . model ; public class JavaStatic { private final JavaField field ; private JavaThing value ; public JavaStatic ( JavaField field , JavaThing value ) { this . field = field ; this
1,585
<s> package org . oddjob . monitor ; import java . awt . event . ActionEvent ; import java . awt . event . ComponentAdapter ; import java . awt . event . ComponentEvent ; import java . awt . event . WindowAdapter ; import java . awt . event . WindowEvent ; import java . beans . PropertyChangeEvent ; import java . beans . PropertyChangeListener ; import java . beans . PropertyVetoException ; import java . beans . VetoableChangeListener ; import java . beans . VetoableChangeSupport ; import java . io . File ; import java . io . FileWriter ; import java . io . IOException ; import java . io . ObjectInputStream ; import java . io . ObjectOutputStream ; import java . io . PrintWriter ; import java . util . ArrayList ; import java . util . Collection ; import java . util . LinkedHashSet ; import java . util . List ; import java . util . Set ; import javax . inject . Inject ; import javax . swing . AbstractAction ; import javax . swing . Action ; import javax . swing . JFileChooser ; import javax . swing . JFrame ; import javax . swing . JMenu ; import javax . swing . JMenuItem ; import javax . swing . JOptionPane ; import javax . swing . JSeparator ; import javax . swing . JTree ; import javax . swing . SwingUtilities ; import javax . swing . UIManager ; import javax . swing . WindowConstants ; import javax . swing . event . TreeModelEvent ; import javax . swing . event . TreeModelListener ; import javax . swing . event . TreeSelectionEvent ; import javax . swing . event . TreeSelectionListener ; import org . apache . log4j . Logger ; import org . oddjob . FailedToStopException ; import org . oddjob . Oddjob ; import org . oddjob . OddjobServices ; import org . oddjob . OddjobShutdownThread ; import org . oddjob . Stoppable ; import org . oddjob . arooa . ArooaConfiguration ; import org . oddjob . arooa . ArooaParseException ; import org . oddjob . arooa . ArooaSession ; import org . oddjob . arooa . ConfigurationHandle ; import org . oddjob . arooa . deploy . annotations . ArooaAttribute ; import org . oddjob . arooa . design . view . ScreenPresence ; import org . oddjob . arooa . design . view . Standards ; import org . oddjob . arooa . parsing . ArooaContext ; import org . oddjob . arooa . parsing . ConfigOwnerEvent ; import org . oddjob . arooa . parsing . ConfigSessionEvent ; import org . oddjob . arooa . parsing . ConfigurationOwner ; import org . oddjob . arooa . parsing . ConfigurationSession ; import org . oddjob . arooa . parsing . ElementConfiguration ; import org . oddjob . arooa . parsing . OwnerStateListener ; import org . oddjob . arooa . parsing . SessionStateListener ; import org . oddjob . arooa . standard . StandardArooaSession ; import org . oddjob . arooa . xml . XMLArooaParser ; import org . oddjob . framework . SerializableJob ; import org . oddjob . monitor . context . AncestorSearch ; import org . oddjob . monitor . control . PropertyPolling ; import org . oddjob . monitor . model . ConfigContextInialiser ; import org . oddjob . monitor . model . ExplorerModel ; import org . oddjob . monitor . model . ExplorerModelImpl ; import org . oddjob . monitor . model . FileHistory ; import org . oddjob . monitor . model . JobTreeNode ; import org . oddjob . monitor . view . ExplorerComponent ; import org . oddjob . monitor . view . MonitorMenuBar ; import org . oddjob . state . State ; import org . oddjob . swing . SwingInputHandler ; import org . oddjob . util . SimpleThreadManager ; import org . oddjob . util . ThreadManager ; public class OddjobExplorer extends SerializableJob implements Stoppable { private static final long serialVersionUID = 2011101400L ; private static final Logger logger = Logger . getLogger ( OddjobExplorer . class ) ; public static final String ODDJOB_PROPERTY = "oddjob" ; public static final String DEFAULT_TITLE = "" ; protected transient VetoableChangeSupport vetoableChangeSupport ; private File dir ; private transient volatile Oddjob oddjob ; private transient ConfigurationSession focus ; private long pollingInterval = 5000 ; private transient String logFormat ; private File file ; private volatile transient JFrame frame ; private transient Action newExplorerAction ; private transient Action newAction ; private transient Action openAction ; private transient Action saveAction ; private transient Action saveAsAction ; private transient Action closeAction ; private transient Action exitAction ; private transient JMenu fileMenu ; private transient ExplorerModel explorerModel ; private transient ExplorerComponent explorerComponent ; private transient MonitorMenuBar menuBar ; private transient PropertyPolling propertyPolling ; private transient ThreadManager threadManager ; private transient OddjobServices oddjobServices ; private FileHistory fileHistory ; private ScreenPresence screen ; transient private Set < ConfigurationOwner > owners ; public OddjobExplorer ( ) { fileHistory = new FileHistory ( ) ; ScreenPresence whole = ScreenPresence . wholeScreen ( ) ; screen = whole . smaller ( 0.66 ) ; completeConstruction ( ) ; } public OddjobExplorer ( MultiViewController controller , ScreenPresence screen , FileHistory sharedFileHistory ) { this . screen = screen ; this . fileHistory = sharedFileHistory ; this . newExplorerAction = new NewExplorerAction ( controller ) ; completeConstruction ( ) ; } private void completeConstruction ( ) { vetoableChangeSupport = new VetoableChangeSupport ( this ) ; owners = new LinkedHashSet < ConfigurationOwner > ( ) ; newAction = new NewAction ( ) ; openAction = new OpenAction ( ) ; saveAction = new SaveAction ( ) ; saveAsAction = new SaveAsAction ( ) ; closeAction = new CloseAction ( ) ; exitAction = new ExitAction ( ) ; fileHistory . addChangeAction ( new Runnable ( ) { @ Override public void run ( ) { if ( frame == null ) { fileHistory . removeChangeAction ( this ) ; } else { SwingUtilities . invokeLater ( new Runnable ( ) { @ Override public void run ( ) { updateFileMenu ( ) ; } } ) ; } } } ) ; } protected ExplorerComponent getExplorerComponent ( ) { return explorerComponent ; } @ Inject public void setOddjobServices ( OddjobServices oddjobServices ) { this . oddjobServices = oddjobServices ; } @ Override public void setArooaSession ( ArooaSession session ) { super . setArooaSession ( session ) ; propertyPolling = new PropertyPolling ( this , session ) ; } public void setOddjob ( Oddjob oddjob ) throws PropertyVetoException { if ( this . oddjob == oddjob ) { return ; } Object oldValue = this . oddjob ; vetoableChangeSupport . fireVetoableChange ( ODDJOB_PROPERTY , oldValue , oddjob ) ; if ( this . oddjob != null ) { addFileHistory ( this . oddjob . getFile ( ) ) ; this . oddjob . destroy ( ) ; } this . oddjob = oddjob ; if ( oddjob != null && oddjob . getDir ( ) != null ) { this . dir = oddjob . getDir ( ) ; } firePropertyChange ( ODDJOB_PROPERTY , oldValue , this . oddjob ) ; } public Oddjob getOddjob ( ) { return oddjob ; } @ ArooaAttribute public void setDir ( File dir ) { this . dir = dir ; } public File getDir ( ) { return dir ; } public String getTitle ( ) { return frame . getTitle ( ) ; } void addFileHistory ( File file ) { if ( file == null ) { return ; } fileHistory . addHistory ( file ) ; } void updateFileMenu ( ) { fileMenu . removeAll ( ) ; if ( newExplorerAction != null ) { fileMenu . add ( new JMenuItem ( newExplorerAction ) ) ; } fileMenu . add ( new JMenuItem ( newAction ) ) ; fileMenu . add ( new JMenuItem ( openAction ) ) ; fileMenu . add ( new JMenuItem ( saveAction ) ) ; fileMenu . add ( new JMenuItem ( saveAsAction ) ) ; fileMenu . add ( new JMenuItem ( closeAction ) ) ; fileMenu . add ( new JSeparator ( ) ) ; Action a [ ] = new Action [ fileHistory . size ( ) ] ; for ( int i = 0 ; i < fileHistory . size ( ) ; ++ i ) { a [ fileHistory . size ( ) - i - 1 ] = new HistoryAction ( fileHistory . size ( ) - i , ( File ) fileHistory . get ( i ) ) ; } boolean hasHistory = false ; for ( int i = 0 ; i < a . length ; ++ i ) { hasHistory = true ; fileMenu . add ( new JMenuItem ( a [ i ] ) ) ; } if ( hasHistory ) { fileMenu . add ( new JSeparator ( ) ) ; } fileMenu . add ( new JMenuItem ( exitAction ) ) ; } public void show ( ) { if ( frame == null ) { throw new IllegalStateException ( "" ) ; } frame . toFront ( ) ; } class CheckOddjobStopped implements VetoableChangeListener { public void vetoableChange ( PropertyChangeEvent evt ) throws PropertyVetoException { if ( ! ODDJOB_PROPERTY . equals ( evt . getPropertyName ( ) ) ) { return ; } Oddjob oddjob = ( Oddjob ) evt . getOldValue ( ) ; if ( oddjob == null ) { return ; } State state = oddjob . lastStateEvent ( ) . getState ( ) ; if ( state . isStoppable ( ) ) { String message = "" + state ; JOptionPane . showMessageDialog ( frame , message , "" , JOptionPane . ERROR_MESSAGE ) ; throw new PropertyVetoException ( message , evt ) ; } String [ ] active = threadManager . activeDescriptions ( ) ; if ( active . length > 0 ) { StringBuilder message = new StringBuilder ( ) ; message . append ( "" ) ; for ( int i = 0 ; i < active . length ; ++ i ) { message . append ( active [ i ] ) ; message . append ( '\n' ) ; } message . append ( '\n' ) ; JOptionPane . showMessageDialog ( frame , message , "" , JOptionPane . ERROR_MESSAGE ) ; throw new PropertyVetoException ( message . toString ( ) , evt ) ; } } } class TrackConfigurationOwners implements TreeModelListener { public void treeNodesChanged ( TreeModelEvent e ) { } public void treeStructureChanged ( TreeModelEvent e ) { } public void treeNodesInserted ( TreeModelEvent event ) { for ( Object child : event . getChildren ( ) ) { Object component = ( ( JobTreeNode ) child ) . getComponent ( ) ; if ( component instanceof ConfigurationOwner ) { owners . add ( ( ConfigurationOwner ) component ) ; } } } public void treeNodesRemoved ( TreeModelEvent event ) { for ( Object child : event . getChildren ( ) ) { Object component = ( ( JobTreeNode ) child ) . getComponent ( ) ; owners . remove ( component ) ; } } } private boolean saveAs = false ; class CheckConfigurationsSaved implements VetoableChangeListener { public void vetoableChange ( PropertyChangeEvent evt ) throws PropertyVetoException { if ( ! ODDJOB_PROPERTY . equals ( evt . getPropertyName ( ) ) ) { return ; } Oddjob oldOddjob = ( Oddjob ) evt . getOldValue ( ) ; if ( oldOddjob != null ) { List < ConfigurationOwner > modified = new ArrayList < ConfigurationOwner > ( ) ; for ( ConfigurationOwner owner : owners ) { if ( saveAs && owner == oldOddjob ) { continue ; } ConfigurationSession session = owner . provideConfigurationSession ( ) ; if ( session != null && session . isModified ( ) ) { modified . add ( owner ) ; } } if ( ! modified . isEmpty ( ) && ! canClose ( modified ) ) { throw new PropertyVetoException ( "" , evt ) ; } } owners . clear ( ) ; Oddjob newOddjob = ( Oddjob ) evt . getNewValue ( ) ; if ( newOddjob != null ) { owners . add ( newOddjob ) ; } } boolean canClose ( Collection < ConfigurationOwner > modified ) { StringBuilder message = new StringBuilder ( ) ; message . append ( "" ) ; for ( ConfigurationOwner owner : modified ) { message . append ( owner . toString ( ) ) ; message . append ( '\n' ) ; } message . append ( '\n' ) ; int option = JOptionPane . showConfirmDialog ( explorerComponent , message . toString ( ) , "" , JOptionPane . OK_CANCEL_OPTION , JOptionPane . WARNING_MESSAGE ) ; if ( option == JOptionPane . OK_OPTION ) { return true ; } else { return false ; } } } private transient String name ; private transient boolean modified ; private transient ConfigurationOwner current ; class ChangeFocus implements PropertyChangeListener , TreeSelectionListener , OwnerStateListener , SessionStateListener { public void propertyChange ( PropertyChangeEvent evt ) { if ( ! ODDJOB_PROPERTY . equals ( evt . getPropertyName ( ) ) ) { return ; } Oddjob newJob = ( Oddjob ) evt . getNewValue ( ) ; setOwner ( newJob ) ; } public void valueChanged ( TreeSelectionEvent e ) { JobTreeNode selected = ( JobTreeNode ) ( ( JTree ) e . getSource ( ) ) . getLastSelectedPathComponent ( ) ; if ( selected == null ) { setOwner ( oddjob ) ; } else { AncestorSearch search = new AncestorSearch ( selected . getExplorerContext ( ) ) ; ConfigurationOwner configOwner = ( ConfigurationOwner ) search . getValue ( ConfigContextInialiser . CONFIG_OWNER ) ; setOwner ( configOwner ) ; } } public void sessionChanged ( ConfigOwnerEvent event ) { updateSession ( event . getSource ( ) . provideConfigurationSession ( ) ) ; writeTitle ( ) ; } public void sessionModifed ( ConfigSessionEvent event ) { modified = true ; writeTitle ( ) ; } public void sessionSaved ( ConfigSessionEvent event ) { modified = false ; writeTitle ( ) ; } void setOwner ( ConfigurationOwner owner ) { if ( current == owner ) { return ; } if ( current != null ) { current . removeOwnerStateListener ( this ) ; } if ( owner == null ) { name = null ; modified = false ; updateSession ( null ) ; } else { name = owner . toString ( ) ; updateSession ( owner . provideConfigurationSession ( ) ) ; owner . addOwnerStateListener ( this ) ; } current = owner ; writeTitle ( ) ; } void updateSession ( ConfigurationSession session ) { if ( focus != null ) { focus . removeSessionStateListener ( this ) ; } focus = session ; if ( focus == null ) { modified = false ; } else { focus . addSessionStateListener ( this ) ; modified = focus . isModified ( ) ; } } void writeTitle ( ) { if ( frame == null ) { return ; } String title = DEFAULT_TITLE ; if ( name != null ) { title += " - " + name + ( modified ? " *" : "" ) ; } frame . setTitle ( title ) ; } } class ChangeView implements PropertyChangeListener { public void propertyChange ( PropertyChangeEvent evt ) { if ( ! ODDJOB_PROPERTY . equals ( evt . getPropertyName ( ) ) ) { return ; } Oddjob oldJob = ( Oddjob ) evt . getOldValue ( ) ; Oddjob newJob = ( Oddjob ) evt . getNewValue ( ) ; if ( oldJob != null ) { menuBar . noSession ( ) ; explorerComponent . destroy ( ) ; explorerModel . destroy ( ) ; frame . getContentPane ( ) . removeAll ( ) ; } if ( newJob != null ) { ExplorerModelImpl explorerModel = new ExplorerModelImpl ( new StandardArooaSession ( ) ) ; explorerModel . setThreadManager ( threadManager ) ; explorerModel . setLogFormat ( logFormat ) ; explorerModel . setOddjob ( newJob ) ; OddjobExplorer . this . explorerModel = explorerModel ; explorerComponent = new ExplorerComponent ( explorerModel , propertyPolling ) ; explorerComponent . bindTo ( menuBar ) ; JTree tree = explorerComponent . getTree ( ) ; tree . addTreeSelectionListener ( new ChangeFocus ( ) ) ; tree . getModel ( ) . addTreeModelListener ( new TrackConfigurationOwners ( ) ) ; frame . getContentPane ( ) . add ( explorerComponent ) ; explorerComponent . balance ( ) ; } frame . validate ( ) ; frame . repaint ( ) ; } } void createView ( ) { menuBar = new MonitorMenuBar ( ) ; fileMenu = menuBar . getFileMenu ( ) ; updateFileMenu ( ) ; frame = new JFrame ( ) ; screen . fit ( frame ) ; frame . addWindowListener ( new WindowAdapter ( ) { public void windowClosing ( WindowEvent e ) { maybeCloseWindow ( ) ; } public void windowClosed ( WindowEvent e ) { logger . debug ( "" ) ; } } ) ; frame . setDefaultCloseOperation ( WindowConstants . DO_NOTHING_ON_CLOSE ) ; frame . setJMenuBar ( menuBar ) ; frame . setTitle ( DEFAULT_TITLE ) ; } protected int execute ( ) throws Exception { threadManager = new SimpleThreadManager ( ) ; UIManager . setLookAndFeel ( UIManager . getSystemLookAndFeelClassName ( ) ) ; createView ( ) ; final Oddjob oddjob = this . oddjob ; this . oddjob = null ; VetoableChangeListener checkStop = new CheckOddjobStopped ( ) ; VetoableChangeListener checkSaved = new CheckConfigurationsSaved ( ) ; PropertyChangeListener changeTitle = new ChangeFocus ( ) ; PropertyChangeListener changeView = new ChangeView ( ) ; vetoableChangeSupport . addVetoableChangeListener ( checkStop ) ; vetoableChangeSupport . addVetoableChangeListener ( checkSaved ) ; addPropertyChangeListener ( changeView ) ; addPropertyChangeListener ( changeTitle ) ; frame . setVisible ( true ) ; frame . addComponentListener ( new ComponentAdapter ( ) { @ Override public void componentMoved ( ComponentEvent e ) { screen = new ScreenPresence ( e . getComponent ( ) ) ; } @ Override public void componentResized ( ComponentEvent e ) { screen = new ScreenPresence ( e . getComponent ( ) ) ; } } ) ; SwingUtilities . invokeLater ( new Runnable ( ) { @ Override public void run ( ) { try { if ( oddjob != null ) { setOddjob ( oddjob ) ; } else if ( getFile ( ) != null ) { open ( getFile ( ) ) ; } } catch ( PropertyVetoException e ) { } } } ) ; while ( ! stop ) { try { if ( propertyPolling == null ) { logger ( ) . info ( "" ) ; } else { propertyPolling . poll ( ) ; } } catch ( RuntimeException e ) { logger ( ) . error ( "" , e ) ; } synchronized ( this ) { try { wait ( pollingInterval ) ; } catch ( InterruptedException e ) { break ; } } } vetoableChangeSupport . removeVetoableChangeListener ( checkStop ) ; vetoableChangeSupport . removeVetoableChangeListener ( checkSaved ) ; removePropertyChangeListener ( changeView ) ; removePropertyChangeListener ( changeTitle ) ; threadManager . close ( ) ; return 0 ; } private void maybeCloseWindow ( ) { try { setOddjob ( null ) ; } catch ( PropertyVetoException e ) { logger . info ( "" + e . getMessage ( ) ) ; return ; } closeWindow ( ) ; } private void closeWindow ( ) { stop =
1,586
<s> package de . fuberlin . wiwiss . d2rq . expr ; import de . fuberlin . wiwiss . d2rq . algebra .
1,587
<s> package com . asakusafw . testdriver . json ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . io . IOException ; import java . io . InputStreamReader ; import java . net . URL ; import org . junit . Test ; import com . asakusafw . testdriver . core . DataModelDefinition ; import com . asakusafw . testdriver . model . SimpleDataModelDefinition ; public class JsonDataModelSourceTest { static final DataModelDefinition < Simple > SIMPLE = new SimpleDataModelDefinition < Simple > ( Simple . class ) ; @ Test public void simple ( ) throws Exception { JsonDataModelSource source = open (
1,588
<s> package net . sf . sveditor . core ; import java . lang . reflect . InvocationTargetException ; import java . util . ArrayList ; import java . util . List ; import org . eclipse . core . resources . IFile ; import org . eclipse . core . resources . IMarker ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . core . runtime . IStatus ; import org . eclipse . core . runtime . Status ; import org
1,589
<s> package net . ggtools . grand . ui . actions ; import java . util . Collection ; import net . ggtools . grand . ui . graph . GraphControlerProvider ; import net . ggtools . grand . ui . graph . GraphListener ; import net . ggtools . grand . ui . graph . draw2d . Draw2dNode ; import org . eclipse . jface . resource . ImageDescriptor ; public abstract class GraphSelectionAction extends GraphListenerAction implements GraphListener { private String currentNode ; public GraphSelectionAction ( final GraphControlerProvider parent ) { super ( parent ) ; init ( ) ; } public GraphSelectionAction ( final GraphControlerProvider parent , final String text ) { super ( parent , text ) ; init ( ) ; } public GraphSelectionAction ( final GraphControlerProvider parent , final String text , final ImageDescriptor image ) { super ( parent , text , image ) ; init ( ) ; } public GraphSelectionAction ( final GraphControlerProvider parent , final String text , final int style ) { super ( parent , text , style ) ; init ( ) ; } public final String getCurrentNode ( ) { return currentNode ; } @ Override public void selectionChanged ( final Collection selectedNodes ) { final boolean isEnabled = selectedNodes . size
1,590
<s> package com . asakusafw . utils . java . internal . model . syntax ; import org . junit . Test ; public class SimpleNameImplTest { @ Test public void camel ( ) { SimpleNameImpl name = new SimpleNameImpl ( ) ; name . setToken ( "" ) ; } @ Test public void singleChar ( ) { SimpleNameImpl name = new SimpleNameImpl ( ) ; name . setToken ( "a" ) ; } @ Test public void trailingNumbers ( ) { SimpleNameImpl name = new SimpleNameImpl ( ) ; name . setToken ( "a1" ) ; } @ Test public
1,591
<s> package com . asakusafw . compiler . flow . processor . flow ; import com . asakusafw . compiler . flow . processor . LoggingFlowProcessor ; import com . asakusafw . compiler . flow . processor . operator . LoggingFlowFactory ; import com . asakusafw . compiler . flow . processor . operator . LoggingFlowFactory . WithParameter ; import com .
1,592
<s> package org . oddjob . framework ; import java . io . IOException ; import java . util . concurrent . ExecutionException ; import java . util . concurrent . ExecutorService ; import java . util . concurrent . Executors ; import java . util . concurrent . Future ; import java . util . concurrent . TimeUnit ; import java . util . concurrent . TimeoutException ; import java . util . concurrent . atomic . AtomicBoolean ; import java . util . concurrent . atomic . AtomicReference ; import junit . framework . TestCase ; import org . apache . log4j . Logger ; import org . oddjob . FailedToStopException ; import org . oddjob . Helper ; import org . oddjob . StateSteps ; import org . oddjob . Stoppable ; import org . oddjob . arooa . ArooaConfigurationException ; import org . oddjob . arooa . ArooaSession ; import org . oddjob . arooa . MockArooaSession ; import org . oddjob . arooa . life . ComponentPersistException ; import org . oddjob . arooa . parsing . MockArooaContext ; import org . oddjob . arooa . registry . ComponentPool ; import org . oddjob . arooa . registry . MockComponentPool ; import org . oddjob . arooa . runtime . MockRuntimeConfiguration ; import org . oddjob . arooa . runtime . RuntimeConfiguration ; import org . oddjob . arooa . runtime . RuntimeListener ; import org . oddjob . jobs . job . StopJob ; import org . oddjob . state . FlagState ; import org . oddjob . state . JobState ; import org . oddjob . state . ParentState ; import org . oddjob . state . StateOperator ; import org . oddjob . state . WorstStateOp ; public class StructuralJobTest extends TestCase { private static final Logger logger = Logger . getLogger ( StructuralJobTest . class ) ; @ Override protected void setUp ( ) throws Exception { super . setUp ( ) ; logger . info ( "" + getName ( ) + "" ) ; } private static class OurStructural extends StructuralJob < Runnable > { private static final long serialVersionUID = 1L ; transient Runnable runnable ; @ Override protected StateOperator getStateOp ( ) { return new WorstStateOp ( ) ; } void setJob ( Runnable c ) { childHelper . insertChild ( 0 , c ) ; } protected void execute ( ) { if ( runnable != null ) { runnable . run ( ) ; } } } public void testRunComplete ( ) { final FlagState child = new FlagState ( JobState . COMPLETE ) ; final OurStructural test = new OurStructural ( ) ; test . setJob ( child ) ; test . runnable = new Runnable ( ) { public void run ( ) { child . run ( ) ; assertEquals ( ParentState . EXECUTING , test . lastStateEvent ( ) . getState ( ) ) ; } } ; test . onInitialised ( ) ; test . run ( ) ; assertEquals ( ParentState . COMPLETE , test . lastStateEvent ( ) . getState ( ) ) ; test . hardReset ( ) ; assertEquals ( JobState . READY , child . lastStateEvent ( ) . getState ( ) ) ; assertEquals ( ParentState . READY , test . lastStateEvent ( ) . getState ( ) ) ; } public void testRunInComplete ( ) { final FlagState child = new FlagState ( JobState . INCOMPLETE ) ; final OurStructural test = new OurStructural ( ) ; test . setJob ( child ) ; test . runnable = new Runnable ( ) { public void run ( ) { child . run ( ) ; assertEquals ( ParentState . EXECUTING , test . lastStateEvent ( ) . getState ( ) ) ; } } ; test . onInitialised ( ) ; test . run ( ) ; assertEquals ( ParentState . INCOMPLETE , test . lastStateEvent ( ) . getState ( ) ) ; child . setState ( JobState . COMPLETE ) ; child . softReset ( ) ; child . run ( ) ; assertEquals ( JobState . COMPLETE , child . lastStateEvent ( ) . getState ( ) ) ; assertEquals ( ParentState . COMPLETE , test . lastStateEvent ( ) . getState ( ) ) ; test . hardReset ( ) ; assertEquals ( JobState . READY , child . lastStateEvent ( ) . getState ( ) ) ; assertEquals ( ParentState . READY , test . lastStateEvent ( ) . getState ( ) ) ; } public void testRunStop ( ) throws FailedToStopException , InterruptedException , ExecutionException , TimeoutException { final FlagState child = new FlagState ( JobState . INCOMPLETE ) ; final OurStructural test = new OurStructural ( ) ; test . setJob ( child ) ; final ExecutorService executor = Executors . newSingleThreadExecutor ( ) ; final StopJob stop = new StopJob ( ) ; stop . setJob ( test ) ; final AtomicReference < Future < ? > > future = new AtomicReference < Future < ? > > ( ) ; test . runnable = new Runnable ( ) { public void run ( ) { child . run ( ) ; assertEquals ( ParentState . EXECUTING , test . lastStateEvent ( ) . getState ( ) ) ; future . set ( executor . submit ( stop ) ) ; } } ; test . run ( ) ; future . get ( ) . get ( 10 , TimeUnit . SECONDS ) ; assertEquals ( JobState . COMPLETE , stop . lastStateEvent ( ) . getState ( ) ) ; assertEquals ( ParentState . INCOMPLETE , test . lastStateEvent ( ) . getState ( ) ) ; test . softReset ( ) ; stop . hardReset ( ) ; assertEquals ( JobState . READY , child . lastStateEvent ( ) . getState ( ) ) ; assertEquals ( ParentState . READY , test . lastStateEvent ( ) . getState ( ) ) ; child . setState ( JobState . COMPLETE ) ; test . run ( ) ; future . get ( ) . get ( 10 , TimeUnit . SECONDS ) ; assertEquals ( JobState . COMPLETE , child . lastStateEvent ( ) . getState ( ) ) ; assertEquals ( ParentState . COMPLETE , test . lastStateEvent ( ) . getState ( ) ) ; executor . shutdown ( ) ; } public void testJustChild ( ) { final FlagState child = new FlagState ( JobState . INCOMPLETE ) ; child . run ( ) ; final OurStructural test = new OurStructural ( ) ; test . setJob ( child ) ; test . runnable = child ; assertEquals ( ParentState . READY , test . lastStateEvent ( ) . getState ( ) ) ; test . softReset ( ) ; assertEquals ( JobState . READY , child . lastStateEvent ( ) . getState ( ) ) ; assertEquals ( ParentState . READY , test . lastStateEvent ( ) . getState ( ) ) ; child . setState ( JobState . COMPLETE ) ; test . run ( ) ; assertEquals ( JobState . COMPLETE , child . lastStateEvent ( ) . getState ( ) ) ; assertEquals ( ParentState . COMPLETE , test . lastStateEvent ( ) . getState ( ) ) ; } public void testPersist ( ) throws IOException , ClassNotFoundException { FlagState child = new FlagState ( JobState . COMPLETE ) ; OurStructural test = new OurStructural ( ) ; test . setJob ( child ) ; test . run ( ) ; child . run ( ) ; assertEquals ( ParentState . COMPLETE , test . lastStateEvent ( ) . getState ( ) ) ; OurStructural copy = ( OurStructural ) Helper . copy ( test ) ; assertEquals ( ParentState . COMPLETE , copy . lastStateEvent ( ) . getState ( ) ) ; } class OurSession extends MockArooaSession { OurStructural saved ; @ Override public ComponentPool getComponentPool ( ) { return new MockComponentPool ( ) { @ Override public void configure ( Object component ) { } @ Override public void save ( Object component ) { if ( component instanceof OurStructural ) { try { saved = ( OurStructural ) Helper . copy ( component ) ; } catch ( Exception e ) { throw new RuntimeException ( e ) ; } } else { throw new RuntimeException ( "Unexpected." ) ; } } } ; } }
1,593
<s> package org . rubypeople . rdt . internal . ui . preferences . formatter ; import java . util . Map ; import org . eclipse . core . runtime . IStatus ; import org . eclipse . core . runtime . Status ; import org . eclipse . jface . text . Region ; import org . eclipse . jface . text . formatter . FormattingContextProperties ; import org . eclipse . jface . text . formatter . IContentFormatter ; import org . eclipse . jface . text . formatter . IContentFormatterExtension ; import org . eclipse . jface . text . formatter . IFormattingContext ; import org . eclipse . swt . widgets . Composite ; import org . rubypeople . rdt . internal . ui . IRubyStatusConstants ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; import org . rubypeople . rdt . internal . ui . text . comment .
1,594
<s> package net . bioclipse . opentox . prefs ; import java . util . ArrayList ; import java . util . Iterator ; import java . util . List ; import net . bioclipse . opentox . Activator ; import net . bioclipse . opentox . OpenToxConstants ; import net . bioclipse . ui . prefs . IPreferenceConstants ; import org . apache . log4j . Logger ; import org . eclipse . core . runtime . preferences . ConfigurationScope ; import org . eclipse . jface . dialogs . MessageDialog ; import org . eclipse . jface . preference . IPreferenceStore ; import org . eclipse . jface . preference . PreferencePage ; import org . eclipse . jface . viewers . ISelection ; import org . eclipse . jface . viewers . IStructuredContentProvider ; import org . eclipse . jface . viewers . IStructuredSelection ; import org . eclipse . jface . viewers . ITableLabelProvider ; import org . eclipse . jface . viewers . LabelProvider ; import org . eclipse . jface . viewers . TableViewer ; import org . eclipse . jface . viewers . Viewer ; import org . eclipse . swt . SWT ; import org . eclipse . swt . events . MouseAdapter ; import org . eclipse . swt . events . MouseEvent ; import org . eclipse . swt . graphics . Image ; import org . eclipse . swt . graphics . Point ; import org . eclipse . swt . widgets . Button ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Control ; import org . eclipse . swt . widgets . Table ; import org . eclipse . swt . widgets . TableColumn ; import org . eclipse . ui . IWorkbench ; import org . eclipse . ui . IWorkbenchPreferencePage ; import org . eclipse . ui . PlatformUI ; import org . eclipse . swt . layout . FormLayout ; import org . eclipse . swt . layout . FormData ; import org . eclipse . swt . layout . FormAttachment ; import org . osgi . service . prefs . BackingStoreException ; import org . osgi . service . prefs . Preferences ; public class ServicesPreferencePage extends PreferencePage implements IWorkbenchPreferencePage { private static final Logger logger = Logger . getLogger ( ServicesPreferencePage . class . toString ( ) ) ; private static Preferences preferences = ConfigurationScope . INSTANCE . getNode ( OpenToxConstants . PLUGIN_ID ) ; private List < String [ ] > appList ; private TableViewer checkboxTableViewer ; public ServicesPreferencePage ( ) { super ( ) ; } class ApplicationsLabelProvider extends LabelProvider implements ITableLabelProvider { public Image getColumnImage ( Object element , int columnIndex ) { return null ; } public String getColumnText ( Object element , int index ) { if ( ! ( element instanceof String [ ] ) ) return "" ; String [ ] retList = ( String [ ] ) element ; if ( index == 0 ) { if ( retList . length > 0 ) return retList [ 0 ] ; else return "NA" ; } else if ( index == 1 ) { if ( retList . length > 1 ) return retList [ 1 ] ; else return "NA" ; } else if ( index == 2 ) { if ( retList . length > 2 ) return retList [ 2 ] ; else return "NA" ; } else return "???" ; } } class ApplicationsContentProvider implements IStructuredContentProvider { @ SuppressWarnings ( "unchecked" ) public Object [ ] getElements ( Object inputElement ) { if ( inputElement instanceof ArrayList ) { ArrayList retList = ( ArrayList ) inputElement ; return retList . toArray ( ) ; } return new Object [ 0 ] ; } public void dispose ( ) { } public void inputChanged ( Viewer viewer , Object oldInput , Object newInput ) { } } public Control createContents ( Composite parent ) { Composite container = new Composite ( parent , SWT . NULL ) ; setSize ( new Point ( 600 , 420 ) ) ; container . setSize ( 600 , 420 ) ; container . setLayout ( new FormLayout ( ) ) ; checkboxTableViewer = new TableViewer ( container , SWT . BORDER | SWT . SINGLE ) ; checkboxTableViewer . setContentProvider ( new ApplicationsContentProvider ( ) ) ; checkboxTableViewer . setLabelProvider ( new ApplicationsLabelProvider ( ) ) ; final Table table = checkboxTableViewer . getTable ( ) ; FormData formData = new FormData ( 700 , 300 ) ; formData . left = new FormAttachment ( 0 , 11 ) ; formData . top = new FormAttachment ( 0 , 10 ) ; table . setLayoutData ( formData ) ; table . setHeaderVisible ( true ) ; table . setLinesVisible ( true ) ; TableColumn tableColumn = new TableColumn ( table , SWT . LEFT ) ; tableColumn . setText ( "Name" ) ; tableColumn . setWidth ( 100 ) ; TableColumn tableColumn2 = new TableColumn ( table , SWT . LEFT ) ; tableColumn2 . setText ( "Service" ) ; tableColumn2 . setWidth ( 300 ) ; TableColumn tableColumn3 = new TableColumn ( table , SWT . LEFT ) ; tableColumn3 . setText ( "" ) ; tableColumn3 . setWidth ( 300 ) ; appList = getPreferencesFromStore ( ) ; checkboxTableViewer . setInput ( appList ) ; final Button addButton = new Button ( container , SWT . NONE ) ; formData . right = new FormAttachment ( 100 , - 89 ) ; FormData formData_1 = new FormData ( ) ; formData_1 . right = new FormAttachment ( 100 , - 9 ) ; formData_1 . left = new FormAttachment ( table , 6 ) ; addButton . setLayoutData ( formData_1 ) ; addButton . setText ( "Add" ) ; addButton . addMouseListener ( new MouseAdapter ( ) { public void mouseUp ( MouseEvent e ) { ServicesEditDialog dlg = new ServicesEditDialog ( getShell ( ) ) ; dlg . open ( ) ; String [ ] ret = dlg . getServiceInfo ( ) ; if ( ret . length ==
1,595
<s> package com . asakusafw . yaess . core ; import java . io . IOException ; import java . text . MessageFormat ; import java . util . List ; public abstract class JobScheduler implements Service { @ Override public final void configure ( ServiceProfile < ? > profile ) throws InterruptedException , IOException { try { doConfigure ( profile ) ; } catch ( IllegalArgumentException e ) { throw new IOException ( MessageFormat . format (
1,596
<s> package og . android . tether ; import android . content . Context ; import android . content . Intent ; import android . sax . Element ; import android . sax . EndElementListener ; import android . sax . EndTextElementListener ; import android . sax . RootElement ; import android . util . Log ; import java . io . IOException ; import java . io . InputStream ; import org . apache . http . HttpResponse ; import org . apache . http . client . ClientProtocolException ; import org . apache . http . client . methods . HttpGet ; import org . apache . http . impl . client . DefaultHttpClient ; import org . json . JSONArray ; import org . json . JSONException ; import org . json . JSONObject ; import org . xml . sax . ContentHandler ; import org . xml . sax . InputSource ; import org . xml . sax . SAXException ; import org . xml . sax . XMLReader ; import org . xml . sax . helpers . XMLReaderFactory ; public class RSSReader { static { System . setProperty ( "" , "" ) ; } private final static String TAG = "RSSReader" ; public final static String MESSAGE_JSON_RSS = "" ; public final static String EXTRA_JSON_RSS = "JSONRSS" ; public final static String [ ] _PARSED_ITEM_ELEMENTS = { "title" , "link" , "pubDate" , "description" } ; public final static String [ ] [ ] _PARSED_ITEM_DTD_ELEMENTS = { { "" , "creator" } } ; public final String [ ] PARSED_ITEM_ELEMENTS ; public final String [ ] [ ] PARSED_ITEM_DTD_ELEMENTS ;
1,597
<s> package org . rubypeople . rdt . internal . ui . viewsupport ; import java . util . ArrayList ; import org . eclipse . core . resources . IStorage ; import org . eclipse . core . runtime . Platform ; import org . eclipse . jface . util . ListenerList ; import org . eclipse . jface . util . SafeRunnable ; import org . eclipse . jface . viewers . IColorProvider ; import org . eclipse . jface . viewers . ILabelDecorator ; import org . eclipse . jface . viewers . ILabelProvider ; import org . eclipse . jface . viewers . ILabelProviderListener ; import org . eclipse . jface . viewers . LabelProviderChangedEvent ; import org . eclipse . swt . graphics . Color ; import org . eclipse . swt . graphics . Image ; import org . rubypeople . rdt . ui . RubyElementLabels ; public class RubyUILabelProvider implements ILabelProvider , IColorProvider { protected ListenerList fListeners = new ListenerList ( 1 ) ; protected RubyElementImageProvider fImageLabelProvider ; protected StorageLabelProvider fStorageLabelProvider ; private ArrayList fLabelDecorators ; private int fImageFlags ; private long fTextFlags ; public RubyUILabelProvider ( ) { this ( RubyElementLabels . ALL_DEFAULT , RubyElementImageProvider . OVERLAY_ICONS ) ; } public RubyUILabelProvider ( long textFlags , int imageFlags ) { fImageLabelProvider = new RubyElementImageProvider ( ) ; fLabelDecorators = null ; fStorageLabelProvider = new StorageLabelProvider ( ) ; fImageFlags = imageFlags ; fTextFlags = textFlags ; } public void addLabelDecorator ( ILabelDecorator decorator ) { if ( fLabelDecorators == null ) { fLabelDecorators = new ArrayList ( 2 ) ; } fLabelDecorators . add ( decorator ) ; } public final void setTextFlags ( long textFlags ) { fTextFlags = textFlags ; } public final void setImageFlags ( int imageFlags ) { fImageFlags = imageFlags ; } public final int getImageFlags ( ) { return fImageFlags ; } public final long getTextFlags ( ) { return fTextFlags ; } protected int evaluateImageFlags ( Object element ) { return getImageFlags ( ) ; } protected long evaluateTextFlags ( Object element ) { return getTextFlags ( ) ; } protected Image decorateImage ( Image image , Object element ) { if ( fLabelDecorators != null && image != null ) { for ( int i = 0 ; i < fLabelDecorators . size ( ) ; i ++ ) { ILabelDecorator decorator = ( ILabelDecorator ) fLabelDecorators . get ( i ) ; image = decorator . decorateImage ( image , element ) ; } } return image ; } public Image getImage ( Object element ) { Image result = fImageLabelProvider . getImageLabel ( element , evaluateImageFlags ( element ) ) ; if ( result == null && ( element instanceof IStorage ) ) { result = fStorageLabelProvider . getImage ( element ) ; } return decorateImage ( result , element ) ; } protected String decorateText ( String text , Object element ) { if ( fLabelDecorators != null && text . length ( ) > 0 ) { for ( int i = 0 ; i < fLabelDecorators . size ( ) ; i ++ ) { ILabelDecorator decorator = ( ILabelDecorator ) fLabelDecorators . get ( i ) ; text = decorator . decorateText ( text , element ) ; } } return text ; } public String getText ( Object element ) { String result = RubyElementLabels . getTextLabel ( element , evaluateTextFlags ( element ) ) ; if ( result . length ( ) == 0 && ( element instanceof IStorage ) ) { result = fStorageLabelProvider . getText ( element ) ; } return decorateText ( result , element ) ; } public void dispose ( ) { if ( fLabelDecorators != null ) { for ( int i = 0 ; i < fLabelDecorators . size ( ) ; i ++ ) { ILabelDecorator decorator = ( ILabelDecorator ) fLabelDecorators . get ( i ) ; decorator . dispose ( ) ; } fLabelDecorators = null ; } fStorageLabelProvider . dispose ( ) ; fImageLabelProvider . dispose ( ) ; } public void addListener ( ILabelProviderListener listener ) { if ( fLabelDecorators != null ) { for ( int i = 0 ; i < fLabelDecorators . size ( ) ; i ++ ) { ILabelDecorator
1,598
<s> package net . sf . sveditor . core . parser ; import java . util . ArrayList ; import java . util . List ; import net . sf . sveditor . core . db . ISVDBAddChildItem ; import net . sf . sveditor . core . db . ISVDBChildItem ; import net . sf . sveditor . core . db . SVDBCovergroup ; import net . sf . sveditor . core . db . SVDBCovergroup . BinsKW ; import net . sf . sveditor . core . db . SVDBCoverpoint ; import net . sf . sveditor . core . db . SVDBCoverpointBins ; import net . sf . sveditor . core . db . SVDBCoverpointBins . BinsType ; import net . sf . sveditor . core . db . SVDBCoverpointCross ; import net . sf . sveditor . core . db . SVDBLocation ; import net . sf . sveditor . core . db . expr . SVDBBinaryExpr ; import net . sf . sveditor . core . db . expr . SVDBCrossBinsSelectConditionExpr ; import net . sf . sveditor . core . db . expr . SVDBExpr ; import net . sf . sveditor . core . db . expr . SVDBFieldAccessExpr ; import net . sf . sveditor . core . db . expr . SVDBIdentifierExpr ; import net . sf . sveditor . core . db . expr . SVDBParenExpr ; import net . sf . sveditor . core . db . expr . SVDBUnaryExpr ; import net . sf . sveditor . core . db . stmt . SVDBCoverageCrossBinsSelectStmt ; import net . sf . sveditor . core . db . stmt . SVDBCoverageOptionStmt ; public class SVCovergroupParser extends SVParserBase { public SVCovergroupParser ( ISVParser parser ) { super ( parser ) ; } public void parse ( ISVDBAddChildItem parent ) throws SVParseException { SVDBLocation start = fLexer . getStartLocation ( ) ; fLexer . readKeyword ( "covergroup" ) ; String cg_name = fLexer . readId ( ) ; SVDBCovergroup cg = new SVDBCovergroup ( cg_name ) ; cg . setLocation ( start ) ; while ( fLexer . peekOperator ( "(" ) ) { cg . setParamPort ( parsers ( ) . tfPortListParser ( ) . parse ( ) ) ; } if ( fLexer . peekOperator ( "@@" ) ) { error ( "" ) ; } else if ( fLexer . peekOperator ( "@" ) ) { cg . setCoverageEvent ( parsers ( ) . exprParser ( ) . clocking_event ( ) ) ; } else if ( fLexer . peekKeyword ( "with" ) ) { error ( "" ) ; } fLexer . readOperator ( ";" ) ; parent . addChildItem ( cg ) ; try { while ( fLexer . peek ( ) != null && ! fLexer . peekKeyword ( "endgroup" ) ) { ISVDBChildItem cov_item ; if ( isOption ( ) ) { cov_item = coverage_option ( ) ; } else { cov_item = coverage_spec ( ) ; } cg . addItem ( cov_item ) ; } cg . setEndLocation ( fLexer . getStartLocation ( ) ) ; fLexer . readKeyword ( "endgroup" ) ; if ( fLexer . peekOperator ( ":" ) ) { fLexer . eatToken ( ) ; fLexer . readId ( ) ; } } catch ( SVParseException e ) { while ( fLexer . peek ( ) != null && ! fLexer . peekKeyword ( "endgroup" , "class" , "module" , "function" , "task" , "endclass" , "endmodule" ) ) { fLexer . eatToken ( ) ; } cg . setEndLocation ( fLexer . getStartLocation ( ) ) ; if ( fLexer . peekKeyword ( "endgroup" ) ) { fLexer . eatToken ( ) ; if ( fLexer . peekOperator ( ":" ) ) { fLexer . eatToken ( ) ; fLexer . readId ( ) ; } } } } private SVDBCoverageOptionStmt coverage_option ( ) throws SVParseException { SVDBLocation start = fLexer . getStartLocation ( ) ; String type = fLexer . eatToken ( ) ; fLexer . readOperator ( "." ) ; String name = fLexer . readId ( ) ; SVDBCoverageOptionStmt opt = new SVDBCoverageOptionStmt ( name , type . equals ( "type_option" ) ) ; opt . setLocation ( start ) ; fLexer . readOperator ( "=" ) ; opt . setExpr ( parsers ( ) . exprParser ( ) . expression ( ) ) ; fLexer . readOperator ( ";" ) ; return opt ; } private ISVDBChildItem coverage_spec ( ) throws SVParseException { ISVDBChildItem ret = null ; String name = "" ; SVDBLocation start = fLexer . getStartLocation ( ) ; if ( fLexer . peekId ( ) ) { name = fLexer . readId ( ) ; fLexer . readOperator ( ":" ) ; } String type = fLexer . readKeyword ( "coverpoint" , "cross" ) ; if ( type . equals ( "coverpoint" ) ) { SVDBCoverpoint cp = new SVDBCoverpoint ( name ) ; cp . setLocation ( start ) ; cover_point ( cp ) ; ret = cp ; } else { SVDBCoverpointCross cp = new SVDBCoverpointCross ( name ) ; cp . setLocation ( start ) ; cover_cross ( cp ) ; ret = cp ; } return ret ; } private void cover_point ( SVDBCoverpoint cp ) throws SVParseException { cp . setTarget ( parsers ( ) . exprParser ( ) . expression ( ) ) ; if ( fLexer . peekKeyword ( "iff" ) ) { fLexer . eatToken ( ) ; fLexer . readOperator ( "(" ) ; cp . setIFF ( parsers ( ) . exprParser ( ) . expression ( ) ) ; fLexer . readOperator ( ")" ) ; } if ( fLexer . peekOperator ( "{" ) ) { fLexer . eatToken ( ) ; while ( fLexer . peek ( ) != null && ! fLexer . peekOperator ( "}" ) ) { if ( isOption ( ) ) { cp . addItem ( coverage_option ( ) ) ; } else { boolean wildcard = fLexer . peekKeyword ( "wildcard" ) ; if ( wildcard ) { fLexer . eatToken ( ) ; } String type = fLexer . readKeyword ( "bins" , "illegal_bins" , "ignore_bins" ) ; BinsKW kw = ( type . equals ( "bins" ) ) ? BinsKW . Bins : ( type . equals ( "illegal_bins" ) ) ? BinsKW . IllegalBins : BinsKW . IgnoreBins ; String id = fLexer . readId ( ) ; SVDBCoverpointBins bins = new SVDBCoverpointBins ( wildcard , id , kw ) ; boolean is_array = fLexer . peekOperator ( "[" ) ; bins . setIsArray ( is_array ) ; if ( is_array ) { fLexer . eatToken ( ) ; if ( fLexer . peekOperator ( "]" ) ) { fLexer . eatToken ( ) ; } else { bins . setArrayExpr ( parsers ( ) . exprParser ( ) . expression ( ) ) ; fLexer . readOperator ( "]" ) ; } } fLexer . readOperator ( "=" ) ; if ( fLexer . peekKeyword ( "default" ) ) { fLexer . eatToken ( ) ; boolean is_sequence = fLexer . peekKeyword ( "sequence" ) ; if ( is_sequence ) { fLexer . eatToken ( ) ; bins . setBinsType ( BinsType . DefaultSeq ) ; } else { bins . setBinsType ( BinsType . Default ) ; } } else { if ( fLexer . peekOperator ( "{" ) ) { List < SVDBExpr > l = new ArrayList < SVDBExpr > ( ) ; bins . setBinsType ( BinsType . OpenRangeList ) ; parsers ( ) . exprParser ( ) . open_range_list ( l ) ; } else if ( fLexer . peekOperator ( "(" ) ) { bins . setBinsType ( BinsType . TransList ) ; trans_list ( ) ; } else { fLexer . readOperator ( "{" , "(" ) ; } } if ( fLexer . peekKeyword ( "iff" ) ) { fLexer . eatToken ( ) ; fLexer . readOperator ( "(" ) ; bins . setIFF ( parsers ( ) . exprParser ( ) . expression ( ) ) ; fLexer . readOperator ( ")" ) ; } cp . addItem ( bins ) ; fLexer . readOperator ( ";" ) ; } } fLexer . readOperator ( "}" ) ; } else { fLexer . readOperator ( ";" ) ; } } private void trans_list ( ) throws SVParseException { while ( fLexer . peek ( ) != null ) { fLexer . readOperator ( "(" ) ; trans_set ( ) ; fLexer . readOperator ( ")" ) ; if ( fLexer . peekOperator ( "," ) ) { fLexer . eatToken ( ) ; } else { break ; } } } private void trans_set ( ) throws SVParseException { trans_range_list ( ) ; if ( fLexer . peekOperator ( "=>" ) ) { fLexer . eatToken ( ) ; trans_range_list ( ) ; } } private void trans_range_list ( ) throws SVParseException { range_list ( ) ; if ( fLexer . peekOperator ( "[" ) ) { fLexer . eatToken ( ) ; fLexer . readOperator ( "*" , "=" , "->" ) ; repeat_range ( ) ; fLexer . readOperator ( "]" ) ; } } private void range_list ( ) throws SVParseException { while ( fLexer . peek ( ) != null ) { if ( fLexer . peekOperator ( "[" ) ) { fParsers . exprParser ( ) . parse_range ( ) ; } else { fParsers . exprParser ( ) . expression ( ) ; } if ( fLexer . peekOperator ( "," ) ) { fLexer . eatToken ( ) ; } else { break ; } } } private void repeat_range ( ) throws SVParseException { fParsers . exprParser ( ) . expression ( ) ; if ( fLexer . peekOperator ( ":" ) ) { fLexer . eatToken ( ) ; fParsers . exprParser ( ) . expression ( ) ; } } private void cover_cross ( SVDBCoverpointCross cp ) throws SVParseException { while ( fLexer . peek ( ) != null ) { SVDBIdentifierExpr id = fParsers . exprParser ( ) . idExpr ( ) ; cp . getCoverpointList ( ) . add ( id ) ; if ( fLexer . peekOperator ( "," ) ) { fLexer . eatToken ( ) ; } else { break ; } } if ( fLexer . peekKeyword ( "iff" ) ) { fLexer . eatToken ( ) ; fLexer . readOperator ( "(" ) ; cp . setIFF ( parsers ( ) . exprParser ( ) . expression ( ) ) ; fLexer . readOperator ( ")" ) ; } if ( fLexer . peekOperator ( "{" ) ) { fLexer . eatToken ( ) ; while ( fLexer . peek ( ) != null && ! fLexer . peekOperator ( "}" ) ) { if ( isOption ( ) ) { cp . addItem ( coverage_option ( ) ) ; } else { SVDBCoverageCrossBinsSelectStmt select_stmt = new SVDBCoverageCrossBinsSelectStmt ( ) ; String type = fLexer . readKeyword ( "bins" , "illegal_bins" , "ignore_bins" ) ; select_stmt . setBinsType ( type ) ;
1,599
<s> package com . asakusafw . runtime . configuration ; import java . text . MessageFormat ; import junit . framework . Assert ; import org . junit . Assume ; import org . junit . rules . TestWatcher ;