id
int32
0
3k
input
stringlengths
43
33.8k
gt
stringclasses
1 value
2,100
<s> package com . asakusafw . dmdl . thundergate . emitter ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import org . junit . Test ; public class AstBuilderTest { @ Test public void toDmdlName ( ) { assertThat ( AstBuilder . toDmdlName ( "HELLO" ) . identifier , is ( "hello" ) ) ; assertThat ( AstBuilder . toDmdlName ( "HELLO_WORLD" )
2,101
<s> package com . asakusafw . compiler . flow . example ; import com . asakusafw . compiler . operator . model . MockHoge ; import com . asakusafw . vocabulary . flow . Export ; import com . asakusafw . vocabulary . flow . FlowDescription ; import com . asakusafw . vocabulary . flow . Import ; import com . asakusafw . vocabulary . flow . In ; import com . asakusafw . vocabulary .
2,102
<s> package com . sun . tools . hat . internal . lang . jruby ; import com . google . common . base . Charsets ; import com . sun . tools . hat . internal . lang . Models ; import com . sun . tools . hat . internal . lang . ScalarModel ; import com . sun . tools . hat . internal . model . JavaInt ; import com . sun . tools . hat . internal . model . JavaObject ; import com . sun . tools . hat . internal . model . JavaValueArray ; public class JRubyString extends ScalarModel { private final String value ; private JRubyString ( String value ) { this . value = value ; } public static JRubyString make ( JavaObject obj ) { String value = getRubyStringValue ( obj ) ; return value != null ? new JRubyString ( value ) : null ; } private static String getRubyStringValue ( JavaObject obj ) { JavaObject value = Models . getFieldObject ( obj , "value" ) ; if ( value != null ) { JavaValueArray bytes =
2,103
<s> package com . asakusafw . cleaner . common ; public final class MessageIdConst { public static final String CMN_PROP_CHECK_ERROR = "" ; public static final String LCLN_START = "" ; public static final String LCLN_EXIT_SUCCESS = "" ; public static final String LCLN_EXIT_WARNING = "" ; public static final String LCLN_INIT_ERROR = "" ; public static final String LCLN_EXCEPRION = "" ; public static final String LCLN_PARAMCHECK_ERROR = "" ; public static final String LCLN_CLEN_DIR_SUCCESS = "" ; public static final String LCLN_CLEN_DIR_FAIL = "" ; public static final String LCLN_CLEN_DIR_ERROR = "" ; public static final String LCLN_CLEN_FAIL = "" ; public static final String LCLN_CLEN_FILE = "" ; public static final String LCLN_FILE_DELETE = "" ; public static final String LCLN_FILE_DELETE_SUCCESS = "" ; public static final String LCLN_DIR_DELETE = "" ; public static final String LCLN_PATTERN_FAIL = "" ; public static final String LCLN_DELETE_FILE = "" ; public static final String LCLN_PATTERN_NOT_FOUND = "" ; public static final String HCLN_START = "" ; public static final String HCLN_EXIT_SUCCESS = "" ; public static final String HCLN_EXIT_WARNING = "" ; public static final String HCLN_INIT_ERROR = "" ; public static final String HCLN_EXCEPRION = "" ; public static final String HCLN_PARAMCHECK_ERROR = "" ;
2,104
<s> package org . rubypeople . rdt . internal . ui . actions ; import java . util . ResourceBundle ; import org . eclipse . jface . action . IAction ; import org . eclipse . jface . action . IMenuManager ; import org . eclipse . jface . preference . IPreferenceStore ; import org . eclipse . jface . text . ITextOperationTarget ; import org . eclipse . jface . text . ITextViewer ; import org . eclipse . jface . text . source . projection . IProjectionListener ; import org . eclipse . jface . text . source . projection . ProjectionViewer ; import org . eclipse . ui . actions . ActionGroup ; import org . eclipse . ui . editors . text . IFoldingCommandIds ; import org . eclipse . ui . texteditor . ITextEditor ; import org . eclipse . ui . texteditor . IUpdate ; import org . eclipse . ui . texteditor . ResourceAction ; import org . eclipse . ui . texteditor . TextOperationAction ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; import org . rubypeople . rdt . internal . ui . rubyeditor . RubyEditor ; import org . rubypeople . rdt . ui . PreferenceConstants ; import org . rubypeople . rdt . ui . actions . IRubyEditorActionDefinitionIds ; public class FoldingActionGroup extends ActionGroup { private static abstract class PreferenceAction extends ResourceAction implements IUpdate { PreferenceAction ( ResourceBundle bundle , String prefix , int style ) { super ( bundle , prefix , style ) ; } } private class FoldingAction extends PreferenceAction { FoldingAction ( ResourceBundle bundle , String prefix ) { super ( bundle , prefix , IAction . AS_PUSH_BUTTON ) ; } public void update ( ) { setEnabled ( FoldingActionGroup . this . isEnabled ( ) && fViewer . isProjectionMode ( ) ) ; } } private ProjectionViewer fViewer ; private final PreferenceAction fToggle ; private final TextOperationAction fExpand ; private final TextOperationAction fCollapse ; private final TextOperationAction fExpandAll ; private final PreferenceAction fRestoreDefaults ; private final FoldingAction fCollapseMembers ; private final FoldingAction fCollapseComments ; private final TextOperationAction fCollapseAll ; private final IProjectionListener fProjectionListener ; public FoldingActionGroup ( final ITextEditor editor , ITextViewer viewer ) { if ( ! ( viewer instanceof ProjectionViewer ) ) { fToggle = null ; fExpand = null ; fCollapse = null ; fExpandAll = null ; fCollapseAll = null ; fRestoreDefaults
2,105
<s> package net . sf . sveditor . ui . svcp ; import net . sf . sveditor . core . db . ISVDBItemBase ; import net . sf . sveditor . core . db . ISVDBNamedItem ; import net . sf . sveditor . core . db . SVDBClassDecl ; import net . sf . sveditor . core . db . SVDBFunction ; import net . sf . sveditor . core . db . SVDBItemType ; import net . sf . sveditor . core . db . SVDBModIfcClassParam ; import net . sf . sveditor . core . db . SVDBModIfcDecl ; import net . sf . sveditor . core . db . SVDBModIfcInst ; import net . sf . sveditor . core . db . SVDBModIfcInstItem ; import net . sf . sveditor . core . db . SVDBParamValueAssign ; import net . sf . sveditor . core . db . SVDBTask ; import net . sf . sveditor . core . db . SVDBTypeInfo ; import net . sf . sveditor . core . db . SVDBTypeInfoUserDef ; import net . sf . sveditor . core . db . index . SVDBDeclCacheItem ; import net . sf . sveditor . core . db . stmt . SVDBAlwaysStmt ; import net . sf . sveditor . core . db . stmt . SVDBEventControlStmt ; import net . sf . sveditor . core . db . stmt . SVDBExportItem ; import net . sf . sveditor . core . db . stmt . SVDBImportItem ; import net . sf . sveditor . core . db . stmt . SVDBParamPortDecl ; import net . sf . sveditor . core . db . stmt . SVDBVarDeclItem ; import net . sf . sveditor . core . db . stmt . SVDBVarDeclStmt ; import net . sf . sveditor . ui . SVDBIconUtils ; import org . eclipse . jface . viewers . DelegatingStyledCellLabelProvider . IStyledLabelProvider ; import org . eclipse . jface . viewers . ILabelProviderListener ; import org . eclipse . jface . viewers . LabelProvider ; import org . eclipse . jface . viewers . StyledString ; import org . eclipse . swt . graphics . Image ; import org . eclipse . ui . model . WorkbenchLabelProvider ; public class SVTreeLabelProvider extends LabelProvider implements IStyledLabelProvider { protected boolean fShowFunctionRetType ; private WorkbenchLabelProvider fLabelProvider ; public SVTreeLabelProvider ( ) { fLabelProvider = new WorkbenchLabelProvider ( ) ; fShowFunctionRetType = true ; } @ Override public Image getImage ( Object element ) { if ( element instanceof ISVDBItemBase ) { return SVDBIconUtils . getIcon ( ( ISVDBItemBase ) element ) ; } else if ( element instanceof SVDBDeclCacheItem ) { SVDBDeclCacheItem item = ( SVDBDeclCacheItem ) element ; return SVDBIconUtils . getIcon ( item . getType ( ) ) ; } else { return super . getImage ( element ) ; } } public StyledString getStyledText ( Object element ) { if ( element == null ) { return new StyledString ( "null" ) ; } if ( element instanceof SVDBDeclCacheItem ) { SVDBDeclCacheItem item = ( SVDBDeclCacheItem ) element ; return new StyledString ( item . getName ( ) ) ; } else if ( element instanceof SVDBVarDeclItem )
2,106
<s> package org . oddjob . persist ; import org . oddjob . Structural ; import org . oddjob . arooa . life . ComponentPersister ; import org . oddjob . framework . SimpleJob ; import org . oddjob . structural . ChildHelper ; import org . oddjob . structural . StructuralListener ; public class ArchiveBrowserJob extends SimpleJob implements Structural { protected ChildHelper < Object > childHelper = new ChildHelper < Object > ( this ) ; private String archiveName ; private OddjobPersister archiver ; @ Override protected int execute ( ) throws Throwable { OddjobPersister oddjobPersister = this . archiver ; if ( oddjobPersister == null ) { ComponentPersister sessionPersister = getArooaSession ( ) . getComponentPersister ( ) ; if ( sessionPersister != null && sessionPersister instanceof OddjobPersister ) { oddjobPersister = ( OddjobPersister ) sessionPersister ; } } if ( oddjobPersister == null ) { throw new NullPointerException ( "No Archiver." ) ; } ComponentPersister persister = oddjobPersister . persisterFor ( archiveName ) ; Object [ ] archives = persister . list ( ) ; int index = 0 ; for ( Object archive : archives ) { childHelper . insertChild ( index ++ , new Restore ( archive . toString ( ) , persister ) ) ; } return 0 ; } @ Override protected void onReset ( ) { childHelper . removeAllChildren ( ) ; } @ Override public void addStructuralListener ( StructuralListener listener ) { childHelper . addStructuralListener ( listener ) ; } @ Override public void removeStructuralListener ( StructuralListener listener ) { childHelper . removeStructuralListener ( listener ) ; } class Restore extends SimpleJob implements
2,107
<s> package org . rubypeople . eclipse . shams . resources ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . resources . IResourceProxy ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IPath ; import org . eclipse . core . runtime . QualifiedName ; public class ShamResourceProxy implements IResourceProxy { private IResource resource ; public ShamResourceProxy ( IResource resource ) { this . resource = resource ; } public long getModificationStamp ( ) { return resource . getModificationStamp ( ) ; } public boolean isAccessible ( ) { return resource
2,108
<s> package org . rubypeople . rdt . refactoring . tests . core . convertlocaltofield ; import java . io . FileNotFoundException ; import java . io . IOException ; import org . eclipse . jface . text . BadLocationException ; import org . rubypeople . rdt . refactoring . core . convertlocaltofield . LocalToFieldConditionChecker ; import org . rubypeople . rdt . refactoring . core . convertlocaltofield . LocalToFieldConfig ; import org . rubypeople . rdt . refactoring . core . convertlocaltofield . LocalToFieldConverter ; import org . rubypeople . rdt . refactoring . tests . FileTestData ; import org . rubypeople . rdt . refactoring . tests . RefactoringTestCase ; public class LocalToFieldTester extends RefactoringTestCase { public LocalToFieldTester ( String fileName ) { super ( fileName ) ; } protected int getInitPlace ( String initPlace ) { if
2,109
<s> package org . oddjob . jmx . server ; import java . io . File ; import java . util . HashMap ; import java . util . Map ; import javax . management . remote . rmi . RMIConnectorServer ; import javax . rmi . ssl . SslRMIClientSocketFactory ; import javax . rmi . ssl . SslRMIServerSocketFactory ; import org . oddjob . arooa . types . ValueFactory ; import org . oddjob . jmx . JMXServerJob ; public class SimpleServerSecurity implements ValueFactory < Map < String , ? > > { private File passwordFile ; private File accessFile ; private boolean useSSL ; public Map < String , ? > toValue ( ) { Map < String , Object > env = new HashMap < String , Object > ( ) ; if ( useSSL ) { SslRMIClientSocketFactory csf = new SslRMIClientSocketFactory ( ) ; SslRMIServerSocketFactory ssf = new SslRMIServerSocketFactory ( ) ; env . put ( RMIConnectorServer . RMI_CLIENT_SOCKET_FACTORY_ATTRIBUTE , csf ) ; env . put ( RMIConnectorServer . RMI_SERVER_SOCKET_FACTORY_ATTRIBUTE , ssf ) ; } if ( passwordFile != null ) { env . put ( "" , passwordFile . getAbsolutePath ( ) ) ; } if ( accessFile != null ) { env . put ( JMXServerJob . ACCESS_FILE_PROPERTY , accessFile . getAbsolutePath ( ) ) ; } return env ; }
2,110
<s> package com . asakusafw . compiler . flow ; public interface Compilable < T > { boolean isCompiled ( ) ; T getCompiled ( ) ; void setCompiled ( T object ) ; class Trait < T > implements Compilable < T > { private T compiled ; @
2,111
<s> package com . lmax . disruptor . support ; import com . lmax . disruptor . collections . Histogram ; import java . util . concurrent . BlockingQueue ; public final class LatencyStepQueueConsumer implements Runnable { private final FunctionStep functionStep ; private final BlockingQueue < Long > inputQueue ; private final BlockingQueue < Long > outputQueue ; private final Histogram histogram ; private final long nanoTimeCost ; private volatile boolean running ; private volatile long sequence ; public LatencyStepQueueConsumer ( final FunctionStep functionStep , final BlockingQueue < Long > inputQueue , final BlockingQueue < Long > outputQueue , final Histogram histogram , final long nanoTimeCost ) { this . functionStep = functionStep ; this . inputQueue =
2,112
<s> package de . fuberlin . wiwiss . d2rq . expr ; import java . util . Collections ; import java . util . Set ; import de . fuberlin . wiwiss . d2rq . algebra . AliasMap ; import de . fuberlin . wiwiss . d2rq . algebra . Attribute ; import de . fuberlin . wiwiss . d2rq . algebra . ColumnRenamer ; import de . fuberlin . wiwiss . d2rq . sql . ConnectedDB ; public class AttributeExpr extends Expression { private final Attribute attribute ; public AttributeExpr ( Attribute attribute ) { this .
2,113
<s> package org . rubypeople . rdt . internal . ui . preferences ; import java . util . ArrayList ; import java . util . HashMap ; import java . util . IdentityHashMap ; import java . util . List ; import java . util . Map ; import java . util . StringTokenizer ; import org . eclipse . core . resources . IProject ; import org . eclipse . core . resources . ProjectScope ; import org . eclipse . core . runtime . preferences . DefaultScope ; import org . eclipse . core . runtime . preferences . IEclipsePreferences ; import org . eclipse . core . runtime . preferences . IScopeContext ; import org . eclipse . core . runtime . preferences . InstanceScope ; import org . eclipse . jface . dialogs . IDialogConstants ; import org . eclipse . jface . dialogs . IDialogSettings ; import org . eclipse . jface . dialogs . MessageDialog ; import org . eclipse . jface . resource . JFaceResources ; import org . eclipse . swt . SWT ; import org . eclipse . swt . events . ModifyEvent ; import org . eclipse . swt . events . ModifyListener ; import org . eclipse . swt . events . SelectionEvent ; import org . eclipse . swt . events . SelectionListener ; import org . eclipse . swt . layout . GridData ; import org . eclipse . swt . layout . GridLayout ; import org . eclipse . swt . widgets . Button ; import org . eclipse . swt . widgets . Combo ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Control ; import org . eclipse . swt . widgets . Label ; import org . eclipse . swt . widgets . Link ; import org . eclipse . swt . widgets . Shell ; import org . eclipse . swt . widgets . Text ; import org . eclipse . swt . widgets . Widget ; import org . eclipse . ui . forms . events . ExpansionAdapter ; import org . eclipse . ui . forms . events . ExpansionEvent ; import org . eclipse . ui . forms . widgets . ExpandableComposite ; import org . eclipse . ui . preferences . IWorkbenchPreferenceContainer ; import org . eclipse . ui . preferences . IWorkingCopyManager ; import org . eclipse . ui . preferences . WorkingCopyManager ; import org . osgi . service . prefs . BackingStoreException ; import org . rubypeople . rdt . core . RubyCore ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; import org . rubypeople . rdt . internal . ui . util . CoreUtility ; import org . rubypeople . rdt . internal . ui . wizards . IStatusChangeListener ; import org . rubypeople . rdt . ui . RubyUI ; public abstract class OptionsConfigurationBlock { public static final class Key { private String fQualifier ; private String fKey ; public Key ( String qualifier , String key ) { fQualifier = qualifier ; fKey = key ; } public String getName ( ) { return fKey ; } private IEclipsePreferences getNode ( IScopeContext context , IWorkingCopyManager manager ) { IEclipsePreferences node = context . getNode ( fQualifier ) ; if ( manager != null ) { return manager . getWorkingCopy ( node ) ; } return node ; } public String getStoredValue ( IScopeContext context , IWorkingCopyManager manager ) { return getNode ( context , manager ) . get ( fKey , null ) ; } public String getStoredValue ( IScopeContext [ ] lookupOrder , boolean ignoreTopScope , IWorkingCopyManager manager ) { for ( int i = ignoreTopScope ? 1 : 0 ; i < lookupOrder . length ; i ++ ) { String value = getStoredValue ( lookupOrder [ i ] , manager ) ; if ( value != null ) { return value ; } } return null ; } public void setStoredValue ( IScopeContext context , String value , IWorkingCopyManager manager ) { if ( value != null ) { getNode ( context , manager ) . put ( fKey , value ) ; } else { getNode ( context , manager ) . remove ( fKey ) ; } } public String toString ( ) { return fQualifier + '/' + fKey ; } public String getQualifier ( ) { return fQualifier ; } } protected static class ControlData { private Key fKey ; private String [ ] fValues ; public ControlData ( Key key , String [ ] values ) { fKey = key ; fValues = values ; } public Key getKey ( ) { return fKey ; } public String getValue ( boolean selection ) { int index = selection ? 0 : 1 ; return fValues [ index ] ; } public String getValue ( int index ) { return fValues [ index ] ; } public int getSelection ( String value ) { if ( value != null ) { for ( int i = 0 ; i < fValues . length ; i ++ ) { if ( value . equals ( fValues [ i ] ) ) { return i ; } } } return fValues . length - 1 ; } } private static final String REBUILD_COUNT_KEY = "" ; private static final String SETTINGS_EXPANDED = "expanded" ; protected final List < Button > fCheckBoxes ; protected final List < Combo > fComboBoxes ; protected final List < Text > fTextBoxes ; protected final HashMap < Object , Label > fLabels ; protected final List < ExpandableComposite > fExpandedComposites ; private SelectionListener fSelectionListener ; private ModifyListener fTextModifyListener ; protected IStatusChangeListener fContext ; protected final IProject fProject ; protected final Key [ ] fAllKeys ; private IScopeContext [ ] fLookupOrder ; private Shell fShell ; private final IWorkingCopyManager fManager ; private IWorkbenchPreferenceContainer fContainer ; private Map < Key , String > fDisabledProjectSettings ; private int fRebuildCount ; public OptionsConfigurationBlock ( IStatusChangeListener context , IProject project , Key [ ] allKeys , IWorkbenchPreferenceContainer container ) { fContext = context ; fProject = project ; fAllKeys = allKeys ; fContainer = container ; if ( container == null ) { fManager = new WorkingCopyManager ( ) ; } else { fManager = container . getWorkingCopyManager ( ) ; } if ( fProject != null ) { fLookupOrder = new IScopeContext [ ] { new ProjectScope ( fProject ) , new InstanceScope ( ) , new DefaultScope ( ) } ; } else { fLookupOrder = new IScopeContext [ ] { new InstanceScope ( ) , new DefaultScope ( ) } ; } testIfOptionsComplete ( allKeys ) ; if ( fProject == null || hasProjectSpecificOptions ( fProject ) ) { fDisabledProjectSettings = null ; } else { fDisabledProjectSettings = new IdentityHashMap < Key , String > ( ) ; for ( int i = 0 ; i < allKeys . length ; i ++ ) { Key curr = allKeys [ i ] ; fDisabledProjectSettings . put ( curr , curr . getStoredValue ( fLookupOrder , false , fManager ) ) ; } } settingsUpdated ( ) ; fCheckBoxes = new ArrayList < Button > ( ) ; fComboBoxes = new ArrayList < Combo > ( ) ; fTextBoxes = new ArrayList < Text > ( 2 ) ; fLabels = new HashMap < Object , Label > ( ) ; fExpandedComposites = new ArrayList < ExpandableComposite > ( ) ; fRebuildCount = getRebuildCount ( ) ; } protected final IWorkbenchPreferenceContainer getPreferenceContainer ( ) { return fContainer ; } protected static Key getKey ( String plugin , String key ) { return new Key ( plugin , key ) ; } protected final static Key getRDTCoreKey ( String key ) { return getKey ( RubyCore . PLUGIN_ID , key ) ; }
2,114
<s> package de . fuberlin . wiwiss . d2rq . expr ; import java . util . Set ; import de . fuberlin . wiwiss . d2rq . algebra . AliasMap ; import de . fuberlin . wiwiss . d2rq . algebra . Attribute ; import de . fuberlin . wiwiss . d2rq . algebra . ColumnRenamer ; import de . fuberlin . wiwiss . d2rq . sql . ConnectedDB ; public class NotNull extends Expression { public static Expression create ( Expression expr ) { return new NotNull ( expr ) ; } private Expression expr ; private NotNull ( Expression expr ) { this . expr = expr ; } public Set < Attribute > attributes ( ) { return expr . attributes ( ) ; } public boolean isFalse ( ) { return false ; } public boolean isTrue ( ) { return false ; } public Expression renameAttributes ( ColumnRenamer columnRenamer ) { return NotNull . create ( columnRenamer . applyTo ( expr ) ) ; } public String toSQL ( ConnectedDB database , AliasMap aliases ) { return expr . toSQL ( database , aliases ) + " IS NOT NULL" ; } public String
2,115
<s> package net . ggtools . grand . ui . actions ; import java . util . Collection ; import java . util . Iterator ; import java . util . LinkedList ; import java . util . List ; import net . ggtools . grand . filters . GraphFilter ; import net . ggtools . grand . filters . NodeRemoverFilter ; import net . ggtools . grand . ui . graph . GraphControlerProvider ; import net . ggtools . grand . ui . graph . draw2d . Draw2dNode ; import org . apache . commons . logging . Log ; import org . apache . commons . logging . LogFactory ; public class FilterSelectedNodesAction extends GraphListenerAction { private static final String DEFAULT_ACTION_NAME = "" ; private static final Log log = LogFactory . getLog ( FilterSelectedNodesAction . class ) ; public FilterSelectedNodesAction ( final GraphControlerProvider parent ) { super ( parent , DEFAULT_ACTION_NAME ) ; boolean isEnabled = false ; if ( getGraphControler ( ) != null ) { final Collection < Draw2dNode > selectedNodes = getGraphControler ( ) . getSelection ( ) ; isEnabled = ! selectedNodes . isEmpty ( ) ; }
2,116
<s> package org . rubypeople . rdt . refactoring . core . renamefield ; import java . util . ArrayList ; import java . util . Collection ; import org . rubypeople . rdt . refactoring . core . IRefactoringConfig ; import org . rubypeople . rdt . refactoring . core . renamefield . fielditems . AttrFieldItem ; import org . rubypeople . rdt . refactoring . core . renamefield . fielditems . FieldItem ; import org . rubypeople . rdt . refactoring . core . renamemethod . NodeSelector ; import org . rubypeople . rdt . refactoring . documentprovider . DocumentWithIncluding ; import org . rubypeople . rdt . refactoring . documentprovider . IDocumentProvider ; import org . rubypeople . rdt . refactoring . nodewrapper . ClassNodeWrapper ; import org . rubypeople . rdt . refactoring . nodewrapper . INodeWrapper ; import org . rubypeople . rdt . refactoring . ui . ICheckboxListener ; import org . rubypeople
2,117
<s> package com . asakusafw . dmdl . parser ; import java . io . PrintWriter ; import java . text . MessageFormat ; import java . util . Iterator ; import java . util . LinkedList ; import com . asakusafw . dmdl . model . * ; public final class DmdlEmitter { public static void emit ( AstNode node , PrintWriter output ) { if ( node == null ) { throw new IllegalArgumentException ( "" ) ; } if ( output == null ) { throw new IllegalArgumentException ( "" ) ; } Context context = new Context ( output ) ; node . accept ( context , Engine . INSTANCE ) ; } private DmdlEmitter ( ) { return ; } private static class Engine implements AstNode . Visitor < Context , Void > { static final Engine INSTANCE = new Engine ( ) ; @ Override public Void visitAttribute ( Context context , AstAttribute node ) { context . print ( "@" ) ; node . name . accept ( context , this ) ; if ( node . elements . isEmpty ( ) == false ) { context . println ( "(" ) ; context . enter ( ) ; for ( int i = 0 , n = node . elements . size ( ) ; i < n ; i ++ ) { node . elements . get ( i ) . accept ( context , this ) ; if ( i != n - 1 ) { context . println ( "," ) ; } else { context . println ( ) ; } } context . exit ( ) ; context . print ( ")" ) ; } return null ; } @ Override public Void visitAttributeElement ( Context context , AstAttributeElement node ) { node . name . accept ( context , this ) ; context . print ( " = " ) ; node . value . accept ( context , this ) ; return null ; } @ Override public Void visitAttributeValueArray ( Context context , AstAttributeValueArray node ) { context . println ( "'{'" ) ; context . enter ( ) ; for ( int i = 0 , n = node . elements . size ( ) ; i < n ; i ++ ) { node . elements . get ( i ) . accept ( context , this ) ; if ( i != n - 1 ) { context . println ( "," ) ; } else { context . println ( ) ; } } context . exit ( ) ; context . print ( "'}'" ) ; return null ; } @ Override public Void visitBasicType ( Context context , AstBasicType node ) { context . print ( "{0}" , node . kind . name ( ) ) ; return null ; } @ Override public Void visitDescription ( Context context , AstDescription node ) { context . print ( "{0}" , node . token ) ; return null ; } @ Override public Void visitGrouping ( Context context , AstGrouping node ) { context . print ( "% " ) ; Iterator < AstSimpleName > iter = node . properties . iterator ( ) ; if ( iter . hasNext ( ) ) { iter . next ( ) . accept ( context , this ) ; while ( iter . hasNext ( ) ) { context . print ( ", " ) ; iter . next ( ) . accept ( context , this ) ; } } return null ; } @ Override public Void visitJoin ( Context context , AstJoin node ) { node . reference . accept ( context , this ) ; if ( node . mapping != null ) { context . print ( " " ) ; node . mapping . accept ( context , this ) ; } if ( node . grouping != null ) { context . print ( " " ) ; node . grouping . accept ( context , this ) ; } return null ; } @ Override public Void visitLiteral ( Context context , AstLiteral node ) { context . print ( "{0}" , node . token ) ; return null ; } @ Override public < T extends AstTerm < T > > Void visitModelDefinition ( Context context , AstModelDefinition < T > node ) { if ( node . description != null ) { node . description . accept ( context , this ) ; context . println ( ) ; } for ( AstAttribute attribute : node . attributes ) { attribute . accept ( context , this ) ; context . println ( ) ; } switch ( node . kind ) { case JOINED : context . print ( "joined " ) ; break ; case PROJECTIVE : context . print ( "projective " ) ; break ; case SUMMARIZED : context . print ( "summarized " ) ; break ; default : break ; } node . name . accept ( context , this ) ; context . print ( " = " ) ; node . expression . accept ( context , this ) ; context . print ( ";" ) ; return null ; } @ Override public Void visitModelFolding ( Context context , AstModelFolding node ) { context . println ( "{0}" , "=> {" ) ; context . enter ( ) ; for ( AstPropertyFolding property :
2,118
<s> package de . fuberlin . wiwiss . d2rq . mapgen ; public class FilterMatchColumn extends Filter { private final IdentifierMatcher schema ; private final IdentifierMatcher table ; private final IdentifierMatcher column ; private boolean matchParents ; public FilterMatchColumn ( IdentifierMatcher schema , IdentifierMatcher table , IdentifierMatcher column , boolean matchParents ) { this . schema = schema ; this . table = table ; this . column = column ; this . matchParents = matchParents ; } public boolean matchesSchema ( String schema ) { if ( ! matchParents ) return false ; return this . schema . matches ( schema ) ; } public boolean matchesTable ( String schema , String table ) { if ( ! matchParents ) return false ; return this . schema . matches ( schema ) && this . table . matches ( table ) ; } public boolean matchesColumn ( String schema , String table , String column
2,119
<s> package handson . springbatch ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import org . springframework . batch . core . StepContribution ; import org . springframework . batch . core . scope . context . ChunkContext ; import org . springframework . batch . core . step . tasklet . Tasklet ; import
2,120
<s> package net . sf . sveditor . core . tests . parser ; import net . sf . sveditor . core . SVCorePlugin ; import junit . framework . TestCase ; public
2,121
<s> package org . oddjob . schedules ; import java . io . Serializable ; import java . util . Date ; import org . oddjob . arooa . utils . DateHelper ; public class SimpleScheduleResult implements ScheduleResult , Serializable { private static final long serialVersionUID = 2011091500L ; private final Interval interval ; private final Date useNext ; public SimpleScheduleResult ( Interval interval ) { this ( interval , interval . getToDate ( ) ) ; } public SimpleScheduleResult ( Interval interval , Date useNext ) { if ( interval == null ) { throw new NullPointerException ( "No Interval." ) ; } this . interval = new SimpleInterval ( interval ) ; this . useNext = useNext ; } @ Override public Date getFromDate ( ) { return interval . getFromDate ( ) ; } @ Override public Date getToDate ( ) { return interval . getToDate ( ) ; } @ Override public Date
2,122
<s> package org . oddjob . jmx . general ; import java . lang . management . ManagementFactory ; import javax . management . MBeanServer ; import javax . management . ObjectName ; import junit . framework . TestCase ; import org . oddjob . arooa . beanutils . BeanUtilsPropertyAccessor ; import org . oddjob . arooa . convert . DefaultConverter ; import org . oddjob . arooa . life . ClassLoaderClassResolver ; import org . oddjob . arooa . reflect . PropertyAccessor ; import org . oddjob . arooa . utils . DateHelper ; import org . oddjob . logging . LogEvent ; import org . oddjob . logging . LogLevel ; import org . oddjob . logging . LogListener ; import org . oddjob . logging . log4j . Log4jArchiver ; import org . oddjob . script . ConvertableArguments ; import org . oddjob . script . InvokerArguments ; public class SimpleMBeanNodeTest extends TestCase { ObjectName objectName ; MBeanServer mBeanServer ; Vendor simple = new Vendor ( "Hay Medows" ) ; protected void setUp ( ) throws Exception { objectName = new ObjectName ( "" ) ; mBeanServer = ManagementFactory . getPlatformMBeanServer ( ) ; mBeanServer . registerMBean ( simple , objectName ) ; } @ Override protected void tearDown ( ) throws Exception { mBeanServer . unregisterMBean ( objectName ) ; } public void testInvoking ( ) throws Exception { SimpleMBeanNode test = new SimpleMBeanNode ( objectName , mBeanServer , new ClassLoaderClassResolver ( getClass ( ) . getClassLoader ( ) ) ) ; InvokerArguments arguments = new ConvertableArguments ( new DefaultConverter ( ) , "apples" , "2012-08-01" , 42 ) ; double result = ( Double ) test . invoke ( "quote" , arguments ) ; assertEquals ( 94.23 , result , 0.001 ) ; assertEquals ( "apples" , simple . fruit ) ; assertEquals ( DateHelper . parseDate ( "2012-08-01" ) , simple . delivery ) ; assertEquals ( 42 , simple . quantity ) ; } public void testGetProperty ( ) throws Exception { SimpleMBeanNode test = new SimpleMBeanNode ( objectName , mBeanServer , new
2,123
<s> package net . sf . sveditor . ui . editor ; import java . util . ArrayList ; import java . util . List ; import net . sf . sveditor . core . SVCorePlugin ; import net . sf . sveditor . core . content_assist . AbstractCompletionProcessor ; import net . sf . sveditor . core . content_assist . SVCompletionProposal ; import net . sf . sveditor . core . content_assist . SVCompletionProposalType ; import net . sf . sveditor . core . content_assist . SVCompletionProposalUtils ; import net . sf . sveditor . core . db . ISVDBChildItem ; import net . sf . sveditor . core . db . ISVDBItemBase ; import net . sf . sveditor . core . db . ISVDBNamedItem ; import net . sf . sveditor . core . db . SVDBClassDecl ; import net . sf . sveditor . core . db . SVDBFile ; import net . sf . sveditor . core . db . SVDBFunction ; import net . sf . sveditor . core . db . SVDBItem ; import net . sf . sveditor . core . db . SVDBItemType ; import net . sf . sveditor . core . db . SVDBMacroDef ; import net . sf . sveditor . core . db . SVDBModIfcClassParam ; import net . sf . sveditor . core . db . SVDBModIfcDecl ; import net . sf . sveditor . core . db . SVDBTask ; import net . sf . sveditor . core . db . index . ISVDBIndexIterator ; import net . sf . sveditor . core . db . stmt . SVDBParamPortDecl ; import net . sf . sveditor . core . db . stmt . SVDBTypedefStmt ; import net . sf . sveditor . core . db . stmt . SVDBVarDeclItem ; import net . sf . sveditor . core . job_mgr . IJob ; import net . sf . sveditor . core . job_mgr . IJobMgr ; import net . sf . sveditor . core . log . LogFactory ; import net . sf . sveditor . ui . SVDBIconUtils ; import net . sf . sveditor . ui . SVUiPlugin ; import net . sf . sveditor . ui . pref . SVEditorPrefsConstants ; import net . sf . sveditor . ui . scanutils . SVDocumentTextScanner ; import org . eclipse . jface . preference . IPreferenceStore ; import org . eclipse . jface . text . BadLocationException ; import org . eclipse . jface . text . IDocument ; import org . eclipse . jface . text . ITextViewer ; import org . eclipse . jface . text . Region ; import org . eclipse . jface . text . contentassist . CompletionProposal ; import org . eclipse . jface . text . contentassist . ICompletionProposal ; import org . eclipse . jface . text . contentassist . IContentAssistProcessor ; import org . eclipse . jface . text . contentassist . IContextInformation ; import org . eclipse . jface . text . contentassist . IContextInformationValidator ; import org . eclipse . jface . text . templates . DocumentTemplateContext ; import org . eclipse . jface . text . templates . Template ; import org . eclipse . jface . text . templates . TemplateContext ; import org . eclipse . jface . text . templates . TemplateContextType ; import org . eclipse . jface . text . templates . TemplateProposal ; import org . eclipse . swt . widgets . Display ; public class SVCompletionProcessor extends AbstractCompletionProcessor implements IContentAssistProcessor { private SVEditor fEditor ; private SVCompletionProposalUtils fProposalUtils ; private static final boolean fShowModulePorts = false ; private static final char [ ] PROPOSAL_ACTIVATION_CHARS = { '.' , ':' } ; private final IContextInformation NO_CONTEXTS [ ] = new IContextInformation [ 0 ] ; private List < ICompletionProposal > fProposals = new ArrayList < ICompletionProposal > ( ) ; public SVCompletionProcessor ( SVEditor editor ) { fLog = LogFactory . getLogHandle ( "" ) ; fEditor = editor ; fProposalUtils = new SVCompletionProposalUtils ( ) ; } public ICompletionProposal [ ] computeCompletionProposals ( ITextViewer viewer , int offset ) { fProposalUtils . setTFMaxCharsPerLine ( SVUiPlugin . getDefault ( ) . getIntegerPref ( SVEditorPrefsConstants . P_CONTENT_ASSIST_TF_LINE_WRAP_LIMIT ) ) ; fProposalUtils . setTFNamedPorts ( SVUiPlugin .
2,124
<s> package org . oddjob . swing ; import java . io . File ; import javax . swing . JFileChooser ; import javax . swing . JFrame ; import javax . swing . UIManager ; import org . oddjob . framework . SerializableJob ; public class ChooseFile extends SerializableJob { private static final long
2,125
<s> package net . ggtools . grand . ui . graph ; import java . util . Iterator ; import java . util . LinkedList ; import net . ggtools . grand . graph . Graph ; import net . ggtools . grand . graph . Node ; import net . ggtools . grand . ui . Application ; import net . ggtools . grand . ui . GrandUiPrefStore ; import net . ggtools . grand . ui . prefs . PreferenceKeys ; import org . apache . commons . logging . Log ; import org . apache . commons . logging . LogFactory ; import org . eclipse . jface . viewers . IColorProvider ; import org . eclipse . jface . viewers . ILabelProvider ; import org . eclipse . jface . viewers . ILabelProviderListener ; import org . eclipse . jface . viewers . IStructuredContentProvider ; import org . eclipse . jface . viewers . Viewer ; import org . eclipse . swt . graphics . Color ; import org . eclipse . swt . graphics . Image ; public class GraphNodeContentProvider implements IStructuredContentProvider , ILabelProvider , IColorProvider { private static final Log log = LogFactory . getLog ( GraphNodeContentProvider . class ) ; private Graph graph ; public GraphNodeContentProvider ( ) { } public void addListener ( final ILabelProviderListener listener ) { } public void dispose ( ) { graph = null ; } public Color getBackground ( final Object element ) { if ( element instanceof Node ) { final Node node = ( Node ) element ; final GrandUiPrefStore preferenceStore = Application . getInstance ( ) . getPreferenceStore ( ) ; if ( node . equals ( graph . getStartNode ( ) ) ) { return preferenceStore . getColor ( PreferenceKeys . NODE_PREFIX + "" ) ; } if ( node . hasAttributes ( Node . ATTR_MISSING_NODE ) ) { return preferenceStore . getColor ( PreferenceKeys . NODE_PREFIX + "" ) ; } if ( node . hasAttributes ( Node . ATTR_MAIN_NODE ) ) { return preferenceStore . getColor ( PreferenceKeys . NODE_PREFIX + "" ) ; } return preferenceStore . getColor ( PreferenceKeys . NODE_PREFIX + "" ) ; } return null ; } public Object [ ] getElements ( final Object inputElement ) { if ( graph == null ) { return null ; } final LinkedList < Node > list = new LinkedList < Node > ( ) ; for ( final Iterator < Node > iter = graph . getNodes ( ) ; iter . hasNext ( ) ; ) { list . add ( iter . next ( ) ) ; } return list . toArray ( ) ; } public Color getForeground ( final Object element ) { if ( element instanceof Node ) { final Node node =
2,126
<s> package com . asakusafw . utils . java . internal . model . syntax ; import com . asakusafw . utils . java . model . syntax . MarkerAnnotation ; import com . asakusafw . utils . java . model . syntax . ModelKind ; import com . asakusafw . utils . java . model . syntax . NamedType ; import com . asakusafw . utils . java . model . syntax . Visitor ; public final class MarkerAnnotationImpl extends ModelRoot implements MarkerAnnotation { private NamedType type ; @ Override public NamedType getType ( ) { return this . type ; } public void setType ( NamedType type ) { Util . notNull ( type , "type" ) ; this . type = type ; } @ Override public ModelKind getModelKind ( ) { return ModelKind . MARKER_ANNOTATION ; } @ Override public < R , C , E extends Throwable
2,127
<s> package org . rubypeople . rdt . refactoring . tests . core . inlinelocal ; import java . io . FileNotFoundException ; import java . io . IOException ; import org . eclipse . jface . text . BadLocationException ; import org . rubypeople . rdt . refactoring . core . inlinelocal . InlineLocalConditionChecker ; import org . rubypeople . rdt . refactoring . core . inlinelocal . InlineLocalConfig ; import org . rubypeople . rdt . refactoring . core . inlinelocal . LocalVariableInliner ; import org . rubypeople . rdt . refactoring . tests . FileTestData ; import org . rubypeople . rdt . refactoring . tests . RefactoringTestCase ; public class LocalInlinerTester extends RefactoringTestCase { public LocalInlinerTester ( String fileName ) { super ( fileName ) ; } @ Override public void runTest ( ) throws FileNotFoundException , IOException , BadLocationException { FileTestData data = new FileTestData ( getName ( ) ) ; InlineLocalConfig config = new InlineLocalConfig ( data , data . getIntProperty ( "" ) ) ; InlineLocalConditionChecker checker =
2,128
<s> package com . asakusafw . compiler . directio ; import com . asakusafw . vocabulary . flow . FlowDescription ; import com . asakusafw . vocabulary . flow . In ; import com . asakusafw . vocabulary . flow . Out ; public class DualIdentityFlow < A ,
2,129
<s> package com . asakusafw . utils . java . internal . model . syntax ; import java . util . List ; import com . asakusafw . utils . java . model . syntax . Attribute ; import com . asakusafw . utils . java . model . syntax . InterfaceDeclaration ; import com . asakusafw . utils . java . model . syntax . Javadoc ; import com . asakusafw . utils . java . model . syntax . ModelKind ; import com . asakusafw . utils . java . model . syntax . SimpleName ; import com . asakusafw . utils . java . model . syntax . Type ; import com . asakusafw . utils . java . model . syntax . TypeBodyDeclaration ; import com . asakusafw . utils . java . model . syntax . TypeParameterDeclaration ; import com . asakusafw . utils . java . model . syntax . Visitor ; public final class InterfaceDeclarationImpl extends ModelRoot implements InterfaceDeclaration { private Javadoc javadoc ; private List < ? extends Attribute > modifiers ; private SimpleName name ; private List < ? extends TypeParameterDeclaration > typeParameters ; private List < ? extends Type > superInterfaceTypes ; private List < ? extends TypeBodyDeclaration > bodyDeclarations ; @ Override public Javadoc getJavadoc ( ) { return this . javadoc ; } public void setJavadoc ( Javadoc javadoc ) { this . javadoc = javadoc ; } @ Override public List < ? extends Attribute
2,130
<s> package org . rubypeople . rdt . internal . ui . viewsupport ; import org . eclipse . core . resources . IContainer ; import org . eclipse . core . resources . IResource ; import org . eclipse . jface . action . IStatusLineManager ; import org . eclipse . jface . viewers . ISelection ; import org . eclipse . jface . viewers . ISelectionChangedListener ; import org . eclipse . jface . viewers . IStructuredSelection ; import org . eclipse . jface . viewers . SelectionChangedEvent ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . internal . corext . util . Messages ; import org . rubypeople . rdt . internal . ui . RubyUIMessages ; import org . rubypeople . rdt . ui . RubyElementLabels ; public class StatusBarUpdater implements ISelectionChangedListener { private final long LABEL_FLAGS = RubyElementLabels . DEFAULT_QUALIFIED | RubyElementLabels . ROOT_POST_QUALIFIED | RubyElementLabels . APPEND_ROOT_PATH | RubyElementLabels . M_PARAMETER_NAMES ; private IStatusLineManager fStatusLineManager ; public StatusBarUpdater ( IStatusLineManager statusLineManager ) { fStatusLineManager = statusLineManager ; } public void selectionChanged ( SelectionChangedEvent event ) { String statusBarMessage = formatMessage ( event . getSelection ( ) ) ; fStatusLineManager . setMessage ( statusBarMessage ) ; } protected String formatMessage ( ISelection sel ) { if ( sel instanceof IStructuredSelection && ! sel . isEmpty ( ) ) { IStructuredSelection selection = ( IStructuredSelection ) sel ; int nElements = selection . size ( ) ; if ( nElements > 1 ) { return
2,131
<s> package net . sf . sveditor . core . db . expr ; import net . sf . sveditor . core . db . SVDBItemType ;
2,132
<s> package org . rubypeople . rdt . internal . ui . text . ruby . hover ; import java . io . BufferedReader ; import java . io . IOException ; import java . io . InputStreamReader ; import java . net . URL ; import org . eclipse . core . runtime . FileLocator ; import org . eclipse . core . runtime . Platform ; import org . eclipse . jface . text . BadLocationException ; import org . eclipse . jface . text . BadPartitioningException ; import org . eclipse . jface . text . DefaultInformationControl ; import org . eclipse . jface . text . IDocument ; import org . eclipse . jface . text . IDocumentExtension3 ; import org . eclipse . jface . text . IInformationControl ; import org . eclipse . jface . text . IInformationControlCreator ; import org . eclipse . jface . text . IRegion ; import org . eclipse . jface . text . ITextHoverExtension ; import org . eclipse . jface . text . ITextViewer ; import org . eclipse . swt . SWT ; import org . eclipse . swt . widgets . Shell ; import org . eclipse . ui . IEditorInput ; import org . eclipse . ui . IEditorPart ; import org . eclipse . ui . PlatformUI ; import org . eclipse . ui . keys . IBindingService ; import org . osgi . framework . Bundle ; import org . rubypeople . rdt . core . ICodeAssist ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . RubyModelException ; import org . rubypeople . rdt . internal . core . util . Messages ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; import org . rubypeople . rdt . internal . ui . rubyeditor . RubyScriptEditorInput ; import org . rubypeople . rdt . internal . ui . rubyeditor . WorkingCopyManager ; import org . rubypeople . rdt . internal . ui . text . HTMLTextPresenter ; import org . rubypeople . rdt . internal . ui . text . IRubyPartitions ; import org . rubypeople . rdt . internal . ui . text . RubyWordFinder ; import org . rubypeople . rdt . ui . PreferenceConstants ; import org . rubypeople . rdt . ui . actions . IRubyEditorActionDefinitionIds ; import org . rubypeople . rdt . ui .
2,133
<s> package com . asakusafw . thundergate . runtime . cache ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . io . ByteArrayInputStream ; import java . io . File ; import java . text . ParseException ; import java . text . SimpleDateFormat ; import java . util . Calendar ; import java . util . Collections ; import java . util . Date ; import org . apache . hadoop . conf . Configuration ; import org . apache . hadoop . fs . FSDataOutputStream ; import org . apache . hadoop . fs . Path ; import org . apache . hadoop . io . IOUtils ; import org . junit . Assume ; import org . junit . Rule ; import org . junit . Test ; import org . junit . rules . TemporaryFolder ; public class CacheStorageTest { @ Rule public final TemporaryFolder folder = new TemporaryFolder ( ) ; @ Test public void deleteHead ( ) throws Exception { File dir = folder . newFolder ( "testing" ) ; dir . delete ( ) ; CacheStorage storage = new CacheStorage ( new Configuration ( ) , dir . toURI ( ) ) ; try { Path content = storage . getHeadContents ( "a" ) ; FSDataOutputStream output = storage . getFileSystem ( ) . create ( content ) ; try { IOUtils . copyBytes ( new ByteArrayInputStream ( "Hello, world" . getBytes ( ) ) , output , storage . getConfiguration ( ) ) ; } finally { output . close ( ) ; } assertThat ( storage . getFileSystem ( ) . exists ( storage . getHeadDirectory ( ) ) , is ( true ) ) ; assertThat ( storage . getFileSystem ( ) . exists ( storage . getPatchDirectory ( ) ) , is ( false ) ) ; storage . deleteHead ( ) ; assertThat ( storage . getFileSystem ( ) . exists ( storage . getHeadDirectory ( ) ) , is ( false ) ) ; } finally { storage . close ( ) ; } } @ Test public void deletePatch ( ) throws Exception { File dir = folder . newFolder ( "testing" ) ; dir . delete ( ) ; CacheStorage storage = new CacheStorage ( new Configuration ( ) , dir . toURI ( ) ) ; try { Path content = storage . getPatchContents ( "a" ) ; FSDataOutputStream output = storage . getFileSystem ( ) . create ( content ) ; try { IOUtils . copyBytes ( new ByteArrayInputStream ( "Hello, world" . getBytes ( ) ) , output , storage . getConfiguration ( ) ) ; } finally { output . close ( ) ; } assertThat ( storage . getFileSystem ( ) . exists ( storage . getPatchDirectory ( ) ) , is ( true ) ) ; assertThat ( storage . getFileSystem ( ) . exists ( storage . getHeadDirectory ( ) ) , is ( false ) ) ; storage . deletePatch ( ) ; assertThat ( storage . getFileSystem ( ) . exists ( storage . getPatchDirectory ( ) ) , is ( false ) ) ; } finally { storage . close ( ) ; } } @ Test public void deleteAll ( ) throws Exception { File dir = folder . newFolder ( "testing" ) ; dir . delete ( ) ; CacheStorage storage = new CacheStorage ( new Configuration ( ) , dir . toURI ( ) ) ; try { Path headContent = storage . getHeadContents ( "a" ) ; FSDataOutputStream headOutput = storage . getFileSystem ( ) . create ( headContent ) ; try { IOUtils . copyBytes ( new ByteArrayInputStream ( "Hello, world" . getBytes ( ) ) , headOutput , storage . getConfiguration ( ) ) ; } finally { headOutput . close ( ) ; } Path patchContent = storage . getPatchContents ( "a" ) ; FSDataOutputStream patchOutput = storage . getFileSystem ( ) . create ( patchContent ) ; try { IOUtils . copyBytes ( new ByteArrayInputStream ( "Hello, world" . getBytes ( ) ) , patchOutput , storage . getConfiguration ( ) ) ; } finally { patchOutput . close ( ) ; } assertThat ( storage . getFileSystem ( ) . exists ( storage . getHeadDirectory ( ) ) , is ( true ) ) ; assertThat
2,134
<s> package com . asakusafw . testdriver . bulkloader ; import com . asakusafw . vocabulary . bulkloader . ColumnOrder ; import com . asakusafw . vocabulary . bulkloader . OriginalName ; import com
2,135
<s> package org . rubypeople . rdt . refactoring . action ; import org . eclipse . jface . action . IAction ; import org . eclipse . jface . viewers . ISelection ; import org . eclipse . ui . IEditorActionDelegate ; import org . eclipse . ui . IEditorPart ; import org . eclipse . ui . IWorkbenchWindow ; import org . eclipse . ui . IWorkbenchWindowActionDelegate ; import org . rubypeople . rdt . refactoring . core . IRefactoringContext ; import org . rubypeople . rdt . refactoring . core . RubyRefactoring ; import org . rubypeople . rdt .
2,136
<s> package org . rubypeople . rdt . internal . ui . wizards . buildpaths . newsourcepage ; import java . lang . reflect . InvocationTargetException ; import java . util . List ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . jface . operation . IRunnableWithProgress ; import org . rubypeople . rdt . core . RubyModelException ; import org . rubypeople . rdt . internal . corext . buildpath . ILoadpathInformationProvider ; import org . rubypeople . rdt . internal . corext . buildpath . LoadpathModifier ; public abstract class LoadpathModifierOperation extends LoadpathModifier implements IRunnableWithProgress { protected ILoadpathInformationProvider fInformationProvider ; protected CoreException fException ; private int fType ; private String fName ; public LoadpathModifierOperation ( ILoadpathModifierListener listener , ILoadpathInformationProvider informationProvider , String name , int type ) { super ( listener ) ; fInformationProvider = informationProvider ; fException = null ; fName = name ; fType = type ; } protected void handleResult ( List result , IProgressMonitor monitor ) throws InvocationTargetException { if ( monitor == null || fException == null ) fInformationProvider . handleResult
2,137
<s> package com . asakusafw . runtime . value ; import java . io . DataInput ; import java . io . DataOutput ; import java . io . IOException ; import java . math . BigDecimal ; import java . math . BigInteger ; import java . math . MathContext ; import java . util . Arrays ; import org . apache . hadoop . io . WritableComparator ; import org . apache . hadoop . io . WritableUtils ; import com . asakusafw . runtime . io . util . WritableRawComparable ; public final class DecimalOption extends ValueOption < DecimalOption > { private BigDecimal entity = BigDecimal . ZERO ; public DecimalOption ( ) { super ( ) ; } public DecimalOption ( BigDecimal valueOrNull ) { super ( ) ; if ( valueOrNull != null ) { this . entity = valueOrNull ; this . nullValue = false ; } } public BigDecimal get ( ) { if ( nullValue ) { throw new NullPointerException ( ) ; } return entity ; } public BigDecimal or ( BigDecimal alternate ) { if ( nullValue ) { return alternate ; } return get ( ) ; } public void add ( BigDecimal delta ) { if ( nullValue ) { throw new NullPointerException ( ) ; } this . entity = entity . add ( delta ) ; } public void add ( DecimalOption other ) { if ( nullValue ) { throw new NullPointerException ( ) ; } if ( other . nullValue ) { return ; } this . entity = entity . add ( other . entity ) ; } @ Deprecated public DecimalOption modify ( BigDecimal newValue ) { if ( newValue == null ) { this . nullValue = true ; } else { this . nullValue = false ; this . entity = newValue ; } return this ; } @ Override @ Deprecated public void copyFrom ( DecimalOption optionOrNull ) { if ( this == optionOrNull ) { return ; } else if ( optionOrNull == null || optionOrNull . nullValue ) { this . nullValue = true ; } else { modify ( optionOrNull . entity ) ; } } @ Override public int hashCode ( ) { final int prime = 31 ; if ( isNull ( ) ) { return 1 ; } int result = 1 ; result = prime * result + entity . hashCode ( ) ; return result ; } @ Override public boolean equals ( Object obj ) { if ( this == obj ) { return true ; } if ( obj == null ) { return false ; } if ( getClass ( ) != obj . getClass ( ) ) { return false ; } DecimalOption other = ( DecimalOption ) obj ; if ( nullValue != other . nullValue ) { return false ; } if ( nullValue == false && entity . equals ( other . entity ) == false ) { return false ; } return true ; } public boolean has ( BigDecimal other ) { if ( isNull ( ) ) { return other == null ; } return entity . equals ( other ) ; } @ Override public int compareTo ( WritableRawComparable o ) { DecimalOption other = ( DecimalOption ) o ; if ( nullValue | other . nullValue ) { if ( nullValue & other . nullValue ) { return 0 ; } return nullValue ? - 1 : + 1 ; } return entity . compareTo ( other . entity ) ; } @ Override public String toString ( ) { if ( isNull ( ) ) { return String . valueOf ( ( Object ) null ) ; } else { return get ( ) . toString ( ) ; } } @ Override public void write ( DataOutput out ) throws IOException { if ( nullValue ) { WritableUtils . writeVLong ( out , - 1 ) ; } else { BigDecimal decimal = entity ; WritableUtils . writeVInt ( out , decimal . precision ( ) ) ; WritableUtils . writeVInt ( out , decimal . scale ( ) ) ; BigInteger unscaled = decimal . unscaledValue ( ) ; byte [ ] bytes = unscaled . toByteArray ( ) ; WritableUtils . writeVInt ( out , bytes . length ) ; out . write ( bytes ) ; } } @ SuppressWarnings ( "deprecation" ) @ Override public void readFields ( DataInput in ) throws IOException { int precision = WritableUtils . readVInt ( in ) ; if ( precision == - 1 ) { setNull ( ) ; } else { int scale = WritableUtils . readVInt ( in ) ; int byteCount = WritableUtils . readVInt ( in ) ; byte [ ] bytes = new byte [ byteCount ] ; in . readFully ( bytes ) ; modify ( new BigDecimal ( new BigInteger ( bytes ) , scale , new MathContext ( precision ) ) ) ; } } @ SuppressWarnings ( "deprecation" ) @ Override public int restore ( byte [ ] bytes , int offset , int limit ) throws IOException { int cursor = offset ; int precision = WritableComparator . readVInt ( bytes , cursor ) ; cursor += WritableUtils . decodeVIntSize ( bytes [ cursor ] ) ; if ( precision < 0 ) { setNull ( ) ; } else { int scale = WritableComparator . readVInt ( bytes , cursor ) ; cursor += WritableUtils . decodeVIntSize ( bytes [ cursor ] ) ; int bytesCount = WritableComparator . readVInt ( bytes , cursor ) ; cursor += WritableUtils . decodeVIntSize ( bytes [ cursor ] ) ; byte [ ] unscaled = Arrays . copyOfRange ( bytes , cursor , cursor + bytesCount ) ; cursor += bytesCount ; modify ( new BigDecimal ( new BigInteger ( unscaled ) , scale , new MathContext ( precision ) ) ) ; } return cursor - offset ; } @ Override public int getSizeInBytes ( byte [ ] buf , int offset ) throws IOException { return getBytesLength ( buf , offset , buf . length - offset ) ; } @ Override public int compareInBytes ( byte [ ] b1 , int o1 , byte [ ] b2 , int o2 ) throws IOException { return compareBytes ( b1 , o1 , b1 . length - o1 , b2 , o2 , b2 . length - o2 ) ; } public static int getBytesLength ( byte [ ] bytes , int offset , int length ) { try { int cursor = offset ; int precSize = WritableUtils . decodeVIntSize ( bytes [ cursor ] ) ; if ( WritableComparator . readVInt ( bytes , offset ) < 0 ) { return precSize ; } cursor += precSize ; cursor += WritableUtils . decodeVIntSize ( bytes [ cursor ] ) ; int bytesCount = WritableComparator . readVInt ( bytes , cursor ) ; cursor += WritableUtils . decodeVIntSize ( bytes [ cursor ] ) ; cursor += bytesCount ; return cursor - offset ; } catch ( IOException e ) { throw new IllegalStateException ( e ) ; } } public static int compareBytes ( byte [ ] b1 , int s1 , int l1 , byte [ ] b2 , int s2 , int l2 ) { try { int cursor1 = s1 ; int cursor2 = s2 ; int
2,138
<s> package org . rubypeople . rdt . refactoring . core . splitlocal ; import java . util . Collection ;
2,139
<s> package com . asakusafw . testdriver . core ; import java . util . ArrayList ; import java . util . Collections ; import java . util . Comparator ; import java . util . List ; import java . util . ServiceLoader ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; final class Util { static final Logger
2,140
<s> package org . rubypeople . rdt . internal . ui . wizards . buildpaths ; import org . eclipse . jface . viewers . ContentViewer ; import org . eclipse . jface . viewers . IBaseLabelProvider ; import org . eclipse . jface . viewers . ILabelProvider ; import org . eclipse . jface . viewers . Viewer ; import org . eclipse . jface . viewers . ViewerSorter ; import org . rubypeople . rdt . core . ILoadpathEntry ; public class CPListElementSorter extends ViewerSorter { private static final int SOURCE = 0 ; private static final int PROJECT = 1 ; private static final int LIBRARY = 2 ; private static final int VARIABLE = 3 ; private static final int CONTAINER = 4 ; private static final int ATTRIBUTE = 5 ; private static final int CONTAINER_ENTRY = 6 ; private static final int OTHER = 7 ; public int category ( Object obj ) { if ( obj instanceof CPListElement ) { CPListElement element = ( CPListElement ) obj ; if ( element . getParentContainer ( ) != null ) { return CONTAINER_ENTRY ; } switch ( element . getEntryKind ( ) ) { case ILoadpathEntry . CPE_LIBRARY : return LIBRARY ; case ILoadpathEntry . CPE_PROJECT : return PROJECT ; case ILoadpathEntry . CPE_SOURCE : return SOURCE ; case ILoadpathEntry . CPE_VARIABLE : return VARIABLE ; case ILoadpathEntry . CPE_CONTAINER
2,141
<s> package com . asakusafw . runtime . stage . collector ; import java . io . IOException ; import org . apache . hadoop . io . Writable ; import org . apache . hadoop . mapreduce . Mapper ; import com . asakusafw . runtime . core . Result ; import com . asakusafw . runtime . stage . output . StageOutputDriver ; public abstract class SlotDirectMapper extends Mapper < Object , Writable , SortableSlot , WritableSlot > { public static final String NAME_GET_OUTPUT_NAME = "" ; private StageOutputDriver
2,142
<s> package org . rubypeople . rdt . internal . codeassist ; import java . lang . reflect . Method ; import java . util . ArrayList ; import java . util . Arrays ; import java . util . Collection ; import java . util . Collections ; import java . util . HashMap ; import java . util . HashSet ; import java . util . List ; import java . util . Map ; import java . util . Set ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IPath ; import org . eclipse . core . runtime . NullProgressMonitor ; import org . jruby . ast . ClassNode ; import org . jruby . ast . ClassVarAsgnNode ; import org . jruby . ast . ClassVarDeclNode ; import org . jruby . ast . ClassVarNode ; import org . jruby . ast . Colon2Node ; import org . jruby . ast . ConstDeclNode ; import org . jruby . ast . ConstNode ; import org . jruby . ast . DefnNode ; import org . jruby . ast . DefsNode ; import org . jruby . ast . InstAsgnNode ; import org . jruby . ast . InstVarNode ; import org . jruby . ast . IterNode ; import org . jruby . ast . LocalAsgnNode ; import org . jruby . ast . LocalVarNode ; import org . jruby . ast . MethodDefNode ; import org . jruby . ast . ModuleNode ; import org . jruby . ast . Node ; import org . jruby . ast . RootNode ; import org . jruby . ast . SelfNode ; import org . jruby . ast . YieldNode ; import org . jruby . ast . types . INameNode ; import org . jruby . lexer . yacc . SyntaxException ; import org . jruby . parser . StaticScope ; import org . rubypeople . rdt . core . CompletionProposal ; import org . rubypeople . rdt . core . CompletionRequestor ; import org . rubypeople . rdt . core . Flags ; import org . rubypeople . rdt . core . IMember ; import org . rubypeople . rdt . core . IMethod ; import org . rubypeople . rdt . core . IOpenable ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . IRubyModel ; import org . rubypeople . rdt . core . IRubyProject ; import org . rubypeople . rdt . core . IRubyScript ; import org . rubypeople . rdt . core . ISourceRange ; import org . rubypeople . rdt . core . IType ; import org . rubypeople . rdt . core . ITypeHierarchy ; import org . rubypeople . rdt . core . RubyCore ; import org . rubypeople . rdt . core . RubyModelException ; import org . rubypeople . rdt . core . search . CollectingSearchRequestor ; import org . rubypeople . rdt . core . search . IRubySearchConstants ; import org . rubypeople . rdt . core . search . IRubySearchScope ; import org . rubypeople . rdt . core . search . SearchMatch ; import org . rubypeople . rdt . core . search . SearchParticipant ; import org . rubypeople . rdt . core . search . SearchPattern ; import org . rubypeople . rdt . internal . core . LogicalType ; import org . rubypeople . rdt . internal . core . RubyConstant ; import org . rubypeople . rdt . internal . core . RubyElement ; import org . rubypeople . rdt . internal . core . RubyType ; import org . rubypeople . rdt . internal . core . SourceElementParser ; import org . rubypeople . rdt . internal . core . parser . InOrderVisitor ; import org . rubypeople . rdt . internal . core . parser . RubyParser ; import org . rubypeople . rdt . internal . core . search . BasicSearchEngine ; import org . rubypeople . rdt . internal . core . util . ASTUtil ; import org . rubypeople . rdt . internal . core . util . Util ; import org . rubypeople . rdt . internal . ti . BasicTypeGuess ; import org . rubypeople . rdt . internal . ti . ITypeGuess ; import org . rubypeople . rdt . internal . ti . ITypeInferrer ; import org . rubypeople . rdt . internal . ti . util . AttributeLocator ; import org . rubypeople . rdt . internal . ti . util . ClosestSpanningNodeLocator ; import org . rubypeople . rdt . internal . ti . util . INodeAcceptor ; import org . rubypeople . rdt . internal . ti . util . ScopedNodeLocator ; public class CompletionEngine { private static final String OBJECT = "Object" ; private static final String CONSTRUCTOR_INVOKE_NAME = "new" ; private static final String CONSTRUCTOR_DEFINITION_NAME = "initialize" ; private CompletionRequestor fRequestor ; private CompletionContext fContext ; private Set < IType > fVisitedTypes ; private IType fOriginalType ; public CompletionEngine ( CompletionRequestor requestor ) { this . fRequestor = requestor ; } public void complete ( IRubyScript script , int offset ) throws RubyModelException { this . fRequestor . beginReporting ( ) ; fContext = new CompletionContext ( script , offset ) ; if ( fContext . inComment ( ) ) { this . fRequestor . endReporting ( ) ; fContext = null ; return ; } if ( fContext . emptyPrefix ( ) ) { suggestMethodsForEnclosingType ( script ) ; getDocumentsRubyElementsInScope ( ) ; suggestGlobals ( ) ; } else { if ( fContext . isDoubleSemiColon ( ) ) { String prefix = fContext . getFullPrefix ( ) ; String typeName = prefix . substring ( 0 , prefix . lastIndexOf ( "::" ) ) ; RubyElementRequestor requestor = new RubyElementRequestor ( script ) ; Map < String , CompletionProposal > proposals = new HashMap < String , CompletionProposal > ( ) ; if ( fContext . isBroken ( ) ) { Map < IMethod , String > astMethods = addASTProposals ( typeName ) ; for ( IMethod method : astMethods . keySet ( ) ) { if ( ! method . isSingleton ( ) ) continue ; CompletionProposal proposal = suggestMethod ( method , astMethods . get ( method ) , 100 ) ; if ( proposal == null ) continue ; proposals . put ( proposal . getName ( ) , proposal ) ; } addASTTypeConstants ( typeName ) ; } IType [ ] types = requestor . findType ( typeName ) ; for ( int i = 0 ; i < types . length ; i ++ ) { IType type = types [ i ] ; proposals . putAll ( suggestTypesConstants ( type ) ) ; proposals . putAll ( suggestNestedTypes ( type ) ) ; proposals . putAll ( suggestMethods ( 100 , type , false ) ) ; } List < CompletionProposal > list = new ArrayList < CompletionProposal > ( proposals . values ( ) ) ; Collections . sort ( list , new CompletionProposalComparator ( ) ) ; for ( CompletionProposal proposal : list ) { if ( proposal . getCompletion ( ) . startsWith ( fContext . getPartialPrefix ( ) ) ) fRequestor . accept ( proposal ) ; } this . fRequestor . endReporting ( ) ; fContext = null ; return ; } if ( fContext . isConstant ( ) ) { suggestTypeNames ( ) ; suggestConstantNames ( ) ; return ; } if ( fContext . isGlobal ( ) ) { suggestGlobals ( ) ; return ; } if ( fContext . isInstanceVariable ( ) ) { suggestInstanceVariables ( ) ; return ; } if ( fContext . isClassVariable ( ) ) { suggestClassVariables ( ) ; return ; } if ( fContext . isInstanceOrClassVariable ( ) ) { suggestClassAndInstanceVariables ( ) ; return ; } if ( fContext . isExplicitMethodInvokation ( ) ) { ITypeInferrer inferrer = RubyCore . getTypeInferrer ( ) ; Collection < ITypeGuess > guesses = inferrer . infer ( fContext . getCorrectedSource ( ) , fContext . getOffset ( ) ) ; if ( guesses . isEmpty ( ) ) { guesses = new ArrayList < ITypeGuess > ( ) ; guesses . add ( new BasicTypeGuess ( OBJECT , 100 ) ) ; } List < CompletionProposal > list = new ArrayList < CompletionProposal > ( ) ; RubyElementRequestor requestor = new RubyElementRequestor ( script ) ; for ( ITypeGuess guess : guesses ) { final String name = guess . getType ( ) ; if ( fContext . isBroken ( ) ) { Map < IMethod , String > astMethods = addASTProposals ( name ) ; for ( IMethod method : astMethods . keySet ( ) ) { CompletionProposal proposal = suggestMethod ( method , astMethods . get ( method ) , 100 ) ; if ( proposal == null ) continue ; list . add ( proposal ) ; } } IType [ ] types = requestor . findType ( name ) ; if ( types == null || types . length == 0 ) { types = requestor . findType ( OBJECT ) ; } Map < String , CompletionProposal > mapAll = new HashMap < String , CompletionProposal > ( ) ; if ( types != null && types . length > 0 ) { LogicalType type = new LogicalType ( types ) ; mapAll . putAll ( suggestMethods ( guess . getConfidence ( ) , type , true ) ) ; } if ( ! mapAll . containsKey ( "new" ) && fContext . fullPrefixIsConstant ( ) && "new" . startsWith ( fContext . getPartialPrefix ( ) ) ) { CompletionProposal proposal = new CompletionProposal ( CompletionProposal . METHOD_REF , "new" , 100 ) ; proposal . setDeclaringType ( name ) ; proposal . setFlags ( Flags . AccPublic | Flags . AccStatic ) ; proposal . setReplaceRange ( fContext . getReplaceStart ( ) , fContext . getReplaceStart ( ) + 3 ) ; proposal . setName ( "new" ) ; mapAll . put ( "new" , proposal ) ; } list . addAll ( mapAll . values ( ) ) ; } if ( guesses . size ( ) > 1 || ( guesses . size ( ) == 1 && guesses . iterator ( ) . next ( ) . getType ( ) . equals ( OBJECT ) ) ) { list . addAll ( suggestAllMethodsMatchingPrefix ( script ) ) ; } Collections . sort ( list , new CompletionProposalComparator ( ) ) ; for ( CompletionProposal proposal : list ) { fRequestor . accept ( proposal ) ; } } else { if ( fContext . isMethodInvokationOrLocal ( ) ) { suggestMethodsForEnclosingType ( script ) ; List < CompletionProposal > proposals = suggestAllMethodsMatchingPrefix ( script ) ; for ( CompletionProposal proposal : proposals ) { fRequestor . accept ( proposal ) ; } } getDocumentsRubyElementsInScope ( ) ; } } this . fRequestor . endReporting ( ) ; fContext = null ; } private void suggestClassAndInstanceVariables ( ) { addTypesVariables ( getEnclosingTypeNode ( ) ) ; } private void suggestInstanceVariables ( ) { addTypesVariables ( getEnclosingTypeNode ( ) ) ; } private void suggestClassVariables ( ) { addTypesVariables ( getEnclosingTypeNode ( ) ) ; } private Node getEnclosingTypeNode ( ) { return ClosestSpanningNodeLocator . Instance ( ) . findClosestSpanner ( getRootNode ( ) , fContext . getOffset ( ) , new INodeAcceptor ( ) { public boolean doesAccept ( Node node ) { return ( node instanceof ClassNode || node instanceof ModuleNode ) ; } } ) ; } private void addASTTypeConstants ( String typeName ) { Collection < Node > typeNodes = getASTTypeNodesFromName ( typeName ) ; for ( Node typeNode : typeNodes ) { List < Node > constants = ScopedNodeLocator . Instance ( ) . findNodesInScope ( typeNode , new INodeAcceptor ( ) { public boolean doesAccept ( Node node ) { return ( node instanceof ConstDeclNode ) || ( node instanceof ClassNode ) || ( node instanceof ModuleNode ) ; } } ) ; Set < String > fields = new HashSet < String > ( ) ; if ( constants != null ) { for ( Node varNode : constants ) { if ( varNode . equals ( typeNode ) ) continue ; Node spanner = ClosestSpanningNodeLocator . Instance ( ) . findClosestSpanner ( typeNode , varNode . getPosition ( ) . getStartOffset ( ) - 1 , new INodeAcceptor ( ) { public boolean doesAccept ( Node node ) { return node instanceof ClassNode || node instanceof ModuleNode ; } } ) ; if ( spanner == null || ! spanner . equals ( typeNode ) ) continue ; String name = ASTUtil . getNameReflectively ( varNode ) ; if ( ! fContext . prefixStartsWith ( name ) ) continue ; fields . add ( name ) ; } } for ( String field : fields ) { CompletionProposal proposal = createProposal ( fContext . getReplaceStart ( ) , CompletionProposal .
2,143
<s> package com . asakusafw . utils . java . model . syntax ; import java . util . Arrays ; import java . util . Collections ; import java . util . List ; public enum ModelKind { ALTERNATE_CONSTRUCTOR_INVOCATION ( AlternateConstructorInvocation . class , new PropertyKind [ ] { PropertyKind . CONSTRUCTOR_INVOCATION_TYPE_ARGUMENTS , PropertyKind . CONSTRUCTOR_INVOCATION_ARGUMENTS , } ) , ANNOTATION_DECLARATION ( AnnotationDeclaration . class , new PropertyKind [ ] { PropertyKind . TYPE_BODY_DECLARATION_JAVADOC , PropertyKind . TYPE_BODY_DECLARATION_MODIFIERS , PropertyKind . TYPE_DECLARATION_NAME , PropertyKind . TYPE_DECLARATION_BODY_DECLARATIONS , } ) , ANNOTATION_ELEMENT ( AnnotationElement . class , new PropertyKind [ ] { PropertyKind . ANNOTATION_ELEMENT_NAME , PropertyKind . ANNOTATION_ELEMENT_EXPRESSION , } ) , ANNOTATION_ELEMENT_DECLARATION ( AnnotationElementDeclaration . class , new PropertyKind [ ] { PropertyKind . TYPE_BODY_DECLARATION_JAVADOC , PropertyKind . TYPE_BODY_DECLARATION_MODIFIERS , PropertyKind . ANNOTATION_ELEMENT_DECLARATION_TYPE , PropertyKind . ANNOTATION_ELEMENT_DECLARATION_NAME , PropertyKind . ANNOTATION_ELEMENT_DECLARATION_DEFAULT_EXPRESSION , } ) , ARRAY_ACCESS_EXPRESSION ( ArrayAccessExpression . class , new PropertyKind [ ] { PropertyKind . ARRAY_ACCESS_EXPRESSION_ARRAY , PropertyKind . ARRAY_ACCESS_EXPRESSION_INDEX , } ) , ARRAY_CREATION_EXPRESSION ( ArrayCreationExpression . class , new PropertyKind [ ] { PropertyKind . ARRAY_CREATION_EXPRESSION_TYPE , PropertyKind . ARRAY_CREATION_EXPRESSION_DIMENSION_EXPRESSIONS , PropertyKind . ARRAY_CREATION_EXPRESSION_ARRAY_INITIALIZER , } ) , ARRAY_INITIALIZER ( ArrayInitializer . class , new PropertyKind [ ] { PropertyKind . ARRAY_INITIALIZER_ELEMENTS , } ) , ARRAY_TYPE ( ArrayType . class , new PropertyKind [ ] { PropertyKind . ARRAY_TYPE_COMPONENT_TYPE , } ) , ASSERT_STATEMENT ( AssertStatement . class , new PropertyKind [ ] { PropertyKind . ASSERT_STATEMENT_EXPRESSION , PropertyKind . ASSERT_STATEMENT_MESSAGE , } ) , ASSIGNMENT_EXPRESSION ( AssignmentExpression . class , new PropertyKind [ ] { PropertyKind . ASSIGNMENT_EXPRESSION_LEFT_HAND_SIDE , PropertyKind . ASSIGNMENT_EXPRESSION_OPERATOR , PropertyKind . ASSIGNMENT_EXPRESSION_RIGHT_HAND_SIDE , } ) , BASIC_TYPE ( BasicType . class , new PropertyKind [ ] { PropertyKind . BASIC_TYPE_TYPE_KIND , } ) , BLOCK ( Block . class , new PropertyKind [ ] { PropertyKind . BLOCK_STATEMENTS , } ) , BLOCK_COMMENT ( BlockComment . class , new PropertyKind [ ] { PropertyKind . BLOCK_COMMENT_STRING , } ) , BREAK_STATEMENT ( BreakStatement . class , new PropertyKind [ ] { PropertyKind . BRANCH_STATEMENT_TARGET , } ) , CAST_EXPRESSION ( CastExpression . class , new PropertyKind [ ] { PropertyKind . CAST_EXPRESSION_TYPE , PropertyKind . CAST_EXPRESSION_EXPRESSION , } ) , CATCH_CLAUSE ( CatchClause . class , new PropertyKind [ ] { PropertyKind . CATCH_CLAUSE_PARAMETER , PropertyKind . CATCH_CLAUSE_BODY , } ) , CLASS_BODY ( ClassBody . class , new PropertyKind [ ] { PropertyKind . CLASS_BODY_BODY_DECLARATIONS , } ) , CLASS_DECLARATION ( ClassDeclaration . class , new PropertyKind [ ] { PropertyKind . TYPE_BODY_DECLARATION_JAVADOC , PropertyKind . TYPE_BODY_DECLARATION_MODIFIERS , PropertyKind . TYPE_DECLARATION_NAME , PropertyKind . CLASS_DECLARATION_TYPE_PARAMETERS , PropertyKind . CLASS_DECLARATION_SUPER_CLASS , PropertyKind . CLASS_DECLARATION_SUPER_INTERFACE_TYPES , PropertyKind . TYPE_DECLARATION_BODY_DECLARATIONS , } ) , CLASS_INSTANCE_CREATION_EXPRESSION ( ClassInstanceCreationExpression . class , new PropertyKind [ ] { PropertyKind . CLASS_INSTANCE_CREATION_EXPRESSION_QUALIFIER , PropertyKind . CLASS_INSTANCE_CREATION_EXPRESSION_TYPE_ARGUMENTS , PropertyKind . CLASS_INSTANCE_CREATION_EXPRESSION_TYPE , PropertyKind . CLASS_INSTANCE_CREATION_EXPRESSION_ARGUMENTS , PropertyKind . CLASS_INSTANCE_CREATION_EXPRESSION_BODY , } ) , CLASS_LITERAL ( ClassLiteral . class , new PropertyKind [ ] { PropertyKind . CLASS_LITERAL_TYPE , } ) , COMPILATION_UNIT ( CompilationUnit . class , new PropertyKind [ ] { PropertyKind . COMPILATION_UNIT_PACKAGE_DECLARATION , PropertyKind . COMPILATION_UNIT_IMPORT_DECLARATIONS , PropertyKind . COMPILATION_UNIT_TYPE_DECLARATIONS , PropertyKind . COMPILATION_UNIT_COMMENTS , } ) , CONDITIONAL_EXPRESSION ( ConditionalExpression . class , new PropertyKind [ ] { PropertyKind . CONDITIONAL_EXPRESSION_CONDITION , PropertyKind . CONDITIONAL_EXPRESSION_THEN_EXPRESSION , PropertyKind . CONDITIONAL_EXPRESSION_ELSE_EXPRESSION , } ) , CONSTRUCTOR_DECLARATION ( ConstructorDeclaration . class , new PropertyKind [ ] { PropertyKind . TYPE_BODY_DECLARATION_JAVADOC , PropertyKind . TYPE_BODY_DECLARATION_MODIFIERS , PropertyKind . METHOD_OR_CONSTRUCTOR_DECLARATION_TYPE_PARAMETERS , PropertyKind . METHOD_OR_CONSTRUCTOR_DECLARATION_NAME , PropertyKind . METHOD_OR_CONSTRUCTOR_DECLARATION_FORMAL_PARAMETERS , PropertyKind . METHOD_OR_CONSTRUCTOR_DECLARATION_EXCEPTION_TYPES , PropertyKind . METHOD_OR_CONSTRUCTOR_DECLARATION_BODY , } ) , CONTINUE_STATEMENT ( ContinueStatement . class , new PropertyKind [ ] { PropertyKind . BRANCH_STATEMENT_TARGET , } ) , DO_STATEMENT ( DoStatement . class , new PropertyKind [ ] { PropertyKind . DO_STATEMENT_BODY , PropertyKind . DO_STATEMENT_CONDITION , } ) , DOC_BLOCK ( DocBlock . class , new PropertyKind [ ] { PropertyKind . DOC_BLOCK_TAG , PropertyKind . DOC_BLOCK_ELEMENTS , } ) , DOC_FIELD ( DocField . class , new PropertyKind [ ] { PropertyKind . DOC_FIELD_TYPE , PropertyKind . DOC_FIELD_NAME , } ) , DOC_METHOD ( DocMethod . class , new PropertyKind [ ] { PropertyKind . DOC_METHOD_TYPE , PropertyKind . DOC_METHOD_NAME , PropertyKind . DOC_METHOD_FORMAL_PARAMETERS , } ) , DOC_METHOD_PARAMETER ( DocMethodParameter . class , new PropertyKind [ ] { PropertyKind . DOC_METHOD_PARAMETER_TYPE , PropertyKind . DOC_METHOD_PARAMETER_NAME , PropertyKind . DOC_METHOD_PARAMETER_VARIABLE_ARITY , } ) , DOC_TEXT ( DocText . class , new PropertyKind [ ] { PropertyKind . DOC_TEXT_STRING , } ) , EMPTY_STATEMENT ( EmptyStatement . class , new PropertyKind [ ] { } ) , ENHANCED_FOR_STATEMENT ( EnhancedForStatement . class , new PropertyKind [ ] { PropertyKind . ENHANCED_FOR_STATEMENT_PARAMETER , PropertyKind . ENHANCED_FOR_STATEMENT_EXPRESSION , PropertyKind . ENHANCED_FOR_STATEMENT_BODY , } ) , ENUM_CONSTANT_DECLARATION ( EnumConstantDeclaration . class , new PropertyKind [ ] { PropertyKind . TYPE_BODY_DECLARATION_JAVADOC , PropertyKind . TYPE_BODY_DECLARATION_MODIFIERS , PropertyKind . ENUM_CONSTANT_DECLARATION_NAME , PropertyKind . ENUM_CONSTANT_DECLARATION_ARGUMENTS , PropertyKind . ENUM_CONSTANT_DECLARATION_BODY , } ) , ENUM_DECLARATION ( EnumDeclaration . class , new PropertyKind [ ] { PropertyKind . TYPE_BODY_DECLARATION_JAVADOC , PropertyKind . TYPE_BODY_DECLARATION_MODIFIERS , PropertyKind . TYPE_DECLARATION_NAME , PropertyKind . ENUM_DECLARATION_SUPER_INTERFACE_TYPES , PropertyKind . ENUM_DECLARATION_CONSTANT_DECLARATIONS , PropertyKind . TYPE_DECLARATION_BODY_DECLARATIONS , } ) , EXPRESSION_STATEMENT ( ExpressionStatement . class , new PropertyKind [ ] { PropertyKind . EXPRESSION_STATEMENT_EXPRESSION , } ) , FIELD_ACCESS_EXPRESSION ( FieldAccessExpression . class , new PropertyKind [ ] { PropertyKind . FIELD_ACCESS_EXPRESSION_QUALIFIER , PropertyKind . FIELD_ACCESS_EXPRESSION_NAME , } ) , FIELD_DECLARATION ( FieldDeclaration . class , new PropertyKind [ ] { PropertyKind . TYPE_BODY_DECLARATION_JAVADOC , PropertyKind . TYPE_BODY_DECLARATION_MODIFIERS , PropertyKind . FIELD_DECLARATION_TYPE , PropertyKind . FIELD_DECLARATION_VARIABLE_DECLARATORS , } ) , FOR_STATEMENT ( ForStatement . class , new PropertyKind [ ] { PropertyKind . FOR_STATEMENT_INITIALIZATION , PropertyKind . FOR_STATEMENT_CONDITION , PropertyKind . FOR_STATEMENT_UPDATE , PropertyKind . FOR_STATEMENT_BODY , } ) , FORMAL_PARAMETER_DECLARATION ( FormalParameterDeclaration . class , new PropertyKind [ ] { PropertyKind . FORMAL_PARAMETER_DECLARATION_MODIFIERS , PropertyKind . FORMAL_PARAMETER_DECLARATION_TYPE , PropertyKind . FORMAL_PARAMETER_DECLARATION_VARIABLE_ARITY , PropertyKind . FORMAL_PARAMETER_DECLARATION_NAME , PropertyKind . FORMAL_PARAMETER_DECLARATION_EXTRA_DIMENSIONS , } ) , IF_STATEMENT ( IfStatement . class , new PropertyKind [ ] { PropertyKind . IF_STATEMENT_CONDITION , PropertyKind . IF_STATEMENT_THEN_STATEMENT , PropertyKind . IF_STATEMENT_ELSE_STATEMENT , } ) , IMPORT_DECLARATION ( ImportDeclaration . class , new PropertyKind [ ] { PropertyKind . IMPORT_DECLARATION_IMPORT_KIND , PropertyKind . IMPORT_DECLARATION_NAME , } ) , INFIX_EXPRESSION ( InfixExpression . class , new PropertyKind [ ] { PropertyKind . INFIX_EXPRESSION_LEFT_OPERAND , PropertyKind . INFIX_EXPRESSION_OPERATOR , PropertyKind . INFIX_EXPRESSION_RIGHT_OPERAND , } ) , INITIALIZER_DECLARATION ( InitializerDeclaration . class , new PropertyKind [ ] { PropertyKind . TYPE_BODY_DECLARATION_JAVADOC , PropertyKind . TYPE_BODY_DECLARATION_MODIFIERS , PropertyKind . INITIALIZER_DECLARATION_BODY , } ) , INSTANCEOF_EXPRESSION ( InstanceofExpression . class , new PropertyKind [ ] { PropertyKind . INSTANCEOF_EXPRESSION_EXPRESSION , PropertyKind . INSTANCEOF_EXPRESSION_TYPE , } ) , INTERFACE_DECLARATION ( InterfaceDeclaration . class , new PropertyKind [ ] { PropertyKind . TYPE_BODY_DECLARATION_JAVADOC , PropertyKind . TYPE_BODY_DECLARATION_MODIFIERS , PropertyKind . TYPE_DECLARATION_NAME , PropertyKind . INTERFACE_DECLARATION_TYPE_PARAMETERS , PropertyKind . INTERFACE_DECLARATION_SUPER_INTERFACE_TYPES ,
2,144
<s> package net . sf . sveditor . core . fileset ; import java . util . ArrayList ; import java . util . List ; import net . sf . sveditor . core . log . LogFactory ; import org . eclipse . core . resources . IContainer ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . resources . IWorkspaceRoot ; import org . eclipse . core . resources . ResourcesPlugin ; import org . eclipse . core . runtime . CoreException ; public class SVWorkspaceFileMatcher extends AbstractSVFileMatcher { public SVWorkspaceFileMatcher ( ) { fLog = LogFactory . getLogHandle ( "" ) ; } @ Override public List < String > findIncludedPaths ( )
2,145
<s> package org . rubypeople . rdt . core ; import java . io . PrintStream ; import java . io . PrintWriter ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IStatus ; import org . rubypeople . rdt . internal . core . RubyModelStatus ; public class RubyModelException extends CoreException { private static final long serialVersionUID = - 760398656505871287L ; CoreException nestedCoreException ; public RubyModelException ( Throwable e , int code ) { this ( new RubyModelStatus ( code , e ) ) ; } public RubyModelException ( CoreException exception ) { super ( exception . getStatus ( ) ) ; this . nestedCoreException = exception ; } public RubyModelException ( IRubyModelStatus status ) { super ( status ) ; } public Throwable getException ( ) { if ( this . nestedCoreException == null ) { return getStatus ( ) . getException ( ) ; } return this . nestedCoreException ; } public IRubyModelStatus getRubyModelStatus ( ) { IStatus status = this . getStatus ( ) ; if ( status instanceof IRubyModelStatus ) { return ( IRubyModelStatus ) status ; } return new RubyModelStatus ( this . nestedCoreException ) ; } public boolean isDoesNotExist ( ) { IRubyModelStatus javaModelStatus = getRubyModelStatus ( ) ; return javaModelStatus != null && javaModelStatus . isDoesNotExist ( ) ; } public void printStackTrace ( PrintStream output ) { synchronized ( output ) { super . printStackTrace ( output ) ; Throwable throwable = getException ( ) ; if ( throwable != null ) { output . print ( "Caused by: " ) ; throwable . printStackTrace ( output ) ; } } } public void printStackTrace ( PrintWriter output ) { synchronized ( output ) { super . printStackTrace ( output ) ; Throwable throwable = getException ( ) ; if ( throwable != null ) { output . print
2,146
<s> package net . sf . sveditor . core . db ; import net . sf . sveditor . core . db . expr . SVDBExpr ; public class SVDBModportSimplePort extends SVDBChildItem implements ISVDBNamedItem { public boolean fIsMapped ; public String
2,147
<s> package org . rubypeople . rdt . internal . debug . ui ; import java . util . Hashtable ; import org . eclipse . core . resources . IWorkspace ; import org . eclipse . core . runtime . IConfigurationElement ; import org . eclipse . core . runtime . IExtension ; import org . eclipse . core . runtime . IExtensionPoint ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . core . runtime . IStatus ; import org . eclipse . core . runtime . Platform ; import org . eclipse . core . runtime . Status ; import org . eclipse . core . runtime . jobs . Job ; import org . eclipse . jface . dialogs . ErrorDialog ; import org . eclipse . jface . dialogs . MessageDialog ; import org . eclipse . jface . resource . ImageDescriptor ; import org . eclipse . swt . graphics . Image ; import org . eclipse . swt . widgets . Display ; import org . eclipse . swt . widgets . Shell ; import org . eclipse . ui . IWorkbenchPage ; import org . eclipse . ui . IWorkbenchWindow ; import org . eclipse . ui . plugin . AbstractUIPlugin ; import org . osgi . framework . BundleContext ; import org . rubypeople . rdt . core . RubyCore ; import org . rubypeople . rdt . debug . ui . IEvaluationContextManager ; import org . rubypeople . rdt . debug . ui . RdtDebugUiConstants ; import org . rubypeople . rdt . internal . debug . core . model . RubyVariable ; import org . rubypeople . rdt . internal . debug . ui . evaluation . EvaluationExpressionModel ; import org . rubypeople . rdt . ui . PreferenceConstants ; import org . rubypeople . rdt . ui . text . RubyTextTools ; import org . rubypeople . rdt . ui . viewsupport . ImageDescriptorRegistry ; public class RdtDebugUiPlugin extends AbstractUIPlugin implements RdtDebugUiConstants { public static final String PLUGIN_ID = "" ; protected static RdtDebugUiPlugin plugin ; private EvaluationExpressionModel evaluationExpressionModel ; private ImageDescriptorRegistry fImageDescriptorRegistry ; private RubyTextTools fTextTools ; private static Hashtable < String , Image > images = new Hashtable < String , Image > ( ) ; private static IEvaluationContextManager manager ; public RdtDebugUiPlugin ( ) { super ( ) ; } public static IWorkbenchWindow getActiveWorkbenchWindow ( ) { return getDefault ( ) . getWorkbench ( ) . getActiveWorkbenchWindow ( ) ; } public static IWorkbenchPage getActivePage ( ) { IWorkbenchWindow w = getActiveWorkbenchWindow ( ) ; if ( w != null ) { return w . getActivePage ( ) ; } return null ; } public static RdtDebugUiPlugin getDefault ( ) { return plugin ; } public static IWorkspace getWorkspace ( ) { return RubyCore . getWorkspace ( ) ; } public static void log ( IStatus status ) { getDefault ( ) . getLog ( ) . log ( status ) ; } public static void log ( Throwable e ) { log ( new Status ( IStatus . ERROR , PLUGIN_ID , IStatus . ERROR , RdtDebugUiMessages . RdtDebugUiPlugin_internalErrorOccurred , e ) ) ; } public static ImageDescriptor getImageDescriptor ( String path ) { return AbstractUIPlugin . imageDescriptorFromPlugin ( PLUGIN_ID , path ) ; } public static Image getImage ( String path ) { if ( images . get ( path ) == null ) { ImageDescriptor id = getImageDescriptor ( path ) ; if ( id == null ) { return null ; } Image i = id . createImage ( ) ; images . put ( path , i ) ; return i ; } else { return ( Image ) images . get ( path ) ; } } public void start ( BundleContext context ) throws Exception { plugin = this ; super . start ( context ) ; Job job = new Job ( "" ) { @ Override protected IStatus run ( IProgressMonitor monitor ) { try { Platform . getAdapterManager ( ) . registerAdapters ( new ActionFilterAdapterFactory ( ) , RubyVariable . class ) ; new CodeReloader ( ) ; } catch ( Throwable e ) { log ( e ) ; } return Status . OK_STATUS ; } } ; job . setSystem ( true ) ; job . schedule ( ) ; job = new Job ( "" ) { @ Override protected IStatus run ( IProgressMonitor monitor ) { try { IEvaluationContextManager manager = getEvaluationContextManager ( ) ; if ( manager != null ) manager . startup ( ) ; } catch ( Throwable e ) { log ( e ) ; } return Status . OK_STATUS ; } } ; job . setSystem ( true ) ; job . schedule ( 2000 ) ; } public static IEvaluationContextManager getEvaluationContextManager ( ) { if ( manager == null ) { IExtensionPoint extension = Platform . getExtensionRegistry ( ) . getExtensionPoint ( PLUGIN_ID , "" ) ; if ( extension == null ) return EvaluationContextManager . instance ( ) ; IExtension [ ] extensions = extension . getExtensions ( ) ; for ( int i = 0 ; i < extensions . length ; i ++ ) { IConfigurationElement [ ] configElements = extensions [ i ] . getConfigurationElements ( ) ; for ( int j = 0 ; j < configElements . length ; j ++ ) { final IConfigurationElement configElement = configElements [ j ] ; String elementName = configElement . getName ( ) ; if ( ! ( "" . equals ( elementName ) ) ) { continue ; } try { manager = ( IEvaluationContextManager ) configElement . createExecutableExtension ( "class" ) ; if ( manager != null ) { return manager ; } } catch ( Exception e ) { log ( e ) ; } } } } return manager ; } public void stop ( BundleContext context ) throws Exception { try { if ( fImageDescriptorRegistry != null ) { fImageDescriptorRegistry . dispose ( ) ; } } finally { super . stop ( context ) ; } } public EvaluationExpressionModel getEvaluationExpressionModel ( ) { if ( evaluationExpressionModel == null ) { evaluationExpressionModel = new EvaluationExpressionModel ( ) ; } return evaluationExpressionModel ; }
2,148
<s> package com . asakusafw . utils . java . internal . model . syntax ; import com . asakusafw . utils . java . model . syntax . ModelKind ; import com . asakusafw . utils . java . model . syntax . Name ; import com . asakusafw . utils . java . model . syntax . NamedType ;
2,149
<s> package com . asakusafw . windgate . stream ; import java . io . BufferedWriter ; import java . io . IOException ; import java . io . InputStream ; import java . io . OutputStream ; import java . io . OutputStreamWriter ; import java . util . Scanner ; import com . asakusafw . windgate . core . vocabulary . DataModelStreamSupport ; public class StringBuilderSupport implements DataModelStreamSupport < StringBuilder > { @ Override public Class < StringBuilder > getSupportedType ( ) { return StringBuilder . class ; } @ Override public DataModelReader < StringBuilder > createReader ( String path , InputStream stream ) throws IOException { final Scanner scanner = new Scanner ( stream , "UTF-8" ) ; return new DataModelReader < StringBuilder > ( ) { @ Override public boolean readTo ( StringBuilder object ) throws IOException { if ( scanner . hasNextLine ( ) ) { object .
2,150
<s> package com . asakusafw . compiler . operator ; import java . lang . annotation . Annotation ; import java . text . MessageFormat ; import java . util . List ; import java . util . Map ; import java . util . Set ; import javax . annotation . processing . RoundEnvironment ; import javax . lang . model . element . AnnotationMirror ; import javax . lang . model . element . Element ; import javax . lang . model . element . ElementKind ; import javax . lang . model . element . ExecutableElement ; import javax . lang . model . element . Modifier ; import javax . lang . model . element . TypeElement ; import javax . lang . model . type . DeclaredType ; import javax . lang . model . util . ElementFilter ; import javax . tools . Diagnostic ; import com . asakusafw . compiler . common . Precondition ; import com . asakusafw . utils . collections . Lists ; import com . asakusafw . utils . collections . Maps ; import com . asakusafw . utils . collections . Sets ; import com . asakusafw . vocabulary . operator . OperatorHelper ; public class OperatorClassCollector { private final OperatorCompilingEnvironment environment ; private final RoundEnvironment round ; private final List < TargetMethod > targetMethods ; private boolean sawError ; public OperatorClassCollector ( OperatorCompilingEnvironment environment , RoundEnvironment round ) { Precondition . checkMustNotBeNull ( environment , "environment" ) ; Precondition . checkMustNotBeNull ( round , "round" ) ; this . environment = environment ; this . round = round ; this . targetMethods = Lists . create ( ) ; } public void add ( OperatorProcessor processor ) { Precondition . checkMustNotBeNull ( processor , "processor" ) ; Class < ? extends Annotation > target = processor . getTargetAnnotationType ( ) ; assert target != null ; Set < ? extends Element > elements = round . getElementsAnnotatedWith ( target ) ; for ( Element element : elements ) { ExecutableElement method = toOperatorMethodElement ( element ) ; if ( method == null ) { continue ; } registerMethod ( processor , method ) ; } } private void registerMethod ( OperatorProcessor processor , ExecutableElement method ) { assert processor != null ; assert method != null ; targetMethods . add ( new TargetMethod ( method , processor ) ) ; } private ExecutableElement toOperatorMethodElement ( Element element ) { assert element != null ; if ( element . getKind ( ) != ElementKind . METHOD ) { raiseInvalid ( element , "" ) ; return null ; } ExecutableElement method = ( ExecutableElement ) element ; validateMethodModifiers ( method ) ; return method ; } private void validateMethodModifiers ( ExecutableElement method ) { assert method != null ; if ( method . getModifiers ( ) . contains ( Modifier . PUBLIC ) == false ) { raiseInvalid ( method , "" ) ; } if ( method . getModifiers ( ) . contains ( Modifier . STATIC ) ) { raiseInvalid ( method , "" ) ; } if ( method . getThrownTypes ( ) . isEmpty ( ) == false ) { raiseInvalid ( method , "" ) ; } } private void raiseInvalid ( Element member , String message ) { assert member != null ; assert message != null ; environment . getMessager ( ) . printMessage ( Diagnostic . Kind . ERROR , MessageFormat . format ( message , member . getSimpleName ( ) ) , member ) ; sawError = true ; } public List < OperatorClass > collect ( ) { if ( sawError ) { throw new OperatorCompilerException ( "" ) ; } Map < TypeElement , List < TargetMethod > > mapping = Maps . create ( ) ; for ( TargetMethod target : targetMethods ) { Maps . addToList ( mapping , target . type , target ) ; } List < OperatorClass > results = Lists . create ( ) ; for ( Map . Entry < TypeElement , List < TargetMethod > > entry : mapping . entrySet ( ) ) { OperatorClass klass = toOperatorClass ( entry . getKey ( ) , entry . getValue ( ) ) ; results . add ( klass ) ; } if ( sawError ) { throw new OperatorCompilerException ( "" ) ; } return results ; } private OperatorClass toOperatorClass ( TypeElement type , List < TargetMethod > targets ) { assert
2,151
<s> package info . naturwerk . app ; import java . io . BufferedReader ; import java . io . IOException ; import java . io . InputStreamReader ; import java . net . MalformedURLException ; import java . net . URL ; import java . net . URLConnection ; import org . json . JSONArray ; import org . json . JSONException ; import org . json . JSONObject ; import android . app . Application ; import android . content . ContentValues ; import android . content . SharedPreferences ; import android . content . SharedPreferences . OnSharedPreferenceChangeListener ; import android . preference . PreferenceManager ; import android . util . Log ; public class NWApplication extends Application implements OnSharedPreferenceChangeListener { private static final String TAG = NWApplication . class . getSimpleName ( ) ; private SharedPreferences prefs ; private boolean serviceRunning ; private NWDataBase nwDataBase ; private NWObservation observation ; private int category ; public NWObservation getObservation ( ) { return observation ; } public int getCategory ( ) { return category ; } public void setCategory ( int category ) { this . category = category ; } @ Override public void onCreate ( ) { super . onCreate ( ) ; this . prefs = PreferenceManager . getDefaultSharedPreferences ( this ) ; this . prefs . registerOnSharedPreferenceChangeListener ( this ) ; this . nwDataBase = new NWDataBase ( this ) ; Log . i ( TAG , "onCreated" ) ; } @ Override public void onTerminate ( ) { super . onTerminate ( ) ; Log . i ( TAG , "onTerminated" ) ; } public void onSharedPreferenceChanged ( SharedPreferences sharedPreferences , String key ) { ; } public boolean isServiceRunning ( ) { return serviceRunning ; } public void setServiceRunning ( boolean serviceRunning ) { this . serviceRunning = serviceRunning ; } public SharedPreferences getPrefs ( ) { return prefs ; } public NWDataBase getNWDataBase ( ) { return nwDataBase ; } public boolean setObservation ( int id ) { observation = new NWObservation ( ) ; return this . getNWDataBase ( ) . createObservation ( observation , id ) ; } public synchronized void fetchServerData ( ) { try { URL nwURL = new URL ( getPrefs ( ) . getString ( "apiRoot" , "" ) ) ; JSONArray jArr = new JSONArray ( getJSON ( nwURL ) ) ; ContentValues values = new ContentValues ( ) ; for ( int i = 0 ; i < jArr . length ( ) ; i ++ ) { JSONObject item = jArr . getJSONObject ( i ) ; Log . d ( TAG , "Name:" + item . getString ( "name" ) ) ; values . put ( NWDataBase . C_NAME , item . getString ( "name" ) ) ; Log . d ( TAG , "Count:" + item . getString ( "count" ) ) ; values . put ( NWDataBase . C_COUNT , item . getString ( "count" ) ) ; Log . d ( TAG , "" + item . getString ( "" ) ) ; values . put ( NWDataBase . C_INVENTORY_TYPE_ID , item . getString ( "" ) ) ; this . getNWDataBase ( ) . insertCategoryOrIgnore ( values ) ; int category_id = Integer . parseInt ( item . getString ( "" ) ) ; URL catURL = new URL ( nwURL . toString ( ) + "/" + category_id ) ; Log . d ( TAG , "" + catURL . toString ( ) ) ; if ( category_id == 7 ) continue ; JSONArray jCatArr = new JSONArray ( getJSON ( catURL ) ) ; for ( int j = 0 ; j < jCatArr . length ( ) ; j ++ ) { JSONObject catItem = jCatArr . getJSONObject ( j ) ; if ( category_id != 16 ) {
2,152
<s> package com . pogofish . jadt . comments ; import static com . pogofish . jadt . ast . BlockToken . _BlockEOL ; import static com . pogofish . jadt . ast . BlockToken . _BlockWhiteSpace ; import static com . pogofish . jadt . ast . BlockToken . _BlockWord ; import static com . pogofish . jadt . ast . JavaComment . _JavaBlockComment ; import static com . pogofish . jadt . util . Util . list ; import static junit . framework . Assert . assertEquals ; import java . io . StringReader ; import org . junit . Test ; import com . pogofish . jadt . ast . BlockToken ; import com . pogofish . jadt . ast . JavaComment ; public class BlockCommentParserTest { private static final BlockToken EOL = _BlockEOL ( "n" ) ; private static final BlockToken START = _BlockWord ( "/*" ) ; private static final BlockToken END = _BlockWord ( "*/" ) ; private static final
2,153
<s> package com . asakusafw . compiler . operator . processor ; import com . asakusafw . compiler . common . Precondition ; import com . asakusafw . compiler . common . TargetOperator ; import com . asakusafw . compiler . operator . AbstractOperatorProcessor ; import com . asakusafw . compiler . operator . ExecutableAnalyzer ; import com . asakusafw . compiler . operator . OperatorMethodDescriptor ; import com . asakusafw . compiler . operator . OperatorMethodDescriptor . Builder ; import com . asakusafw . vocabulary . operator . Update ; @ TargetOperator ( Update . class ) public class UpdateOperatorProcessor extends AbstractOperatorProcessor { @ Override public OperatorMethodDescriptor describe ( Context context ) { Precondition . checkMustNotBeNull ( context , "context" ) ; ExecutableAnalyzer a = new ExecutableAnalyzer ( context . environment , context . element ) ; if ( a . isAbstract ( ) ) { a . error ( "" ) ; } if ( a . getReturnType ( ) . isVoid ( ) == false ) { a . error ( "" ) ; } if ( a . getParameterType ( 0 ) . isModel ( ) == false ) { a . error ( 0 , "" ) ; } for ( int i = 1 , n = a .
2,154
<s> package net . ggtools . grand . ui ; import java . io . File ; import java . io . IOException ; import java . util . Collection ; import java . util . Collections ; import java . util . HashSet ; import java . util . Iterator ; import java . util . LinkedList ; import java . util . List ; import java . util . Properties ; import net . ggtools . grand . ui . prefs . PreferenceKeys ; import org . apache . commons . logging . Log ; import org . apache . commons . logging . LogFactory ; import org . eclipse . jface . util . IPropertyChangeListener ; import org . eclipse . jface . util . PropertyChangeEvent ; public class RecentFilesManager implements IPropertyChangeListener , PreferenceKeys { private static final Log log = LogFactory . getLog ( RecentFilesManager . class ) ; private static RecentFilesManager instance ; private int maxFiles = - 1 ; private final LinkedList < String > recentFiles = new LinkedList < String > ( ) ; private final GrandUiPrefStore preferenceStore ; private final Collection < RecentFilesListener > subscribers ; private final List < String > readOnlyRecentFiles ; private RecentFilesManager ( ) { subscribers = new HashSet < RecentFilesListener > ( ) ; readOnlyRecentFiles = Collections . unmodifiableList ( recentFiles ) ; preferenceStore = Application . getInstance ( ) . getPreferenceStore ( ) ; loadRecentFiles ( ) ; } public void addListener ( final RecentFilesListener listener ) { if ( ! subscribers . contains ( listener ) ) { subscribers . add ( listener ) ; listener . refreshRecentFiles ( getRecentFiles ( ) ) ; } } public void removeListener ( final RecentFilesListener listener ) { subscribers . remove ( listener ) ; } private void notifyListeners ( ) { for ( final Iterator < RecentFilesListener > iter = subscribers . iterator ( ) ; iter . hasNext ( ) ; ) { final RecentFilesListener listener = iter . next ( ) ; listener . refreshRecentFiles ( getRecentFiles ( ) ) ; } } static public RecentFilesManager getInstance ( ) { if ( instance == null ) { instance = new RecentFilesManager ( ) ; } return instance ; } public void addNewFile ( final File file ) { addNewFile ( file , null ) ; } public void addNewFile ( final File file , final Properties properties ) { if ( log . isDebugEnabled ( ) ) { log . debug ( "Adding " + file + "" ) ; } final String fileName = file . getAbsolutePath ( ) ; recentFiles . remove ( fileName ) ; recentFiles . addFirst ( fileName ) ; removeExcessFiles ( ) ; preferenceStore . setValue ( RECENT_FILES_PREFS_KEY , recentFiles ) ; if (
2,155
<s> package org . oddjob . jmx ; import org . oddjob . arooa . reflect . ArooaPropertyException ; import org . oddjob . arooa . registry . Address ; import org . oddjob . arooa . registry . BeanDirectory ; import org . oddjob . arooa . registry . BeanDirectoryOwner ; import org . oddjob . arooa . registry . Path ; import org . oddjob . arooa . registry . ServerId ; public class RemoteRegistryCrawler { private final BeanDirectory registry ; public RemoteRegistryCrawler ( BeanDirectory registry ) { this . registry = registry ; } public BeanDirectory registryForServer ( ServerId serverId ) { if ( registry instanceof RemoteDirectory ) { if ( ( ( RemoteDirectory ) registry ) . getServerId ( ) . equals ( serverId ) ) { return ( RemoteDirectory ) registry ; } if ( ServerId . local ( ) . equals ( serverId ) ) { return null ; } } else { if ( ServerId . local ( ) . equals ( serverId ) ) { return registry ; } } for ( BeanDirectoryOwner owner : registry . getAllByType ( BeanDirectoryOwner . class ) ) { BeanDirectory child
2,156
<s> package com . asakusafw . runtime . io . csv ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . io . ByteArrayInputStream ; import java . io . IOException ; import java . io . InputStream ; import java . math . BigDecimal ; import java . util . Arrays ; import java . util . List ; import org . junit . Rule ; import org . junit . Test ; import org . junit . rules . TestName ; import com . asakusafw . runtime . io . csv . CsvFormatException . Reason ; import com . asakusafw . runtime . value . BooleanOption ; import com . asakusafw . runtime . value . ByteOption ; import com . asakusafw . runtime . value . Date ; import com . asakusafw . runtime . value . DateOption ; import com . asakusafw . runtime . value . DateTime ; import com . asakusafw . runtime . value . DateTimeOption ; import com . asakusafw . runtime . value . DecimalOption ; import com . asakusafw . runtime . value . DoubleOption ; import com . asakusafw . runtime . value . FloatOption ; import com . asakusafw . runtime . value . IntOption ; import com . asakusafw . runtime . value . LongOption ; import com . asakusafw . runtime . value . ShortOption ; import com . asakusafw . runtime . value . StringOption ; public class CsvParserTest { @ Rule public final TestName testName = new TestName ( ) ; private List < String > headers = CsvConfiguration . DEFAULT_HEADER_CELLS ; private String trueFormat = CsvConfiguration . DEFAULT_TRUE_FORMAT ; private String falseFormat = CsvConfiguration . DEFAULT_FALSE_FORMAT ; private String dateFormat = CsvConfiguration . DEFAULT_DATE_FORMAT ; private String dateTimeFormat = CsvConfiguration . DEFAULT_DATE_TIME_FORMAT ; private CsvParser create ( String content ) { CsvConfiguration conf = new CsvConfiguration ( CsvConfiguration . DEFAULT_CHARSET , headers , trueFormat , falseFormat , dateFormat , dateTimeFormat ) ; return new CsvParser ( new ByteArrayInputStream ( content . getBytes ( conf . getCharset ( ) ) ) , testName . getMethodName ( ) , conf ) ; } @ Test public void boolean_values ( ) throws Exception { trueFormat = "true" ; falseFormat = "false" ; CsvParser parser = create ( "true,false," ) ; BooleanOption option = new BooleanOption ( ) ; assertThat ( parser . next ( ) , is ( true ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( true ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( false ) ) ; parser . fill ( option ) ; assertThat ( option . isNull ( ) , is ( true ) ) ; parser . endRecord ( ) ; assertThat ( parser . next ( ) , is ( false ) ) ; } @ Test public void byte_values ( ) throws Exception { CsvParser parser = create ( "" ) ; ByteOption option = new ByteOption ( ) ; assertThat ( parser . next ( ) , is ( true ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( byte ) 0 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( byte ) 1 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( byte ) 50 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( byte ) - 1 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( byte ) - 50 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( byte ) 127 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( byte ) - 128 ) ) ; parser . fill ( option ) ; assertThat ( option . isNull ( ) , is ( true ) ) ; parser . endRecord ( ) ; assertThat ( parser . next ( ) , is ( false ) ) ; } @ Test public void invalid_byte ( ) throws Exception { CsvParser parser = create ( String . valueOf ( Byte . MAX_VALUE + 1 ) ) ; assertThat ( parser . next ( ) , is ( true ) ) ; try { parser . fill ( new ByteOption ( ) ) ; fail ( ) ; } catch ( CsvFormatException e ) { assertThat ( e . getStatus ( ) . getReason ( ) , is ( Reason . INVALID_CELL_FORMAT ) ) ; } } @ Test public void short_values ( ) throws Exception { CsvParser parser = create ( "" + Short . MAX_VALUE + "," + Short . MIN_VALUE + "," ) ; ShortOption option = new ShortOption ( ) ; assertThat ( parser . next ( ) , is ( true ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( short ) 0 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( short ) 1 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( short ) 50 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( short ) - 1 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( short ) - 50 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( Short . MAX_VALUE ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( Short . MIN_VALUE ) ) ; parser . fill ( option ) ; assertThat ( option . isNull ( ) , is ( true ) ) ; parser . endRecord ( ) ; assertThat ( parser . next ( ) , is ( false ) ) ; } @ Test public void invalid_short ( ) throws Exception { CsvParser parser = create ( String . valueOf ( Short . MAX_VALUE + 1 ) ) ; assertThat ( parser . next ( ) , is ( true ) ) ; try { parser . fill ( new ShortOption ( ) ) ; fail ( ) ; } catch ( CsvFormatException e ) { assertThat ( e . getStatus ( ) . getReason ( ) , is ( Reason . INVALID_CELL_FORMAT ) ) ; } } @ Test public void int_values ( ) throws Exception { CsvParser parser = create ( "" + Integer . MAX_VALUE + "," + Integer . MIN_VALUE + "," ) ; IntOption option = new IntOption ( ) ; assertThat ( parser . next ( ) , is ( true ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( 0 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( 1 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( 50 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( - 1 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( - 50 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( Integer . MAX_VALUE ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( Integer . MIN_VALUE ) ) ; parser . fill ( option ) ; assertThat ( option . isNull ( ) , is ( true ) ) ; parser . endRecord ( ) ; assertThat ( parser . next ( ) , is ( false ) ) ; } @ Test public void invalid_int ( ) throws Exception { CsvParser parser = create ( String . valueOf ( ( long ) Integer . MAX_VALUE + 1 ) ) ; assertThat ( parser . next ( ) , is ( true ) ) ; try { parser . fill ( new IntOption ( ) ) ; fail ( ) ; } catch ( CsvFormatException e ) { assertThat ( e . getStatus ( ) . getReason ( ) , is ( Reason . INVALID_CELL_FORMAT ) ) ; } } @ Test public void long_values ( ) throws Exception { CsvParser parser = create ( "" + Long . MAX_VALUE + "," + Long . MIN_VALUE + "," ) ; LongOption option = new LongOption ( ) ; assertThat ( parser . next ( ) , is ( true ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( long ) 0 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( long ) 1 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( long ) 50 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( long ) - 1 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( long ) - 50 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( Long . MAX_VALUE ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( Long . MIN_VALUE ) ) ; parser . fill ( option ) ; assertThat ( option . isNull ( ) , is ( true ) ) ; parser . endRecord ( ) ; assertThat ( parser . next ( ) , is ( false ) ) ; } @ Test public void invalid_long ( ) throws Exception { CsvParser parser = create ( String . valueOf ( Long . MAX_VALUE + "0" ) ) ; assertThat ( parser . next ( ) , is ( true ) ) ; try { parser . fill ( new LongOption ( ) ) ; fail ( ) ; } catch ( CsvFormatException e ) { assertThat ( e . getStatus ( ) . getReason ( ) , is ( Reason . INVALID_CELL_FORMAT ) ) ; } } @ Test public void float_values ( ) throws Exception { CsvParser parser = create ( "" + "" ) ; FloatOption option = new FloatOption ( ) ; assertThat ( parser . next ( ) , is ( true ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( float ) 0 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( float ) 1 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( float ) 50 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( float ) - 1 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( float ) - 50 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( float ) 0.5 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( float ) - 0.5 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( float ) 100. ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( float ) - 100. ) ) ; parser . fill ( option ) ; assertThat ( option . isNull ( ) , is ( true ) ) ; parser . endRecord ( ) ; assertThat ( parser . next ( ) , is ( false ) ) ; } @ Test public void invalid_float ( ) throws Exception { CsvParser parser = create ( String . valueOf ( "?" ) ) ; assertThat ( parser . next ( ) , is ( true ) ) ; try { parser . fill ( new FloatOption ( ) ) ; fail ( ) ; } catch ( CsvFormatException e ) { assertThat ( e . getStatus ( ) . getReason ( ) , is ( Reason . INVALID_CELL_FORMAT ) ) ; } } @ Test public void double_values ( ) throws Exception { CsvParser parser = create ( "" + "" ) ; DoubleOption option = new DoubleOption ( ) ; assertThat ( parser . next ( ) , is ( true ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( double ) 0 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( double ) 1 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( double ) 50 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( double ) - 1 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( ( double ) - 50 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( 0.5 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( - 0.5 ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( 100. ) ) ; parser . fill ( option ) ; assertThat ( option . get ( ) , is ( - 100. ) ) ; parser . fill ( option ) ; assertThat ( option . isNull ( ) , is ( true ) ) ; parser . endRecord ( ) ; assertThat ( parser . next ( ) , is ( false ) ) ; } @ Test public void invalid_double ( ) throws Exception { CsvParser parser = create ( String . valueOf ( "?" ) ) ; assertThat ( parser . next ( ) ,
2,157
<s> package com . asakusafw . yaess . core . task ; import java . io . IOException ; import com . asakusafw . yaess . core . ExecutionContext ; import com . asakusafw . yaess . core . ExecutionMonitor ; import com . asakusafw . yaess . core . ExecutionScriptHandler ; public class CleanupJob extends HandlerLifecycleJob { private static final String JOB_ID = "(cleanup)" ; public CleanupJob ( ExecutionScriptHandler < ? > handler ) { super ( handler ) ; } @ Override public void execute ( ExecutionMonitor monitor , ExecutionContext context ) throws InterruptedException , IOException {
2,158
<s> package org . rubypeople . rdt . refactoring . tests . core . extractconstant ; import junit . framework . TestSuite ; import org . rubypeople . rdt . refactoring . tests . FileTestSuite ; import org . rubypeople . rdt . refactoring . tests . core . extractconstant . conditionchecks . TS_ExtractConstantChecks ; public class TS_ExtractConstant extends FileTestSuite { public static TestSuite suite ( ) { TestSuite suite = createSuite ( "" , "" ,
2,159
<s> package test . modelgen . io ; import java . io . IOException ; import test . modelgen . model . Bar ; import com . asakusafw . runtime . io . ModelOutput ; import com . asakusafw . runtime . io . RecordEmitter ; public final class BarModelOutput implements ModelOutput < Bar > { private final RecordEmitter emitter ; public BarModelOutput ( RecordEmitter emitter ) { if ( emitter == null ) { throw new IllegalArgumentException ( ) ; } this . emitter = emitter ; } @ Override public void write ( Bar model ) throws IOException { emitter . emit ( model . getPkOption ( ) ) ; emitter . emit ( model . getDetailGroupIdOption ( ) ) ; emitter . emit ( model . getDetailTypeOption ( ) ) ; emitter . emit ( model . getDetailSenderIdOption ( ) ) ; emitter . emit ( model . getDetailReceiverIdOption ( ) ) ; emitter . emit ( model . getDetailTestTypeOption (
2,160
<s> package net . sf . sveditor . core . tests . index . persistence ; import java . io . ByteArrayOutputStream ; import java . io . File ; import java . io . PrintStream ; import java . util . List ; import junit . framework . TestCase ; import net . sf . sveditor . core . SVCorePlugin ; import net . sf . sveditor . core . db . ISVDBItemBase ; import net . sf . sveditor . core . db . SVDBItem ; import net . sf . sveditor . core . db . SVDBItemType ; import net . sf . sveditor . core . db . SVDBMarker ; import net . sf . sveditor . core . db . index . ISVDBIndex ; import net . sf . sveditor . core . db . index . ISVDBItemIterator ; import net . sf . sveditor . core . db . index . SVDBIndexRegistry ; import net . sf . sveditor . core . db . index . SVDBLibPathIndexFactory ; import net . sf . sveditor . core . log . LogFactory ; import net . sf . sveditor . core . log . LogHandle ; import net . sf . sveditor . core . tests . SVCoreTestsPlugin ; import net . sf . sveditor . core . tests . TestIndexCacheFactory ; import net . sf . sveditor . core . tests . utils . BundleUtils ; import net . sf . sveditor . core . tests . utils . TestUtils ; import org . eclipse . core . runtime . NullProgressMonitor ; public class TestFilesystemLibPersistence extends TestCase { private File fTmpDir ; @ Override protected void setUp ( ) throws Exception { super . setUp ( ) ; fTmpDir = TestUtils . createTempDir ( ) ; } @ Override protected void tearDown ( ) throws Exception { super . tearDown ( ) ; SVDBIndexRegistry rgy = SVCorePlugin . getDefault ( ) . getSVDBIndexRegistry ( ) ; rgy . save_state ( ) ; if ( fTmpDir != null ) { TestUtils . delete ( fTmpDir ) ; fTmpDir = null ; } } public void testTimestampChangeDetected ( ) { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; LogHandle log = LogFactory . getLogHandle ( "" ) ; BundleUtils utils = new BundleUtils ( SVCoreTestsPlugin . getDefault ( ) . getBundle ( ) ) ; File project_dir = new File ( fTmpDir , "project_dir" ) ; if ( project_dir . exists ( ) ) { TestUtils . delete ( project_dir ) ; } utils . copyBundleDirToFS ( "" , project_dir ) ; SVDBIndexRegistry rgy = SVCorePlugin . getDefault ( ) . getSVDBIndexRegistry ( ) ; rgy . init ( TestIndexCacheFactory . instance ( project_dir ) ) ; File path = new File ( project_dir , "" ) ; ISVDBIndex index = rgy . findCreateIndex ( new NullProgressMonitor ( ) , "GENERIC" , path . getAbsolutePath ( ) , SVDBLibPathIndexFactory . TYPE , null ) ; ISVDBItemIterator it = index . getItemIterator ( new NullProgressMonitor ( ) ) ; ISVDBItemBase target_it = null ; while ( it . hasNext ( ) ) { ISVDBItemBase tmp_it = it . nextItem ( ) ; log . debug ( "tmp_it=" + SVDBItem . getName ( tmp_it ) ) ; if ( SVDBItem . getName ( tmp_it ) . equals ( "class1" ) ) { target_it = tmp_it ; break ; } } assertNotNull ( "" , target_it ) ; assertEquals ( "class1" , SVDBItem . getName ( target_it ) ) ; rgy . save_state ( ) ; rgy . init ( TestIndexCacheFactory . instance ( project_dir ) ) ; log . debug ( "*** SLEEPING" ) ; try { Thread . sleep ( 2000 ) ; } catch ( InterruptedException e ) { e . printStackTrace ( ) ; } ByteArrayOutputStream out = utils . readBundleFile ( "" ) ; PrintStream ps = new PrintStream ( out ) ; ps . println ( "nn" ) ; ps . println ( "" ) ; ps . println ( "n" ) ; ps . println ( "endclassnn" ) ; ps . flush ( ) ; TestUtils . copy ( out , new File ( project_dir , "" ) ) ; index = rgy . findCreateIndex ( new NullProgressMonitor ( ) , "GENERIC" , path . getAbsolutePath ( ) , SVDBLibPathIndexFactory . TYPE , null ) ; it = index . getItemIterator ( new NullProgressMonitor ( ) ) ; target_it = null ; while ( it . hasNext ( ) ) { ISVDBItemBase tmp_it = it . nextItem ( ) ; if ( SVDBItem . getName ( tmp_it ) . equals ( "class1_1" ) ) { target_it = tmp_it ; break ; } } log . debug ( "target_it=" + target_it ) ; assertNotNull ( "" , target_it ) ; assertEquals ( "class1_1" , SVDBItem . getName ( target_it ) ) ; index . dispose ( ) ; LogFactory . removeLogHandle ( log ) ; } public void testFSLibIndexFilelistChangeDetected ( ) { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; BundleUtils utils = new BundleUtils ( SVCoreTestsPlugin . getDefault ( ) . getBundle ( ) ) ; LogHandle log = LogFactory . getLogHandle ( "" ) ; File project_dir = new File ( fTmpDir , "project_dir" ) ; if ( project_dir . exists ( ) ) { project_dir . delete ( ) ; } utils . copyBundleDirToFS ( "" , project_dir ) ; SVDBIndexRegistry rgy = SVCorePlugin . getDefault ( ) . getSVDBIndexRegistry ( ) ; rgy . init ( TestIndexCacheFactory . instance ( project_dir ) ) ; File path = new File ( project_dir , "" ) ; ISVDBIndex index = rgy . findCreateIndex ( new NullProgressMonitor ( ) , "GENERIC" , path . getAbsolutePath ( ) ,
2,161
<s> package com . pogofish . jadt . sink ; import static com . pogofish . jadt . util . TestUtil . assertEqualsBarringFileSeparators ; import static org . junit . Assert . assertEquals ; import static org . junit . Assert . assertTrue ; import java . io . File ;
2,162
<s> package net . sf . sveditor . core . db . utils ; import java . util . ArrayList ; import java . util . Comparator ; import java . util . HashSet ; import java . util . List ; import java . util . Map ; import java . util . Map . Entry ; import java . util . Set ; import net . sf . sveditor . core . db . ISVDBChildItem ; import net . sf . sveditor . core . db . ISVDBItemBase ; import net . sf . sveditor . core . db . ISVDBNamedItem ; import net . sf . sveditor . core . db . ISVDBScopeItem ; import net . sf . sveditor . core . db . SVDBClassDecl ; import net . sf . sveditor . core . db . SVDBFile ; import net . sf . sveditor . core . db . SVDBItem ; import net . sf . sveditor . core . db . SVDBItemType ; import net . sf . sveditor . core . db . SVDBScopeItem ; import net . sf . sveditor . core . db . SVDBTask ; import net . sf . sveditor . core . db . index . ISVDBIndex ; import net . sf . sveditor . core . db . stmt . SVDBStmt ; import org . eclipse . core . runtime . NullProgressMonitor ; public class SVDBIndexSearcher { private Map < ISVDBIndex , Set < String > > fIndexMap ; public SVDBIndexSearcher ( ) { } public SVDBIndexSearcher ( ISVDBIndex index ) { Set < String > filelist = new HashSet < String > ( ) ; for ( String path : index . getFileList ( new NullProgressMonitor ( ) ) ) { filelist . add ( path ) ; } fIndexMap . put ( index , filelist ) ; } public void addIndex ( ISVDBIndex index ) { Set < String > filelist = new HashSet < String > ( ) ; for ( String path : index . getFileList ( new NullProgressMonitor ( ) ) ) { filelist . add ( path ) ; } fIndexMap . put ( index , filelist ) ; } public SVDBClassDecl findNamedClass ( String name ) { SVDBClassDecl c ; for ( Entry < ISVDBIndex , Set < String > > e : fIndexMap . entrySet ( ) ) { for ( String fname : e . getValue ( ) ) { SVDBFile f = e . getKey ( ) . findFile ( fname ) ; if ( ( c = findNamedClass ( name , f ) ) != null ) { return c ; } } } return null ; } private SVDBClassDecl findNamedClass ( String name , SVDBScopeItem parent ) { for ( ISVDBItemBase it : parent . getChildren ( ) ) { if ( it . getType ( ) == SVDBItemType . ClassDecl && ( ( ISVDBNamedItem ) it ) . getName ( ) != null && ( ( ISVDBNamedItem ) it ) . getName ( ) . equals ( name ) ) { return ( SVDBClassDecl ) it ; } else if ( it . getType ( ) == SVDBItemType . PackageDecl ) { SVDBClassDecl c ; if ( ( c = findNamedClass ( name , ( SVDBScopeItem ) it ) ) != null ) { return c ; } } } return null ; } public SVDBClassDecl findSuperClass ( SVDBClassDecl cls ) { if ( cls . getSuperClass ( ) != null ) { return findNamedClass ( cls . getSuperClass ( ) . getName ( ) ) ; } else { return null ; } } public List < ISVDBItemBase > findVarsByNameInScopes ( String name , ISVDBChildItem context , boolean stop_on_first_match ) { List < ISVDBItemBase > ret = new ArrayList < ISVDBItemBase > ( ) ; while ( context != null ) { if ( context instanceof ISVDBScopeItem ) { for ( ISVDBItemBase it : ( ( ISVDBScopeItem ) context ) . getItems ( ) ) { if ( SVDBStmt . isType ( it , SVDBItemType . VarDeclStmt ) ) { if ( ( ( ISVDBNamedItem ) it ) . getName ( ) . equals ( name ) ) { ret . add ( it ) ; if ( stop_on_first_match ) { break ; } } } } } if ( ret . size ( ) > 0 && stop_on_first_match ) { break ; } if ( context . getType ( ) == SVDBItemType . Function || context .
2,163
<s> package org . rubypeople . rdt . internal . debug . ui . launcher ; import org . eclipse . debug . ui . AbstractLaunchConfigurationTabGroup ; import org . eclipse . debug . ui . CommonTab ; import org . eclipse . debug . ui . EnvironmentTab ; import org . eclipse . debug . ui . ILaunchConfigurationDialog ; import org . eclipse . debug . ui . ILaunchConfigurationTab ; public class RubyApplicationTabGroup extends AbstractLaunchConfigurationTabGroup { public RubyApplicationTabGroup ( ) { super ( ) ; } public void createTabs ( ILaunchConfigurationDialog
2,164
<s> package org . rubypeople . rdt . ui . search ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IProgressMonitor ; public interface IQueryParticipant { void search (
2,165
<s> package org . oddjob ; import java . io . IOException ; import java . util . concurrent . atomic . AtomicReference ; import org . apache . log4j . Logger ; import org . custommonkey . xmlunit . XMLTestCase ; import org . custommonkey . xmlunit . XMLUnit ; import org . oddjob . arooa . ArooaConfiguration ; import org . oddjob . arooa . ArooaDescriptor ; import org . oddjob . arooa . ArooaParseException ; import org . oddjob . arooa . ArooaType ; import org . oddjob . arooa . ConfigurationHandle ; import org . oddjob . arooa . MockConfigurationHandle ; import org . oddjob . arooa . life . InstantiationContext ; import org . oddjob . arooa . life . SimpleArooaClass ; import org . oddjob . arooa . parsing . ArooaContext ; import org . oddjob . arooa . parsing . ArooaElement ; import org . oddjob . arooa . parsing . DragPoint ; import org . oddjob . arooa . parsing . DragTransaction ; import org . oddjob . arooa . parsing . MockArooaContext ; import org . oddjob . arooa . reflect . ArooaClass ; import org . oddjob . arooa . registry . ChangeHow ; import org . oddjob . arooa . runtime . ConfigurationNode ; import org . oddjob . arooa . runtime . ConfigurationNodeListener ; import org . oddjob . arooa . runtime . MockConfigurationNode ; import org . oddjob . arooa . xml . XMLConfiguration ; import org . oddjob . jobs . EchoJob ; import org . xml . sax . SAXException ; public class OddjobConfigurationTest extends XMLTestCase { private static final Logger logger = Logger . getLogger ( OddjobConfigurationTest . class ) ; public void testCopy ( ) throws SAXException , IOException { XMLUnit . setIgnoreWhitespace ( true ) ; String xml = "<oddjob>" + " <job>" + "" + " </job>" + "</oddjob>" ; Oddjob oddjob = new Oddjob ( ) ; oddjob . setConfiguration ( new XMLConfiguration ( "XML" , xml ) ) ; oddjob . load ( ) ; DragPoint dragPoint = oddjob . provideConfigurationSession ( ) . dragPointFor ( oddjob ) ; String result = dragPoint . copy ( ) ; logger . debug ( "XML:" + result ) ; assertXMLEqual ( xml , result ) ; } public void testPaste ( ) throws SAXException , IOException , ArooaParseException { XMLUnit . setIgnoreWhitespace ( true ) ; String xml = "<oddjob/>" ; XMLConfiguration config = new XMLConfiguration ( "TEST" , xml ) ; final AtomicReference < String > savedXML = new AtomicReference < String > ( ) ; config . setSaveHandler ( new XMLConfiguration . SaveHandler ( ) { @ Override public void acceptXML ( String xml ) { savedXML . set ( xml ) ; } }
2,166
<s> package net . ggtools . grand . ui . graph ; import java . util . Collection ; import net . ggtools . grand . ui . graph . draw2d . Draw2dNode ; public interface SelectionManager { void addListener ( GraphListener listener ) ; void deselectAllNodes ( ) ; void deselectNode ( Draw2dNode node ) ; Collection < Draw2dNode > getSelection (
2,167
<s> package og . android . tether ; import java . io . IOException ; import java . util . ArrayList ; import com . google . analytics . tracking . android . EasyTracker ; import og . android . tether . system . Configuration ; import android . R . drawable ; import android . app . AlertDialog ; import android . app . Dialog ; import android . app . ProgressDialog ; import android . content . BroadcastReceiver ; import android . content . Context ; import android . content . DialogInterface ; import android . content . Intent ; import android . content . IntentFilter ; import android . content . SharedPreferences ; import android . content . SharedPreferences . OnSharedPreferenceChangeListener ; import android . content . res . Resources ; import android . graphics . Color ; import android . os . Build ; import android . os . Bundle ; import android . os . Handler ; import android . os . Looper ; import android . os . Message ; import android . preference . CheckBoxPreference ; import android . preference . EditTextPreference ; import android . preference . ListPreference ; import android . preference . Preference ; import android . preference . PreferenceActivity ; import android . preference . PreferenceGroup ; import android . preference . PreferenceManager ; import android . text . Editable ; import android . text . TextWatcher ; import android . util . Log ; import android . view . LayoutInflater ; import android . view . Menu ; import android . view . MenuItem ; import android . view . SubMenu ; import android . view . View ; public class SetupActivity extends PreferenceActivity implements OnSharedPreferenceChangeListener { private TetherApplication application = null ; private ProgressDialog progressDialog ; public static final String MSG_TAG = "" ; public static final String DEFAULT_DEVICE = "default" ; public static final String DEFAULT_SETUP = "default" ; private String currentDevice ; private String currentSetup ; private String currentSSID ; private String currentChannel ; private String currentPassphrase ; private String currentLAN ; private boolean currentEncryptionEnabled ; private String currentTransmitPower ; private EditTextPreference prefPassphrase ; private EditTextPreference prefSSID ; private ListPreference prefDevice ; private static int ID_DIALOG_RESTARTING = 2 ; @ Override public void onCreate ( Bundle savedInstanceState ) { super . onCreate ( savedInstanceState ) ; this . application = ( TetherApplication ) this . getApplication ( ) ; this . currentDevice = this . application . settings . getString ( "devicepref" , DEFAULT_DEVICE ) ; this . currentSetup = this . application . settings . getString ( "setuppref" , DEFAULT_SETUP ) ; this . currentSSID = this . application . settings . getString ( "ssidpref" , "OpenGarden" ) ; this . currentChannel = this . application . settings . getString ( "channelpref" , "1" ) ; this . currentPassphrase = this . application . settings . getString ( "" , this . application . DEFAULT_PASSPHRASE ) ; this . currentLAN = this . application . settings . getString ( "" , this . application . DEFAULT_LANNETWORK ) ; this . currentEncryptionEnabled = this . application . settings . getBoolean ( "encpref" , false ) ; this . currentTransmitPower = this . application . settings . getString ( "txpowerpref" , "disabled" ) ; this . updateSettingsMenu ( ) ; if ( ! this . application . accessControlSupported ) { PreferenceGroup securityGroup = ( PreferenceGroup ) findPreference ( "" ) ; securityGroup . setEnabled ( false ) ; } if ( Configuration . hasKernelFeature ( "" ) == false ) { PreferenceGroup btGroup = ( PreferenceGroup ) findPreference ( "btprefs" ) ; btGroup . setEnabled ( false ) ; } else { if ( Integer . parseInt ( Build . VERSION . SDK ) < Build . VERSION_CODES . ECLAIR ) { PreferenceGroup btGroup = ( PreferenceGroup ) findPreference ( "btprefs" ) ; CheckBoxPreference btdiscoverablePreference = ( CheckBoxPreference ) findPreference ( "" ) ; btGroup . removePreference ( btdiscoverablePreference ) ; } } this . prefSSID = ( EditTextPreference ) findPreference ( "ssidpref" ) ; this . prefSSID . setOnPreferenceChangeListener ( new Preference . OnPreferenceChangeListener ( ) { public boolean onPreferenceChange ( Preference preference , Object newValue ) { String message = validateSSID ( newValue . toString ( ) ) ; if ( ! message . equals ( "" ) ) { SetupActivity . this . application . displayToastMessage ( message ) ; return false ; } return true ; } } ) ; Boolean bluetoothOn = PreferenceManager . getDefaultSharedPreferences ( this ) . getBoolean ( "bluetoothon" , false ) ; Message msg = Message . obtain ( ) ; msg . what = bluetoothOn ? 0 : 1 ; SetupActivity . this . setWifiPrefsEnableHandler . sendMessage ( msg ) ; } @ Override public void onStart ( ) { super . onStart ( ) ; EasyTracker . getInstance ( ) . activityStart ( this ) ; } @ Override public void onStop ( ) { super . onStop ( ) ; EasyTracker . getInstance ( ) . activityStop ( this ) ; } private void updateSettingsMenu ( ) { Resources resources = getResources ( ) ; CharSequence [ ] entries , entryvalues , targetentries , targetentryvalues ; if ( getPreferenceScreen ( ) != null ) { getPreferenceScreen ( ) . removeAll ( ) ; } addPreferencesFromResource ( R . layout . setupview ) ; if ( this . currentDevice . equals ( DEFAULT_DEVICE ) ) this . application . settings . edit ( ) . putString ( "setuppref" , DEFAULT_SETUP ) . commit ( ) ; String setupMethod = this . application . settings . getString ( "setuppref" , DEFAULT_SETUP ) ; if ( setupMethod . equals ( "auto" ) ) { setupMethod = this . application . getDeviceParametersAdv ( ) . getAutoSetupMethod ( ) ; } if ( ! ( setupMethod . startsWith ( "softap" ) || setupMethod . equals ( "netd" ) ) ) { PreferenceGroup wifiGroup = ( PreferenceGroup ) findPreference ( "wifiprefs" ) ; CheckBoxPreference reloadWifiPreference = ( CheckBoxPreference ) findPreference ( "" ) ; wifiGroup . removePreference ( reloadWifiPreference ) ; } if ( setupMethod . equals ( "wext" ) == false ) { PreferenceGroup wifiGroup = ( PreferenceGroup ) findPreference ( "wifiprefs" ) ; ListPreference txpowerPreference = ( ListPreference ) findPreference ( "txpowerpref" ) ; wifiGroup . removePreference ( txpowerPreference ) ; } if ( this . application . interfaceDriver . startsWith ( "softap" ) || this . application . interfaceDriver . equals ( Configuration . DRIVER_HOSTAP ) ) { PreferenceGroup wifiGroup = ( PreferenceGroup ) findPreference ( "wifiprefs" ) ; ListPreference encsetupPreference = ( ListPreference ) findPreference ( "encsetuppref" ) ; wifiGroup . removePreference ( encsetupPreference ) ; } this . prefPassphrase = ( EditTextPreference ) findPreference ( "" ) ; final int origTextColorPassphrase = SetupActivity . this . prefPassphrase . getEditText ( ) . getCurrentTextColor ( ) ; if ( ( setupMethod . equals ( DEFAULT_SETUP ) && Configuration . getWifiInterfaceDriver ( this . application . deviceType ) . startsWith ( "softap" ) || Configuration . getWifiInterfaceDriver ( this . application . deviceType ) . equals ( Configuration . DRIVER_HOSTAP ) ) || ( setupMethod . equals ( "netd" ) || setupMethod . equals ( "hostapd" ) || setupMethod . startsWith ( "softap" ) ) ) { Log . d ( MSG_TAG , "" ) ; this . prefPassphrase . setSummary ( this . prefPassphrase . getSummary ( ) + "" ) ; this . prefPassphrase . setDialogMessage ( getString ( R . string . setup_activity_error_passphrase_info ) ) ; this . prefPassphrase . getEditText ( ) . addTextChangedListener ( new TextWatcher ( ) { public void afterTextChanged ( Editable s ) { } public void beforeTextChanged ( CharSequence s , int start , int count , int after ) { } public void onTextChanged ( CharSequence s , int start , int before , int count ) { if ( s . length ( ) < 8 || s . length ( ) > 30 ) { SetupActivity . this . prefPassphrase . getEditText ( ) . setTextColor ( Color . RED ) ; } else { SetupActivity . this . prefPassphrase . getEditText ( ) . setTextColor ( origTextColorPassphrase ) ; } } } ) ; this . prefPassphrase . setOnPreferenceChangeListener ( new Preference . OnPreferenceChangeListener ( ) { public boolean onPreferenceChange ( Preference preference , Object newValue ) { String validChars = "" + "" + "0123456789" ; if ( newValue . toString ( ) . length ( ) < 8 ) { SetupActivity . this . application . displayToastMessage ( getString ( R . string . setup_activity_error_passphrase_tooshort ) ) ; return false ; } else if ( newValue . toString ( ) . length ( ) > 30 ) { SetupActivity . this . application . displayToastMessage ( getString ( R . string . setup_activity_error_passphrase_toolong ) ) ; return false ; } for ( int i = 0 ; i < newValue . toString ( ) . length ( ) ; i ++ ) { if ( ! validChars . contains ( newValue . toString ( ) . substring ( i , i + 1 ) ) ) { SetupActivity . this . application . displayToastMessage ( getString ( R . string . setup_activity_error_passphrase_invalidchars ) ) ; return false ; } } return true ; } } ) ; } else { Log . d ( MSG_TAG , "" ) ; this . prefPassphrase . setSummary ( this . prefPassphrase . getSummary ( ) + "" ) ; this . prefPassphrase . setDialogMessage ( getString ( R . string . setup_activity_error_passphrase_13chars ) ) ; this . prefPassphrase . getEditText ( ) . addTextChangedListener ( new TextWatcher ( ) { public void afterTextChanged ( Editable s ) { } public void beforeTextChanged ( CharSequence s , int start , int count , int after ) { } public void onTextChanged ( CharSequence s , int start , int before , int count ) { if ( s . length ( ) == 13 ) { SetupActivity . this . prefPassphrase . getEditText ( ) . setTextColor ( origTextColorPassphrase ) ; } else { SetupActivity . this . prefPassphrase . getEditText ( ) . setTextColor ( Color . RED ) ; } } } ) ; this . prefPassphrase . setOnPreferenceChangeListener ( new Preference . OnPreferenceChangeListener ( ) { public boolean onPreferenceChange ( Preference preference , Object newValue ) { String validChars = "" + "" + "0123456789" ; if ( newValue . toString ( ) . length ( ) == 13 ) { for ( int i = 0 ; i < 13 ; i ++ ) { if ( ! validChars . contains ( newValue . toString ( ) . substring ( i , i + 1 ) ) ) { SetupActivity . this . application . displayToastMessage ( getString ( R . string . setup_activity_error_passphrase_invalidchars ) ) ; return false ; } } return true ; } else { SetupActivity . this . application . displayToastMessage ( getString ( R . string . setup_activity_error_passphrase_tooshort ) ) ; return false ; } } } ) ; } if ( this . application . interfaceDriver . startsWith ( "softap" ) == false || this . application . interfaceDriver . equals ( Configuration . DRIVER_HOSTAP ) == false ) { ListPreference channelpref = ( ListPreference ) findPreference ( "channelpref" ) ; entries = channelpref . getEntries ( ) ; targetentries = new CharSequence [ entries . length - 1 ] ; for ( int i = 1 ; i < entries . length ; i ++ ) { targetentries [ i - 1 ] = entries [ i ] ; } entryvalues = channelpref . getEntryValues ( ) ; targetentryvalues = new CharSequence [ entries . length - 1 ] ; for ( int i = 1 ; i < entryvalues . length ; i ++ ) { targetentryvalues [ i - 1 ] = entryvalues [ i ] ; } channelpref . setEntries ( targetentries ) ; channelpref . setEntryValues ( targetentryvalues ) ; } ListPreference setuppref = ( ListPreference ) findPreference ( "setuppref" ) ; String [ ] setupnames = resources . getStringArray ( R . array . setupnames ) ; String [ ] setupvalues = resources . getStringArray ( R . array . setupvalues ) ; ArrayList < String > tmpsetupnames = new ArrayList < String > ( ) ; ArrayList < String > tmpsetupvalues = new ArrayList < String > ( ) ; for ( int i = 0 ; i < setupvalues . length ; i ++ ) { if ( ! setupvalues [ i ] . equals ( DEFAULT_SETUP ) && this . application . settings . getString ( "devicepref" , DEFAULT_DEVICE ) . equals ( DEFAULT_DEVICE ) ) continue ; if ( ! this . application . settings . getString ( "devicepref" , DEFAULT_DEVICE ) . equals ( DEFAULT_DEVICE ) && setupvalues [ i ] . equals ( DEFAULT_SETUP ) ) continue ; if ( setupvalues [ i ] . equals ( "netd" ) ) { if ( this . application . configurationAdv . isNetdSupported ( ) == false ) { continue ; } } else if ( setupvalues [ i ] . equals ( "hostapd" ) ) { if ( this . application . configurationAdv . isHostapdSupported ( ) == false ) { continue ; } } else if ( setupvalues [ i ] . equals ( "softap" ) ) { if ( this . application . configurationAdv . isSoftapSupported ( ) == false ) { continue ; } } else if ( setupvalues [ i ] . equals ( "" ) ) { if ( this . application . configurationAdv . isSoftapSamsungSupported ( ) == false ) { continue ; } } else if ( setupvalues [ i ] . equals ( "wext" ) ) { if ( this . application . configurationAdv . isWextSupported ( ) == false ) { continue ; } } tmpsetupnames . add ( setupnames [ i ] ) ; tmpsetupvalues . add ( setupvalues [ i ] ) ; } targetentries = new CharSequence [ tmpsetupnames . size ( ) ] ; targetentryvalues = new CharSequence [ tmpsetupvalues . size ( ) ] ; for ( int i = 0 ; i < tmpsetupnames . size ( ) ; i ++ ) { targetentries [ i ] = tmpsetupnames . get ( i ) ; targetentryvalues [ i ] = tmpsetupvalues . get ( i ) ; } setuppref . setEntries ( targetentries ) ; setuppref . setEntryValues ( targetentryvalues ) ; } protected void onNewIntent ( Intent i ) { Log . d ( MSG_TAG , "" + i ) ; setIntent ( i ) ; } @ Override protected void onResume ( ) { Log . d ( MSG_TAG , "" ) ; super . onResume ( ) ; getPreferenceScreen ( ) . getSharedPreferences ( ) . registerOnSharedPreferenceChangeListener ( this ) ; IntentFilter filter = new IntentFilter ( ) ; filter . addAction ( TetherService . INTENT_STATE ) ; registerReceiver ( intentReceiver , filter ) ; try { if ( getIntent ( ) . getAction ( ) . equals ( "" ) ) { } } catch ( NullPointerException e ) { Log . d ( MSG_TAG , "" , e ) ; } } @ Override protected void onPause ( ) { Log . d ( MSG_TAG , "" ) ; super . onPause ( ) ; getPreferenceScreen ( ) . getSharedPreferences ( ) . unregisterOnSharedPreferenceChangeListener ( this ) ; unregisterReceiver ( intentReceiver ) ; } @ Override protected Dialog onCreateDialog ( int id ) { if ( id == ID_DIALOG_RESTARTING ) { progressDialog = new ProgressDialog ( this ) ; progressDialog . setTitle ( getString ( R . string . setup_activity_restart_tethering_title ) ) ; progressDialog . setMessage ( getString ( R . string . setup_activity_restart_tethering_message ) ) ; progressDialog . setIndeterminate ( false ) ; progressDialog . setCancelable ( true ) ; return progressDialog ; } return null ; } public void onSharedPreferenceChanged ( SharedPreferences sharedPreferences , String key ) { updateConfiguration ( sharedPreferences , key ) ; } private BroadcastReceiver intentReceiver = new BroadcastReceiver ( ) { @ Override public void onReceive ( Context context , Intent intent ) { String action = intent . getAction ( ) ; if ( action . equals ( TetherService . INTENT_STATE ) ) { switch ( intent . getIntExtra ( "state" , TetherService . STATE_IDLE ) ) { case TetherService . STATE_RESTARTING : showDialog ( SetupActivity . ID_DIALOG_RESTARTING ) ; break ; case TetherService . STATE_RUNNING : dismissDialog ( SetupActivity . ID_DIALOG_RESTARTING ) ; break ; default : dismissDialog ( SetupActivity . ID_DIALOG_RESTARTING ) ; break ; } } } } ; Handler displayToastMessageHandler = new Handler ( ) { public void handleMessage ( Message msg ) { if ( msg . obj != null ) { SetupActivity . this . application . displayToastMessage ( ( String ) msg . obj ) ; } super . handleMessage ( msg ) ; System . gc ( ) ; } } ; Handler updateSettingsMenuHandler = new Handler ( ) { public void handleMessage ( Message msg ) { SetupActivity . this . updateSettingsMenu ( ) ; super . handleMessage ( msg ) ; } } ; private void updateConfiguration ( final SharedPreferences sharedPreferences , final String key ) { EasyTracker . getTracker ( ) . trackEvent ( "ui_action" , "preference" , key , 0L ) ; new Thread ( new Runnable ( ) { public void run ( ) { Looper . prepare ( ) ; String message = null ; if ( key . equals ( "devicepref" ) ) { String newDevice = sharedPreferences . getString ( "devicepref" , DEFAULT_DEVICE ) ; if ( SetupActivity . this . currentDevice . equals ( newDevice ) == false ) { SetupActivity . this . currentDevice = newDevice ; if ( newDevice . equals ( DEFAULT_DEVICE ) ) { SetupActivity . this . application . settings . edit ( ) . putString ( "setuppref" , DEFAULT_SETUP ) . commit ( ) ; } else if ( SetupActivity . this . currentSetup . equals ( DEFAULT_SETUP ) ) { SetupActivity . this . application . settings . edit ( ) . putString ( "setuppref" , "auto" ) . commit ( ) ; } SetupActivity . this . application . updateDeviceParametersAdv ( ) ; SetupActivity . this . updateSettingsMenuHandler . sendEmptyMessage ( 0 ) ; message = getString ( R . string . setup_activity_info_device_changedto ) + " '" + newDevice + "'." ; try { if ( TetherService . singleton != null && TetherService . singleton . getState ( ) == TetherService . STATE_RUNNING ) { TetherService . singleton . restartTether ( ) ; } } catch ( Exception ex ) { message = getString ( R . string . setup_activity_error_restart_tethering ) ; } Message msg = new Message ( ) ; msg . obj = message ; SetupActivity . this . displayToastMessageHandler . sendMessage ( msg ) ; } } else if ( key . equals ( "setuppref" ) ) { String newSetup = sharedPreferences . getString ( "setuppref" , DEFAULT_SETUP ) ; if ( SetupActivity . this . currentSetup . equals ( newSetup ) == false ) { SetupActivity . this . currentSetup = newSetup ; if ( newSetup . equals ( DEFAULT_SETUP ) ) SetupActivity . this . application . settings . edit ( ) . putString ( "devicepref" , DEFAULT_DEVICE ) . commit ( ) ; SetupActivity . this . application . updateDeviceParametersAdv ( ) ; SetupActivity . this . updateSettingsMenuHandler . sendEmptyMessage ( 0 ) ; message = getString ( R . string . setup_activity_info_setup_changedto ) + " '" + newSetup + "'." ; try { if ( TetherService . singleton != null && TetherService . singleton . getState ( ) == TetherService . STATE_RUNNING ) { TetherService . singleton . restartTether ( ) ; } } catch ( Exception ex ) { message = getString ( R . string . setup_activity_error_restart_tethering ) ; } Message msg = new Message ( ) ; msg . obj = message ; SetupActivity . this . displayToastMessageHandler . sendMessage ( msg ) ; } } else if ( key . equals ( "ssidpref" ) ) { String newSSID = sharedPreferences . getString ( "ssidpref" , "OpenGarden" ) ; if ( SetupActivity . this . currentSSID . equals ( newSSID ) == false ) { SetupActivity . this . currentSSID = newSSID ; message = getString ( R . string . setup_activity_info_ssid_changedto ) + " '" + newSSID + "'." ; try { if ( application . coretask . isNatEnabled ( ) && application . coretask . isProcessRunning ( "bin/dnsmasq" ) ) { if ( TetherService . singleton != null ) TetherService . singleton . restartTether ( ) ; } } catch ( Exception ex ) { message = getString ( R . string . setup_activity_error_restart_tethering ) ; } Message msg = new Message ( ) ; msg . obj = message ; SetupActivity . this . displayToastMessageHandler . sendMessage ( msg ) ; } } else if ( key . equals ( "channelpref" ) ) { String newChannel = sharedPreferences . getString ( "channelpref" , "1" ) ; if ( SetupActivity . this . currentChannel . equals ( newChannel ) == false ) { SetupActivity . this . currentChannel = newChannel ;
2,168
<s> package org . rubypeople . rdt . refactoring . core . inlinelocal ; import java . util . HashMap ; import java . util . Map ; import org . jruby . ast . Node ; import org . jruby . lexer . yacc . ISourcePosition ; import org . rubypeople . rdt . core . formatter . EditableFormatHelper ; import org . rubypeople . rdt . core . formatter . FormatHelper ; import org . rubypeople . rdt . refactoring . editprovider . ReplaceEditProvider ; import org
2,169
<s> package org . rubypeople . rdt . refactoring . tests . core . movemethod ; import java . io . FileNotFoundException ; import java . io . IOException ; import org . eclipse . jface . text . BadLocationException ; import org . rubypeople . rdt . refactoring . core . movemethod . MethodMover ; import org . rubypeople . rdt . refactoring . core . movemethod . MoveMethodConditionChecker ; import org . rubypeople . rdt . refactoring . core . movemethod . MoveMethodConfig ; import org . rubypeople . rdt . refactoring . tests . MultiFileTestData ; import org . rubypeople . rdt . refactoring . tests . RefactoringTestCase ; public class MoveMethodTester extends RefactoringTestCase { public MoveMethodTester ( String testName ) { super ( testName ) ; } @
2,170
<s> package org . oddjob . values ; import org . oddjob . arooa . ArooaAnnotations ; import org . oddjob . arooa . ArooaBeanDescriptor ; import org . oddjob . arooa . ArooaConstants ; import org . oddjob . arooa . ConfiguredHow ; import org . oddjob . arooa . ParsingInterceptor ; import org . oddjob . arooa . deploy . NoAnnotations ; public class VariablesJobArooa implements ArooaBeanDescriptor { public String getComponentProperty ( ) { return null ; } public ParsingInterceptor getParsingInterceptor ( ) { return null ; } public String getTextProperty ( ) { return null ; } public ConfiguredHow getConfiguredHow ( String property
2,171
<s> package org . rubypeople . rdt . ui . actions ; import org . eclipse . ui . IWorkbenchSite ; import org . eclipse . ui . PlatformUI ; import org . rubypeople . rdt . core . IField ; import org . rubypeople . rdt . core . IImportDeclaration ; import org . rubypeople . rdt . core . IMethod ; import org . rubypeople . rdt . core . IRubyScript ; import org . rubypeople . rdt . core . ISourceFolder ; import org . rubypeople . rdt . core . IType ; import org . rubypeople . rdt . core . search . IRubySearchConstants ; import org . rubypeople . rdt . internal . ui . IRubyHelpContextIds ; import org . rubypeople . rdt . internal . ui . RubyPluginImages ; import org . rubypeople . rdt . internal .
2,172
<s> package org . rubypeople . rdt . internal . formatter ; import java . io . IOException ; import java . io . InputStream ; import javax . xml . parsers . FactoryConfigurationError ; import javax . xml . parsers . ParserConfigurationException ; import org . rubypeople . rdt . core
2,173
<s> package org . apache . camel . example . reportincident ; import org . apache . camel . builder . RouteBuilder ; public class ReportIncidentRoutes extends RouteBuilder { public void configure ( ) throws Exception
2,174
<s> package net . sf . sveditor . core . tests . srcgen ; import net . sf . sveditor . core . db . index . SVDBIndexCollection ; import net . sf . sveditor . core . tests . SVDBStringDocumentIndex ; import junit . framework . Test ; import junit . framework . TestSuite ; public class SrcGenTests extends TestSuite { public static Test suite ( ) { TestSuite suite = new TestSuite ( "SrcGenTests" ) ; suite . addTest ( new TestSuite (
2,175
<s> package net . sf . sveditor . core . db . search ; import net . sf . sveditor . core . db . ISVDBNamedItem ; import net . sf . sveditor . core . db . SVDBItemType ; public class SVDBFindPackageDefaultNameMatcher implements ISVDBFindNameMatcher { static SVDBFindPackageDefaultNameMatcher fDefault ; public boolean match ( ISVDBNamedItem it , String name ) { return ( it . getType ( ) == SVDBItemType . PackageDecl && it . getName ( ) != null && it . getName ( ) . equals ( name ) ) ; } public
2,176
<s> package com . asakusafw . dmdl . model ; import java . util . LinkedList ; import com . asakusafw . dmdl . Region ; public class AstQualifiedName extends AbstractAstNode implements AstName { private final Region region ; public final AstName qualifier ; public final AstSimpleName simpleName ; public AstQualifiedName ( Region region , AstName qualifier , AstSimpleName simpleName ) { if ( qualifier == null ) { throw new IllegalArgumentException ( "" ) ; } if ( simpleName == null ) { throw new IllegalArgumentException ( "" ) ; } this . region = region ; this . qualifier = qualifier ; this . simpleName = simpleName ; } @ Override public Region getRegion ( ) { return region ; } @ Override public AstName getQualifier ( ) { return qualifier ; } @ Override public AstSimpleName getSimpleName ( ) { return simpleName ; } @ Override public < C , R > R accept ( C context , Visitor < C , R > visitor ) { if ( visitor == null ) { throw new IllegalArgumentException ( "" ) ; } R result = visitor . visitQualifiedName ( context , this ) ; return result ; } @ Override public int hashCode ( ) { final int prime = 31 ; int result = 1 ; result = prime * result + qualifier . hashCode ( ) ; result = prime * result + simpleName . hashCode ( ) ; return result ; } @ Override public boolean equals ( Object obj ) { if ( this == obj ) { return true ; } if ( obj == null ) { return false ; } if ( getClass ( ) != obj . getClass ( ) ) { return false ; }
2,177
<s> package com . asakusafw . runtime . stage . output ; import java . io . IOException ; import java . lang . reflect . Method ; import java . text . MessageFormat ; import java . util . ArrayList ; import java . util . Collection ; import java . util . Collections ; import java . util . HashMap ; import java . util . List ; import java . util . Map ; import java . util . Set ; import java . util . TreeSet ; import org . apache . commons . logging . Log ; import org . apache . commons . logging . LogFactory ; import org . apache . hadoop . conf . Configuration ; import org . apache . hadoop . fs . Path ; import org . apache . hadoop . io . Writable ; import org . apache . hadoop . mapred . Task ; import org . apache . hadoop . mapreduce . Counter ; import org . apache . hadoop . mapreduce . Job ; import org . apache . hadoop . mapreduce . JobContext ; import org . apache . hadoop . mapreduce . OutputFormat ; import org . apache . hadoop . mapreduce . RecordWriter ; import org . apache . hadoop . mapreduce . TaskAttemptContext ; import org . apache . hadoop . mapreduce . TaskInputOutputContext ; import org . apache . hadoop . mapreduce . lib . output . FileOutputFormat ; import org . apache . hadoop . util . ReflectionUtils ; import com . asakusafw . runtime . core . Result ; import com . asakusafw . runtime . flow . ResultOutput ; import com . asakusafw . runtime . stage . StageOutput ; public class StageOutputDriver { static final Log LOG = LogFactory . getLog ( StageOutputDriver . class ) ; private static final String K_NAMES = "" ; private static final String K_FORMAT_PREFIX = "" ; private static final String K_KEY_PREFIX = "" ; private static final String K_VALUE_PREFIX = "" ; private static final String COUNTER_GROUP = "" ; private final Map < String , ResultOutput < ? > > resultSinks ; private final TaskInputOutputContext < ? , ? , ? , ? > context ; public StageOutputDriver ( TaskInputOutputContext < ? , ? , ? , ? > context ) throws IOException , InterruptedException { if ( context == null ) { throw new IllegalArgumentException ( "" ) ; } this . context = context ; this . resultSinks = prepareSinks ( context ) ; } private static Map < String , ResultOutput < ? > > prepareSinks ( TaskInputOutputContext < ? , ? , ? , ? > context ) { assert context != null ; Map < String , ResultOutput < ? > > results = new HashMap < String , ResultOutput < ? > > ( ) ; Configuration conf = context . getConfiguration ( ) ; for ( String name : conf . getStringCollection ( K_NAMES ) ) { results . put ( name , null ) ; } return results ; } private static final String METHOD_SET_OUTPUT_NAME = "" ; private void setOutputFilePrefix ( JobContext localContext , String name ) throws IOException { assert localContext != null ; assert name != null ; try { Method method = FileOutputFormat . class . getDeclaredMethod ( METHOD_SET_OUTPUT_NAME , JobContext . class , String . class ) ; method . setAccessible ( true ) ; method . invoke ( null , localContext , name ) ; } catch ( Exception e ) { throw new IOException ( MessageFormat . format ( "" , name ) , e ) ; } } @ SuppressWarnings ( "unchecked" ) public synchronized < T extends Writable > Result < T > getResultSink ( String name ) throws IOException , InterruptedException { if ( name == null ) { throw new IllegalArgumentException ( "" ) ; } if ( resultSinks . containsKey ( name ) == false ) { throw new IllegalArgumentException ( MessageFormat . format ( "" , name ) ) ; } ResultOutput < ? > sink = resultSinks . get ( name ) ; if ( sink == null ) { sink = buildSink ( name ) ; resultSinks . put ( name , sink ) ; } return ( Result < T > ) sink ; } private ResultOutput < ? > buildSink ( String name ) throws IOException , InterruptedException { assert name != null ; Configuration conf = context . getConfiguration
2,178
<s> package com . asakusafw . compiler . bulkloader ; import com . asakusafw . vocabulary . flow . FlowDescription ; import com . asakusafw . vocabulary . flow . In ; import com . asakusafw . vocabulary . flow . Out ; public class DualIdentityFlow < T > extends FlowDescription { private In < T > in1 ; private In < T > in2 ; private Out < T > out1 ; private Out < T > out2 ; public DualIdentityFlow ( In < T > in1 , In < T > in2 , Out <
2,179
<s> package com . asakusafw . compiler . flow . visualizer ; import java . util . UUID ; import com . asakusafw . compiler . common . Precondition ; public class VisualLabel implements VisualNode { private final UUID
2,180
<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 . SimpleTextAttribute ; import org . oddjob . arooa . design . screem . BorderedGroup ; 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 RepeatDC implements DesignFactory { public DesignInstance createDesign ( ArooaElement element , ArooaContext parentContext ) { return new RepeatDesign ( element , parentContext ) ; } } class RepeatDesign extends BaseDC { private final SimpleTextAttribute until ; private final SimpleTextAttribute times ; private final SimpleDesignProperty job ; public RepeatDesign ( ArooaElement element , ArooaContext parentContext ) { super ( element , parentContext ) ;
2,181
<s> package net . sf . sveditor . ui . wizards . templates ; import java . util . ArrayList ; import java . util . Iterator ; import java . util . List ; import net . sf . sveditor . core . StringInputStream ; import org . eclipse . core . resources . IContainer ; import org . eclipse . core . resources . IFile ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . NullProgressMonitor ; import org . eclipse . core . runtime . Path ; import org . eclipse . jface . viewers . ISelection ; import org . eclipse . jface . viewers . IStructuredSelection ; import org . eclipse . jface . viewers . StructuredSelection ; import org . eclipse . jface . wizard . Wizard ; import org . eclipse . ui . INewWizard ; import org . eclipse . ui . IWorkbench ; import org . eclipse . ui . IWorkbenchPage ; import org . eclipse . ui . IWorkbenchPart ; import org . eclipse . ui . IWorkbenchPartReference ; import org . eclipse . ui . IWorkbenchWindow ; import org . eclipse . ui . PartInitException ; import org . eclipse . ui . ide . IDE ; import org . eclipse . ui . internal . ide . DialogUtil ; import org . eclipse . ui . internal . wizards . newresource . ResourceMessages ; import org . eclipse . ui . part . ISetSelectionTarget ; public class NewSVTDescriptorWizard extends Wizard implements
2,182
<s> package org . rubypeople . rdt . internal . ui . infoviews ; import org . eclipse . core . runtime . IAdaptable ; import org . eclipse . jface . action . IAction ; import org . eclipse . jface . action . IMenuListener ; import org . eclipse . jface . action . IMenuManager ; import org . eclipse . jface . action . IToolBarManager ; import org . eclipse . jface . action . MenuManager ; import org . eclipse . jface . action . Separator ; import org . eclipse . jface . resource . ColorRegistry ; import org . eclipse . jface . resource . JFaceResources ; import org . eclipse . jface . text . ITextSelection ; import org . eclipse . jface . util . IPropertyChangeListener ; import org . eclipse . jface . util . PropertyChangeEvent ; import org . eclipse . jface . viewers . ISelection ; import org . eclipse . jface . viewers . ISelectionProvider ; import org . eclipse . jface . viewers . IStructuredSelection ; import org . eclipse . swt . SWT ; import org . eclipse . swt . graphics . Color ; import org . eclipse . swt . graphics . RGB ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Control ; import org . eclipse . swt . widgets . Display ; import org . eclipse . swt . widgets . Menu ; import org . eclipse . swt . widgets . Shell ; import org . eclipse . ui . IActionBars ; import org . eclipse . ui . IPartListener2 ; import org . eclipse . ui . ISelectionListener ; import org . eclipse . ui . IWorkbenchPart ; import org . eclipse . ui . IWorkbenchPartReference ; import org . eclipse . ui . PlatformUI ; import org . eclipse . ui . actions . ActionFactory ; import org . eclipse . ui . part . ViewPart ; import org . eclipse . ui . texteditor . ITextEditorActionConstants ; import org . rubypeople . rdt . core . ILocalVariable ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . IRubyScript ; import org . rubypeople . rdt . core . IType ; import org . rubypeople . rdt . core . RubyModelException ; import org . rubypeople . rdt . internal . ui . rubyeditor . RubyEditor ; import org . rubypeople . rdt . internal . ui . util . SelectionUtil ; import org . rubypeople . rdt . ui . IContextMenuConstants ; import org . rubypeople . rdt . ui . RubyElementLabels ; abstract class AbstractInfoView extends ViewPart implements ISelectionListener , IMenuListener , IPropertyChangeListener { private final long TITLE_FLAGS = RubyElementLabels . ALL_FULLY_QUALIFIED | RubyElementLabels . M_PARAMETER_NAMES | RubyElementLabels . USE_RESOLVED ; private final long LOCAL_VARIABLE_TITLE_FLAGS = TITLE_FLAGS & ~ RubyElementLabels . F_FULLY_QUALIFIED | RubyElementLabels . F_POST_QUALIFIED ; private static final long TOOLTIP_LABEL_FLAGS = RubyElementLabels . DEFAULT_QUALIFIED | RubyElementLabels . ROOT_POST_QUALIFIED | RubyElementLabels . APPEND_ROOT_PATH | RubyElementLabels . M_PARAMETER_NAMES ; private IPartListener2 fPartListener = new IPartListener2 ( ) { public void partVisible ( IWorkbenchPartReference ref ) { if ( ref . getId ( ) . equals ( getSite ( ) . getId ( ) ) ) { IWorkbenchPart activePart = ref . getPage ( ) . getActivePart ( ) ; if ( activePart != null ) selectionChanged ( activePart , ref . getPage ( ) . getSelection ( ) ) ; startListeningForSelectionChanges ( ) ; } } public void partHidden ( IWorkbenchPartReference ref ) { if ( ref . getId ( ) . equals ( getSite ( ) . getId ( ) ) ) stopListeningForSelectionChanges ( ) ; } public void partInputChanged ( IWorkbenchPartReference ref ) { if ( ! ref . getId ( ) . equals ( getSite ( ) . getId ( ) ) ) computeAndSetInput ( ref . getPart ( false ) ) ; } public void partActivated ( IWorkbenchPartReference ref ) { } public void partBroughtToTop ( IWorkbenchPartReference ref ) { } public void partClosed ( IWorkbenchPartReference ref ) { } public void partDeactivated ( IWorkbenchPartReference ref ) { } public void partOpened ( IWorkbenchPartReference ref ) { } } ; protected IRubyElement fCurrentViewInput ; private GotoInputAction fGotoInputAction ; private volatile int fComputeCount ; private Color fBackgroundColor ; private RGB fBackgroundColorRGB ; abstract protected void setInput ( Object input ) ; abstract protected Object computeInput ( Object element ) ; abstract protected void internalCreatePartControl ( Composite parent ) ; abstract protected void setForeground ( Color color ) ; abstract protected void setBackground ( Color color ) ; abstract Control getControl ( ) ; abstract protected String getHelpContextId ( ) ; public final void createPartControl ( Composite parent ) { internalCreatePartControl ( parent ) ; inititalizeColors ( ) ; getSite ( ) . getWorkbenchWindow ( ) . getPartService ( ) . addPartListener ( fPartListener ) ; createContextMenu ( ) ; createActions ( ) ; fillActionBars ( getViewSite ( ) . getActionBars ( ) ) ; PlatformUI . getWorkbench ( ) . getHelpSystem ( ) . setHelp ( getControl ( ) , getHelpContextId ( ) ) ; } protected void createActions ( ) { fGotoInputAction = new GotoInputAction ( this ) ; fGotoInputAction . setEnabled ( false ) ; } protected void createContextMenu ( ) { MenuManager menuManager = new MenuManager ( "#PopupMenu" ) ; menuManager . setRemoveAllWhenShown ( true ) ; menuManager . addMenuListener ( this ) ; Menu contextMenu = menuManager . createContextMenu ( getControl ( ) ) ; getControl ( ) . setMenu ( contextMenu ) ; getSite ( ) . registerContextMenu ( menuManager , getSelectionProvider ( ) ) ; } public void menuAboutToShow ( IMenuManager menu ) { menu . add ( new Separator ( IContextMenuConstants . GROUP_OPEN ) ) ; menu . add ( new Separator ( ITextEditorActionConstants . GROUP_EDIT ) ) ; IAction action ; action = getSelectAllAction ( ) ; if ( action != null ) menu . appendToGroup ( ITextEditorActionConstants . GROUP_EDIT , action ) ; menu . appendToGroup ( IContextMenuConstants . GROUP_OPEN , fGotoInputAction ) ; } protected IAction getSelectAllAction ( ) { return null ; } protected IRubyElement getInput ( ) { return fCurrentViewInput ; } ISelectionProvider getSelectionProvider ( ) { return getViewSite ( ) . getSelectionProvider ( ) ; } protected void fillActionBars ( IActionBars actionBars ) { IToolBarManager toolBar = actionBars . getToolBarManager ( ) ; fillToolBar ( toolBar ) ; IAction action ; action = getSelectAllAction ( ) ; if ( action != null ) actionBars . setGlobalActionHandler ( ActionFactory . SELECT_ALL . getId ( ) , action ) ; } protected void fillToolBar ( IToolBarManager tbm ) { tbm . add ( fGotoInputAction ) ; } private void inititalizeColors ( ) { if ( getSite ( ) . getShell ( ) . isDisposed ( ) ) return ; Display display = getSite ( ) . getShell ( ) . getDisplay ( ) ; if ( display == null || display . isDisposed ( ) ) return ; setForeground ( display . getSystemColor ( SWT . COLOR_INFO_FOREGROUND ) ) ; ColorRegistry registry = JFaceResources . getColorRegistry ( ) ; registry . addListener ( this ) ; fBackgroundColorRGB = registry . getRGB ( getBackgroundColorKey ( ) ) ; Color bgColor ; if ( fBackgroundColorRGB == null ) { bgColor = display . getSystemColor ( SWT . COLOR_INFO_BACKGROUND ) ; fBackgroundColorRGB = bgColor . getRGB ( ) ; } else { bgColor = new Color ( display , fBackgroundColorRGB ) ; fBackgroundColor = bgColor ; } setBackground ( bgColor ) ; } abstract protected String getBackgroundColorKey ( ) ; public void propertyChange ( PropertyChangeEvent event ) { if ( getBackgroundColorKey ( ) . equals ( event . getProperty ( ) ) ) inititalizeColors ( ) ; } protected void startListeningForSelectionChanges ( ) { getSite ( ) . getPage ( ) . addPostSelectionListener ( this ) ; } protected void stopListeningForSelectionChanges ( ) { getSite ( ) . getPage ( ) . removePostSelectionListener ( this ) ; } public void selectionChanged ( IWorkbenchPart part , ISelection selection ) { if ( part . equals ( this ) ) return ; computeAndSetInput ( part ) ; } protected boolean isIgnoringNewInput ( IRubyElement je , IWorkbenchPart part , ISelection selection ) { return fCurrentViewInput != null && fCurrentViewInput . equals ( je ) && je != null ; } protected IRubyElement findSelectedRubyElement ( IWorkbenchPart part , ISelection selection ) { Object element ; try { if ( part instanceof RubyEditor && selection instanceof ITextSelection ) { IRubyElement [ ] elements = TextSelectionConverter . codeResolve ( ( RubyEditor ) part , ( ITextSelection ) selection ) ; if ( elements != null && elements . length > 0 ) return elements [ 0 ] ; else return null ; } else if ( selection instanceof IStructuredSelection ) { element = SelectionUtil . getSingleElement ( selection ) ; } else { return null ; } } catch ( RubyModelException e ) { return null ; }
2,183
<s> package com . asakusafw . dmdl . directio . common . driver ; import java . io . IOException ; import java . io . PrintWriter ; import java . util . List ; import com . asakusafw . utils . collections . Lists ; import com . asakusafw . utils . java . jsr199 . testing . VolatileJavaFile ; import com . asakusafw . utils . java . model . syntax . PackageDeclaration ; import com .
2,184
<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 . CascadeType ; 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 . ManyToOne ; import javax . persistence . OneToMany ; import javax . persistence . Table ; import org . hibernate . annotations . Index ; import org . joda . time . LocalDate ; import org . springframework . beans . support . MutableSortDefinition ; import org . springframework . beans . support . PropertyComparator ; import org . springframework . format . annotation . DateTimeFormat ; import org . springframework . format . annotation . DateTimeFormat . ISO ; @ Entity ( ) @ Table ( name = "pets" ) public class Pet implements NamedEntity { @ DateTimeFormat ( iso = ISO . DATE ) @ Basic @ Column ( name = "birth_date" ) private LocalDate birthDate ; @ Id @ GeneratedValue ( strategy = GenerationType . IDENTITY ) private Integer id ;
2,185
<s> package com . team1160 . scouting . frontend . resourcePackets ; import java . awt . CardLayout ; import java . awt . Container ; public class CardLayoutPacket { protected CardLayout layout ; protected Container parent ; public CardLayoutPacket ( Container parent ) { layout = new CardLayout ( ) ; this . parent = parent ; } public CardLayout getLayout ( ) { return layout ; }
2,186
<s> package net . bioclipse . opentox . test ; import net . bioclipse . managers . business . IBioclipseManager ; import org . junit . BeforeClass ; public class JavaOpentoxManagerPluginTest extends AbstractOpentoxManagerPluginTest { @ BeforeClass
2,187
<s> package com . asakusafw . compiler . flow . processor . operator ; import java . util . List ; import com . asakusafw . compiler . flow . testing . model . Ex1 ; import com . asakusafw . runtime . core . Result ; import com . asakusafw . vocabulary . model . Key ; import com . asakusafw . vocabulary . operator . CoGroup ; import com . asakusafw . vocabulary . operator . GroupSort ; public abstract class GroupSortFlow { @ GroupSort public void min ( @ Key ( group = "string" , order = "value asc" ) List < Ex1 > a1 , Result < Ex1 > r1 ) { r1 . add ( a1 . get ( 0 ) ) ; } @ GroupSort public void max ( @ Key ( group = "string" , order = "value desc" ) List < Ex1 > a1 , Result < Ex1 > r1 ) { r1 . add ( a1 . get ( 0 ) ) ; } @ CoGroup public void withParameter ( @ Key ( group = "string" , order = "value asc" ) List < Ex1 > a1 , Result < Ex1 > r1 , Result < Ex1 > r2
2,188
<s> package org . rubypeople . rdt . internal . ui . dialogs ; import org . eclipse . core . runtime . IStatus ; import org . eclipse . jface . dialogs . IDialogConstants ; import org . eclipse . jface . util . Assert ; import org . eclipse . jface . viewers . ILabelProvider ; import org . eclipse . swt . SWT ; import org . eclipse . swt . custom . BusyIndicator ; import org . eclipse . swt . events . KeyEvent ; import org . eclipse . swt . events . KeyListener ; import org . eclipse . swt . events . SelectionEvent ; import org . eclipse . swt . events . SelectionListener ; import org . eclipse . swt . layout . GridData ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Event ; import org . eclipse . swt . widgets . Label ; import org . eclipse . swt . widgets . Listener ; import org . eclipse . swt . widgets . Shell ; import org . eclipse . swt . widgets . Text ; import org . rubypeople . rdt . internal . ui . util . FilteredList ; public abstract class AbstractElementListSelectionDialog extends SelectionStatusDialog { private ILabelProvider fRenderer ; private boolean fIgnoreCase = true ; private boolean fIsMultipleSelection = false ; private boolean fMatchEmptyString = true ; private boolean fAllowDuplicates = true ; private Label fMessage ; protected FilteredList fFilteredList ; private Text fFilterText ; private ISelectionValidator fValidator ; private String fFilter = null ; private String fEmptyListMessage = "" ; private String fEmptySelectionMessage = "" ; private int fWidth = 60 ; private int fHeight = 18 ; private Object [ ] fSelection = new Object [ 0 ] ; protected AbstractElementListSelectionDialog ( Shell parent , ILabelProvider renderer ) { super ( parent ) ; fRenderer = renderer ; int shellStyle = getShellStyle ( ) ; setShellStyle ( shellStyle | SWT . MAX | SWT . RESIZE ) ; } protected void handleDefaultSelected ( ) { if ( validateCurrentSelection ( ) ) buttonPressed ( IDialogConstants . OK_ID ) ; } public void setIgnoreCase ( boolean ignoreCase ) { fIgnoreCase = ignoreCase ; } public boolean isCaseIgnored ( ) { return fIgnoreCase ; } public void setMatchEmptyString ( boolean matchEmptyString ) { fMatchEmptyString = matchEmptyString ; } public void setMultipleSelection ( boolean multipleSelection ) { fIsMultipleSelection = multipleSelection ; } public void setAllowDuplicates ( boolean allowDuplicates ) { fAllowDuplicates = allowDuplicates ; } public void setSize ( int width , int height ) { fWidth = width ; fHeight = height ; } public void setEmptyListMessage ( String message ) { fEmptyListMessage = message ; } public void setEmptySelectionMessage ( String message ) { fEmptySelectionMessage = message ; } public void setValidator ( ISelectionValidator validator ) { fValidator = validator ; } protected void setListElements ( Object [ ] elements ) { Assert . isNotNull ( fFilteredList ) ; fFilteredList . setElements ( elements ) ; } public void setFilter ( String filter ) { if ( fFilterText == null ) fFilter = filter ; else fFilterText . setText ( filter ) ; } public String getFilter ( ) { if ( fFilteredList == null ) return fFilter ; return fFilteredList . getFilter ( ) ; } protected int [ ] getSelectionIndices ( ) { Assert . isNotNull ( fFilteredList ) ; return fFilteredList . getSelectionIndices ( ) ; } protected int getSelectionIndex ( ) { Assert . isNotNull ( fFilteredList ) ; return fFilteredList . getSelectionIndex ( ) ; } protected void setSelection ( Object [ ] selection ) { Assert . isNotNull ( fFilteredList ) ; fFilteredList . setSelection ( selection ) ; } protected Object [ ] getSelectedElements ( ) { Assert . isNotNull ( fFilteredList ) ; return fFilteredList . getSelection ( ) ; } public Object [ ] getFoldedElements ( int index ) { Assert . isNotNull ( fFilteredList ) ; return fFilteredList . getFoldedElements ( index ) ; } protected Label createMessageArea ( Composite composite ) { Label label = super . createMessageArea ( composite ) ; GridData data = new GridData ( ) ; data . grabExcessVerticalSpace = false ; data . grabExcessHorizontalSpace = true ; data . horizontalAlignment = GridData . FILL ; data . verticalAlignment = GridData . BEGINNING ; label . setLayoutData ( data ) ; fMessage = label ; return label ; } protected void handleSelectionChanged ( ) { validateCurrentSelection ( ) ; } protected boolean validateCurrentSelection ( ) { Assert . isNotNull ( fFilteredList ) ; IStatus status ; Object [ ] elements = getSelectedElements ( ) ; if ( elements . length > 0 ) { if ( fValidator != null ) { status = fValidator . validate ( elements ) ; } else { status = new StatusInfo ( ) ; } } else { if ( fFilteredList . isEmpty ( ) ) { status = new StatusInfo ( IStatus . ERROR , fEmptyListMessage ) ; } else { status = new StatusInfo ( IStatus . ERROR , fEmptySelectionMessage ) ; } } updateStatus ( status ) ; return status . isOK ( ) ; } protected void cancelPressed ( ) { setResult ( null ) ; super . cancelPressed ( ) ; } protected FilteredList createFilteredList (
2,189
<s> package org . rubypeople . rdt . internal . ui . preferences ; import java . util . Set ; import org . eclipse . core . resources . ResourcesPlugin ; import org . eclipse . core . runtime . IStatus ; import org . eclipse . jface . dialogs . Dialog ; import org . eclipse . jface . dialogs . IDialogSettings ; import org . eclipse . jface . viewers . DoubleClickEvent ; import org . eclipse . jface . viewers . IDoubleClickListener ; import org . eclipse . jface . viewers . ISelectionChangedListener ; import org . eclipse . jface . viewers . IStructuredSelection ; import org . eclipse . jface . viewers . SelectionChangedEvent ; import org . eclipse . jface . viewers . TableViewer ; import org . eclipse . jface . viewers . Viewer ; import org . eclipse . jface . viewers . ViewerFilter ; import org . eclipse . swt . SWT ; import org . eclipse . swt . events . SelectionEvent ; import org . eclipse . swt . events . SelectionListener ; import org . eclipse . swt . graphics . Font ; import org . eclipse . swt . layout . GridData ; import org . eclipse . swt . widgets . Button ; import org . eclipse . swt . widgets . Composite ; import org .
2,190
<s> package com . asakusafw . windgate . hadoopfs . temporary ; import java . io . EOFException ; import java . io . IOException ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import com . asakusafw . runtime . io . ModelInput ; import com . asakusafw . windgate . core . resource . SourceDriver ; public class ModelInputSourceDriver < T > implements SourceDriver < T > { static final Logger LOG = LoggerFactory . getLogger ( ModelInputSourceDriver . class ) ; private final ModelInputProvider < T > provider ; private final T value ; private ModelInput < T > currentInput ; private boolean sawNext ;
2,191
<s> package com . asakusafw . dmdl . thundergate . emitter ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . math . BigDecimal ; import org . apache . hadoop . io . Text ; import org . hamcrest . Matcher ; import org . junit . Before ; import org . junit . Test ; import com . asakusafw . dmdl . java . emitter . CompositeDataModelDriver ; import com . asakusafw . dmdl . thundergate . Constants ; import com . asakusafw . dmdl . thundergate . GeneratorTesterRoot ; import com . asakusafw . dmdl . thundergate . model . Attribute ; import com . asakusafw . dmdl . thundergate . model . DecimalType ; import com . asakusafw . dmdl . thundergate . model . PropertyTypeKind ; import com . asakusafw . dmdl . thundergate . model . StringType ; import com . asakusafw . dmdl . thundergate . model . TableModelDescription ; import com . asakusafw . dmdl . thundergate . util . TableModelBuilder ; import com . asakusafw . runtime . value . Date ; import com . asakusafw . runtime . value . DateTime ; import com . asakusafw . vocabulary . bulkloader . PrimaryKey ; public class RecordModelGeneratorTest extends GeneratorTesterRoot { @ Before public void setUp ( ) throws Exception { emitDrivers . add ( new CompositeDataModelDriver ( getClass ( ) . getClassLoader ( ) ) ) ; } @ Test public void simple ( ) { TableModelDescription table = new TableModelBuilder ( "SIMPLE" ) . add ( "comment" , "VALUE" , new StringType ( 255 ) ) . toDescription ( ) ; emitDmdl ( RecordModelGenerator . generate ( table ) ) ; ModelLoader loader = generateJava ( ) ; loader . setNamespace ( Constants . SOURCE_TABLE ) ; ModelWrapper object = loader . newModel ( "Simple" ) ; object . set ( "value" , new Text ( "" ) ) ; assertThat ( object . get ( "value" ) , eq ( new Text ( "" ) ) ) ; } @ Test public void primitives ( ) { TableModelDescription table = new TableModelBuilder ( "SIMPLE" ) . add ( null , "TYPE_BOOLEAN" , PropertyTypeKind . BOOLEAN ) . add ( null , "TYPE_BYTE" , PropertyTypeKind . BYTE ) . add ( null , "TYPE_SHORT" , PropertyTypeKind . SHORT ) . add ( null , "TYPE_INT" , PropertyTypeKind . INT ) . add ( null , "TYPE_LONG" , PropertyTypeKind . LONG ) . add ( null , "TYPE_DATE" , PropertyTypeKind . DATE ) . add ( null , "" , PropertyTypeKind . DATETIME ) . add ( null , "TYPE_TEXT" , new StringType ( 255 ) ) . add ( null , "TYPE_DECIMAL" , new DecimalType ( 10 , 10 ) ) . toDescription ( ) ; emitDmdl ( RecordModelGenerator . generate ( table ) ) ; ModelLoader loader = generateJava ( ) ; loader . setNamespace ( Constants . SOURCE_TABLE ) ; ModelWrapper object = loader . newModel ( "Simple" ) ; object . set ( "type_boolean" , true ) ; assertThat ( object . is ( "type_boolean" ) , eq ( true ) ) ; object . set ( "type_byte" , ( byte ) 64 ) ; assertThat ( object . get ( "type_byte" ) , eq ( ( byte ) 64 ) ) ; object . set ( "type_short" , ( short ) 256 ) ; assertThat ( object . get ( "type_short" ) , eq ( ( short ) 256 ) ) ; object . set ( "type_int" , 100 ) ; assertThat ( object . get ( "type_int" ) , eq ( 100 ) ) ; object . set ( "type_long" , 200L ) ; assertThat ( object . get ( "type_long" ) , eq ( 200L ) ) ; object . set ( "type_decimal" , new BigDecimal ( "1234.567" ) ) ; assertThat ( object . get ( "type_decimal" ) , eq ( new BigDecimal ( "1234.567" ) ) ) ; object . set ( "type_text" , new Text ( "" ) ) ; assertThat
2,192
<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
2,193
<s> package org . oddjob . describe ; import java . lang . annotation . ElementType ; import java . lang . annotation . Retention ; import java . lang . annotation . RetentionPolicy ; import java . lang . annotation . Target ; @ Retention ( RetentionPolicy . RUNTIME ) @ Target ( {
2,194
<s> package org . oddjob . framework ; import java . util . ArrayList ; import java . util . List ; import java . util . concurrent . CountDownLatch ; import junit . framework . TestCase ; import org . oddjob . arooa . life . ComponentPersistException ; import org . oddjob . persist . Persistable ; import org . oddjob . state . IsAnyState ; import org . oddjob . state . IsStoppable ; import org . oddjob . state . JobState ; import org . oddjob . state . JobStateChanger ; import org . oddjob . state . JobStateHandler ; import org . oddjob . state . StateListener ; import org . oddjob . state . State ; import org . oddjob . state . StateChanger ; import org . oddjob . state . StateEvent ; import org . oddjob . state
2,195
<s> package de . fuberlin . wiwiss . d2rq . helpers ; import de . fuberlin . wiwiss . d2rq . D2RQException ; import de . fuberlin . wiwiss . d2rq . D2RQTestSuite ; import de . fuberlin . wiwiss . d2rq . map . Database ; import de . fuberlin . wiwiss . d2rq . map . Mapping ; import de . fuberlin . wiwiss . d2rq . parser . MapParser ; import de . fuberlin . wiwiss . d2rq . sql . DummyDB ; public class MappingHelper { public static Mapping readFromTestFile ( String testFileName ) { return new MapParser ( D2RQTestSuite . loadTurtle ( testFileName ) , "" ) . parse ( ) ; } public static void connectToDummyDBs ( Mapping m ) {
2,196
<s> package org . oddjob . oddballs ; import java . io . File ; import java . util . ArrayList ; import java . util . List ; import junit . framework . TestCase ; import org . apache . log4j . Logger ; import org . oddjob . OurDirs ; import org . oddjob . jobs . ExecJob ; import org . oddjob . logging . LogEvent ; import org . oddjob . logging . LogLevel ; import org . oddjob . logging . LogListener ; public class OddballsLaunchTest extends TestCase { private static final Logger logger = Logger . getLogger ( OddballsLaunchTest . class ) ; final static String RUN_JAR = "" ; final static String EOL = System . getProperty ( "" ) ; @ Override protected void setUp ( ) throws Exception { logger . info ( "" + getName ( ) + "" ) ; File built = new File ( new OurDirs ( ) . base ( ) , RUN_JAR ) ; assertTrue ( built . exists ( ) ) ; } class Console implements LogListener { List < String > lines = new ArrayList < String > ( ) ; public void logEvent ( LogEvent logEvent ) { lines . add ( logEvent . getMessage ( ) ) ; } } public void testOddjobFailsNoFile ( ) throws InterruptedException { Console console = new Console ( ) ; OurDirs dirs = new OurDirs ( ) ; ExecJob exec = new ExecJob ( ) ; exec . setCommand ( "java -jar \"" + dirs . relative ( RUN_JAR ) . getPath ( ) + "\"" + " -ob \"" + dirs . relative ( "" ) . getPath ( ) + "\"" + " -f \"" + dirs . relative ( "" ) + "\"" ) ; exec . consoleLog ( ) . addListener ( console ,
2,197
<s> package org . rubypeople . rdt . internal . ui . packageview ; import org . eclipse . core . resources . IContainer ; import org . eclipse . core . resources . IProject ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . resources . ResourcesPlugin ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . jface . action . Action ; import org . eclipse . jface . viewers . StructuredSelection ; import org . eclipse . jface . viewers . StructuredViewer ; import org . eclipse . jface . viewers . TreeViewer ; import org . eclipse . swt . widgets . Shell ; import org . eclipse . ui . PlatformUI ; import org . eclipse . ui . dialogs . ResourceListSelectionDialog ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . IRubyModel ; import org . rubypeople . rdt . core . RubyCore ; import org . rubypeople . rdt . internal . ui . IRubyHelpContextIds ; public class GotoResourceAction extends Action { private PackageExplorerPart fPackageExplorer ; private static class GotoResourceDialog extends ResourceListSelectionDialog { private IRubyModel fRubyModel ; public GotoResourceDialog ( Shell parentShell , IContainer container , StructuredViewer viewer ) { super ( parentShell , container , IResource . FILE | IResource . FOLDER | IResource . PROJECT ) ; fRubyModel = RubyCore . create ( ResourcesPlugin . getWorkspace ( ) . getRoot ( ) ) ; setTitle ( PackagesMessages . GotoResource_dialog_title ) ; PlatformUI . getWorkbench ( ) . getHelpSystem ( ) . setHelp ( parentShell , IRubyHelpContextIds . GOTO_RESOURCE_DIALOG ) ; } protected boolean select ( IResource resource ) { IProject project = resource . getProject ( ) ; try { if ( project . getNature ( RubyCore . NATURE_ID ) != null ) return fRubyModel . contains ( resource ) ; } catch ( CoreException e ) { } return true ; } } public GotoResourceAction ( PackageExplorerPart explorer ) { setText ( PackagesMessages . GotoResource_action_label ) ; PlatformUI . getWorkbench ( ) . getHelpSystem ( ) . setHelp ( this , IRubyHelpContextIds . GOTO_RESOURCE_ACTION ) ; fPackageExplorer = explorer ; } public void run ( ) { TreeViewer viewer = fPackageExplorer . getViewer ( ) ; GotoResourceDialog dialog = new GotoResourceDialog ( fPackageExplorer . getSite ( ) . getShell ( ) , ResourcesPlugin . getWorkspace ( )
2,198
<s> package net . sf . sveditor . core . db ; import net . sf . sveditor . core . db . SVDBCovergroup . BinsKW ; import net . sf . sveditor . core . db . expr . SVDBExpr ; public class SVDBCoverpointBins extends SVDBItem { public enum BinsType { OpenRangeList , TransList , Default , DefaultSeq } ; public boolean fWildcard ; public BinsKW fBinsKW ; public BinsType fBinsType ; public boolean fIsArray ; public SVDBExpr fArrayExpr ; public SVDBExpr fIFF ; public SVDBCoverpointBins ( ) { super ( "" , SVDBItemType . CoverpointBins ) ; } public SVDBCoverpointBins ( boolean wildcard , String name , BinsKW kw ) { super ( name , SVDBItemType . CoverpointBins ) ; fWildcard = wildcard ; fBinsKW = kw ; } public void setIsWildcard ( boolean wildcard ) { fWildcard = wildcard ; } public boolean isWildcard ( ) { return fWildcard ; } public BinsKW getBinsKW ( ) { return fBinsKW ; } public void setBinsKW ( BinsKW
2,199
<s> package com . asakusafw . compiler . operator ; import java . lang . annotation . Documented ; import java . lang . annotation . Retention ; import java . lang . annotation . RetentionPolicy ; import com . asakusafw .