id
int32 0
3k
| input
stringlengths 43
33.8k
| gt
stringclasses 1
value |
---|---|---|
1,900 | <s> package og . android . tether . system ; import java . lang . reflect . Method ; import android . app . Application ; public class BluetoothService_cupcake extends BluetoothService { Application application = null ; @ SuppressWarnings ( "unchecked" ) private Object callBluetoothMethod ( String methodName ) { Object manager = this . application . getSystemService ( "bluetooth" ) ; Class c = manager . getClass ( ) ; Object returnValue = null ; if ( c == null ) { } else { try { Method enable = c . getMethod ( methodName ) ; enable . setAccessible ( true ) ; returnValue = enable . invoke ( manager ) ; } catch ( Exception e ) { e . printStackTrace ( ) ; } } return returnValue ; } @ Override public boolean isBluetoothEnabled ( ) { return ( Boolean ) callBluetoothMethod ( "isEnabled" ) ; } @ Override public boolean startBluetooth ( ) { boolean connected = false ; callBluetoothMethod ( "enable" | |
1,901 | <s> package de . fuberlin . wiwiss . d2rq . expr ; import java . util . Arrays ; import java . util . Collections ; import junit . framework . TestCase ; import de . fuberlin . wiwiss . d2rq . algebra . Attribute ; public class ConcatenationTest extends TestCase { public void testCreateEmpty ( ) { assertEquals ( new Constant ( "" ) , Concatenation . create ( Collections . < Expression > emptyList ( ) ) ) ; } public void testCreateOnePart ( ) { Expression expr = new AttributeExpr ( new Attribute ( null , "table" , "col" ) ) ; assertEquals ( expr , Concatenation . create | |
1,902 | <s> package net . ggtools . grand . ui . actions ; import java . io . File ; import net . ggtools . grand . ui . widgets . GraphWindow ; import org . apache . commons . logging . Log ; import org . apache . commons . logging . LogFactory ; import org . eclipse . jface . action . Action ; import org . eclipse . swt . SWT ; import org . eclipse . swt . widgets | |
1,903 | <s> package org . rubypeople . rdt . internal . core . search ; import org . rubypeople . rdt . core . search . SearchParticipant ; import org . rubypeople . rdt . internal | |
1,904 | <s> package org . kxml2 . wap ; public interface Wbxml { static public final int SWITCH_PAGE = 0 ; static public final int END = 1 ; static public final int ENTITY = 2 ; static public | |
1,905 | <s> package org . rubypeople . rdt . internal . corext . callhierarchy ; import java . util . ArrayList ; import java . util . Arrays ; import java . util . Collection ; import java . util . List ; import java . util . StringTokenizer ; import org . eclipse . core . runtime . NullProgressMonitor ; import org . eclipse . jface . preference . IPreferenceStore ; import org . jruby . ast . Node ; import org . rubypeople . rdt . core . IMember ; import org . rubypeople . rdt . core . IMethod ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . IRubyScript ; import org . rubypeople . rdt . core . search . IRubySearchScope ; import org . rubypeople . rdt . core . search . SearchEngine ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; import org . rubypeople . rdt . internal . ui . rubyeditor . ASTProvider ; import org . rubypeople . rdt . internal . ui . util . StringMatcher ; public class CallHierarchy { private static final String PREF_USE_IMPLEMENTORS = "" ; private static final String PREF_USE_FILTERS = "" ; private static final String PREF_FILTERS_LIST = "" ; private static final String DEFAULT_IGNORE_FILTERS = "" ; private static CallHierarchy fgInstance ; private IRubySearchScope fSearchScope ; private StringMatcher [ ] fFilters ; public static CallHierarchy getDefault ( ) { if ( fgInstance == null ) { fgInstance = new CallHierarchy ( ) ; } return fgInstance ; } public boolean isSearchUsingImplementorsEnabled ( ) { IPreferenceStore settings = RubyPlugin . getDefault ( ) . getPreferenceStore ( ) ; return settings . getBoolean ( PREF_USE_IMPLEMENTORS ) ; } public void setSearchUsingImplementorsEnabled ( boolean enabled ) { IPreferenceStore settings = RubyPlugin . getDefault ( ) . getPreferenceStore ( ) ; settings . setValue ( PREF_USE_IMPLEMENTORS , enabled ) ; } public Collection getImplementingMethods ( IMethod method ) { if ( isSearchUsingImplementorsEnabled ( ) ) { IRubyElement [ ] result = Implementors . getInstance ( ) . searchForImplementors ( new IRubyElement [ ] { method } , new NullProgressMonitor ( ) ) ; if ( ( result != null ) && ( result . length > 0 ) ) { return Arrays . asList ( result ) ; } } return new ArrayList ( 0 ) ; } public Collection getInterfaceMethods ( IMethod method ) { if ( isSearchUsingImplementorsEnabled ( ) ) { IRubyElement [ ] result = Implementors . getInstance ( ) . searchForInterfaces ( new IRubyElement [ ] { method } , new NullProgressMonitor ( ) ) ; if ( ( result != null ) && ( result . length > 0 ) ) { return Arrays . asList ( result ) ; } } return new ArrayList ( 0 ) ; } public MethodWrapper getCallerRoot ( IMethod method ) { return new CallerMethodWrapper ( null , new MethodCall ( method ) ) ; } public MethodWrapper getCalleeRoot ( IMethod method ) { return new CalleeMethodWrapper ( null , new MethodCall ( method ) ) ; } public static CallLocation getCallLocation ( Object element ) { CallLocation callLocation = null ; if ( element instanceof MethodWrapper ) { MethodWrapper methodWrapper = ( MethodWrapper ) element ; MethodCall methodCall = methodWrapper . getMethodCall ( ) ; if ( methodCall != null ) { callLocation = methodCall . getFirstCallLocation ( ) ; } } else if ( element instanceof CallLocation ) { callLocation = ( CallLocation ) element ; } return callLocation ; } public IRubySearchScope getSearchScope ( ) { if ( fSearchScope == null ) { fSearchScope = SearchEngine . createWorkspaceScope ( ) ; } return fSearchScope ; } public void setSearchScope ( IRubySearchScope searchScope ) { this . fSearchScope = searchScope ; } public boolean isIgnored ( String fullyQualifiedName ) { if ( ( getIgnoreFilters ( ) != null ) && ( getIgnoreFilters ( ) . length > 0 ) ) { for ( int i = 0 ; i < getIgnoreFilters ( ) . length ; i ++ ) { String fullyQualifiedName1 = fullyQualifiedName ; if ( getIgnoreFilters ( ) [ i ] . match ( fullyQualifiedName1 ) ) { return true ; } } } return false ; } public boolean isFilterEnabled ( ) { IPreferenceStore settings = RubyPlugin . getDefault ( ) . getPreferenceStore ( ) ; return settings . getBoolean ( PREF_USE_FILTERS ) ; } public void setFilterEnabled ( boolean filterEnabled ) { IPreferenceStore settings = RubyPlugin . getDefault ( ) . getPreferenceStore ( ) ; settings . setValue ( PREF_USE_FILTERS , filterEnabled ) ; } public String getFilters ( ) { IPreferenceStore settings = RubyPlugin . getDefault ( ) . getPreferenceStore ( ) ; return settings . getString ( PREF_FILTERS_LIST ) ; } | |
1,906 | <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 . | |
1,907 | <s> package org . springframework . social . google . api . plus . person ; import org . springframework . social . google . api . query . ApiQueryBuilder ; import org . springframework . social . google . api . query . QueryBuilder ; public | |
1,908 | <s> package com . asakusafw . runtime . io . csv ; import java . nio . CharBuffer ; import java . text . ParsePosition ; import java . text . SimpleDateFormat ; import java . util . Calendar ; import com . asakusafw . runtime . value . DateUtil ; abstract class DateTimeFormatter { private static final DateTimeFormatter [ ] BUILTIN = new DateTimeFormatter [ ] { new Direct ( ) , } ; abstract String getPattern ( ) ; abstract long parse ( CharSequence sequence ) ; abstract CharSequence format ( long elapsedSeconds ) ; static DateTimeFormatter newInstance ( String pattern ) { for ( DateTimeFormatter f : BUILTIN ) { if ( f . getPattern ( ) . equals ( pattern ) ) { return f ; } } return new Default ( new SimpleDateFormat ( pattern ) ) ; } private static final class Default extends DateTimeFormatter { private final SimpleDateFormat format ; private final Calendar calendarBuffer = Calendar . getInstance ( ) ; private final ParsePosition parsePositionBuffer = new ParsePosition ( 0 ) ; Default ( SimpleDateFormat format ) { assert format != null ; this . format = format ; } @ Override String getPattern ( ) { return format . toPattern ( ) ; } @ Override long parse ( CharSequence sequence ) { parsePositionBuffer . setIndex ( 0 ) ; parsePositionBuffer . setErrorIndex ( - 1 ) ; java . util . Date parsed = format . parse ( sequence . toString ( ) , parsePositionBuffer ) ; if ( parsePositionBuffer . getIndex ( ) == 0 ) { return - 1 ; } calendarBuffer . setTime ( parsed ) ; return DateUtil . getSecondFromCalendar ( calendarBuffer ) ; } @ Override String format ( long elapsedSeconds ) { DateUtil . setSecondToCalendar ( elapsedSeconds , calendarBuffer ) ; return format . format ( calendarBuffer . getTime ( ) ) ; } } private static final class Direct extends DateTimeFormatter { private static final int POS_YEAR = 0 ; private static final int POS_MONTH = 4 ; private static final int POS_DAY = 6 ; private static final int POS_HOUR = 8 ; private static final int POS_MINUTE = 10 ; private static final int POS_SECOND = 12 ; private static final int LENGTH = 14 ; private final CharBuffer buffer ; Direct ( ) { buffer = CharBuffer . allocate ( LENGTH ) ; } @ Override String getPattern ( ) { return "" ; } @ Override CharSequence format ( long elapsedSeconds ) { int elapsedDate = DateUtil . getDayFromSeconds ( elapsedSeconds ) ; int year = DateUtil . getYearFromDay ( elapsedDate ) ; int dayInYear = elapsedDate - DateUtil . getDayFromYear ( year ) ; int month = DateUtil . | |
1,909 | <s> package bonsai . app ; import java . util . Date ; import android . app . Activity ; import android . content . Intent ; import android . database . Cursor ; import android . net . Uri ; import android . os . Bundle ; import android . os . Handler ; import android . view . Menu ; import android . view . MenuInflater ; import android . view . MenuItem ; import android . view . View ; import android . widget . ImageView ; import android . widget . ImageView . ScaleType ; import android . widget . LinearLayout ; import android . widget . TextView ; import android . widget . Toast ; import java . util . List ; import bonsai . app . weather . Weather ; import bonsai . app . weather . XmlParserSax ; public class BonsaiActivity extends Activity { private BonsaiDbUtil bonsaidb ; private FamilyDbUtil familydb ; private TextView name ; private TextView family ; private ImageView photo ; private TextView age ; private TextView textWater ; private TextView textTransplant ; private TextView textPrune ; private TextView textTemperature ; private TextView textWeather ; private ImageView weatherIcon ; private Weather w ; private boolean weatherAvail ; private String location ; private double temperature ; private String imageWeather ; private final Handler handler = new Handler ( ) ; @ Override public void onCreate ( Bundle savedInstanceState ) { super . onCreate ( savedInstanceState ) ; setContentView ( R . layout . bonsai ) ; name = ( TextView ) findViewById ( R . id . textName ) ; family = ( TextView ) findViewById ( R . id . textFamily ) ; photo = ( ImageView ) findViewById ( R . id . bonsaiImage ) ; age = ( TextView ) findViewById ( R . id . textYears ) ; textWater = ( TextView ) findViewById ( R . id . textWater ) ; textTransplant = ( TextView ) findViewById ( R . id . textTransplant ) ; textPrune = ( TextView ) findViewById ( R . id . textPrune ) ; textTemperature = ( TextView ) findViewById ( R . id . textTemperature ) ; textWeather = ( TextView ) findViewById ( R . id . textweather ) ; weatherIcon = ( ImageView ) findViewById ( R . id . imageWeather ) ; textWeather = ( TextView ) findViewById ( R . id . textweather ) ; weatherIcon = ( ImageView ) findViewById ( R . id . imageWeather ) ; } @ Override public void onResume ( ) { super . onResume ( ) ; try { bonsaidb = new BonsaiDbUtil ( this ) ; bonsaidb . open ( ) ; familydb = new FamilyDbUtil ( this ) ; familydb . open ( ) ; Cursor bonsai = bonsaidb . fetchBonsai ( AndroidProjectActivity . bonsaiactual ) ; startManagingCursor ( bonsai ) ; name . setText ( bonsai . getString ( bonsai . getColumnIndexOrThrow ( BonsaiDbUtil . KEY_NAME ) ) ) ; family . setText ( bonsai . getString ( bonsai . getColumnIndexOrThrow ( BonsaiDbUtil . KEY_FAMILY ) ) ) ; String photouri = bonsai . getString ( bonsai . getColumnIndexOrThrow ( BonsaiDbUtil . KEY_PHOTO ) ) ; if ( photouri . length ( ) > 1 ) { photo . setImageURI ( Uri . parse ( photouri ) ) ; photo . setScaleType ( ScaleType . FIT_CENTER ) ; } else photo . setImageResource ( R . drawable . ic_launcher ) ; long date = new Date ( ) . getTime ( ) / ( 1000 * 60 * 60 ) ; age . setText ( "" + ( ( date - bonsai . getLong ( bonsai . getColumnIndexOrThrow ( BonsaiDbUtil . KEY_AGE ) ) ) / ( 365 * 24 ) ) ) ; checkWeather ( ) ; weatherAction ( ) ; checkWater ( ) ; checkTransplant ( ) ; checkPode ( ) ; } catch ( Exception e ) { Toast . makeText ( this , "" , Toast . LENGTH_SHORT ) . show ( ) ; } } @ Override public void onPause ( ) { super . onPause ( ) ; bonsaidb . close ( ) ; familydb . close ( ) ; } private void weatherAction ( ) { handler . postDelayed ( new Runnable ( ) { @ Override public void run ( ) { if ( weatherAvail ) { setTempInfo ( ) ; setWeatherInfo ( ) ; setWeatherComment ( ) ; } else { weatherAction ( ) ; } } } , 1000 ) ; } public void goEdit ( View v ) { try { Cursor bonsai = bonsaidb . fetchBonsai ( AndroidProjectActivity . bonsaiactual ) ; startManagingCursor ( bonsai ) ; bonsai . getString ( bonsai . getColumnIndexOrThrow ( BonsaiDbUtil . KEY_NAME ) ) ; AndroidProjectActivity . iamediting = true ; Intent editAct = new Intent ( ) . setClass ( this , EditBonsaiActivity . class ) ; | |
1,910 | <s> package org . rubypeople . rdt . internal . ui . wizards ; import java . io . File ; import java . io . FileOutputStream ; import java . io . IOException ; import java . io . InputStream ; import java . io . OutputStream ; import java . lang . reflect . InvocationTargetException ; import java . net . URL ; import java . net . URLConnection ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . core . runtime . IStatus ; import org . eclipse . core . runtime . NullProgressMonitor ; import org . eclipse . core . runtime . Status ; import org . eclipse . jface . operation . IRunnableWithProgress ; import org . eclipse . jface . wizard . IWizardPage ; import org . eclipse . jface . wizard . WizardPage ; import org . eclipse . swt . SWT ; import org . eclipse . swt . events . MouseAdapter ; import org . eclipse . swt . events . MouseEvent ; import org . eclipse . swt . graphics . Image ; import org . eclipse . swt . layout . GridData ; import org . eclipse . swt . layout . GridLayout ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Display ; import org . eclipse . swt . widgets . Label ; import org . eclipse . ui . progress . UIJob ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; class DownloadRubyWizardPage extends WizardPage implements IWizardPage { private static final String RUBY_INSTALLER_EXE = "" ; private static final String RUBY_INSTALLER_URL = "" ; private static final int BUFFER_SIZE = 64 * 1024 ; private static final int READ_TIMEOUT = 30000 ; private static final int CONNECT_TIMEOUT = 15000 ; private static final long SLEEP_TIME = 100 ; protected boolean fInstalledProperly ; private IWizardPage fNextPage ; private Label downloadButton ; private Image fEnabledImage ; private Image fDisabledImage ; private MouseAdapter downloadListener ; protected DownloadRubyWizardPage ( ) { super ( "" ) ; setTitle ( NewWizardMessages . DownloadRubyWizardPage_TTL ) ; setDescription ( NewWizardMessages . DownloadRubyWizardPage_MSG_Description ) ; } public void createControl ( Composite parent ) { Composite main = new Composite ( parent , SWT . NONE ) ; GridLayout layout = new GridLayout ( ) ; layout . marginHeight = 0 ; layout . marginWidth = 0 ; main . setLayout ( layout ) ; main . setLayoutData ( new GridData ( SWT . FILL , SWT . FILL , true , true ) ) ; Label label = new Label ( main , SWT . WRAP ) ; label . setText ( NewWizardMessages . DownloadRubyWizardPage_MSG_Explanation_text ) ; GridData data = new GridData ( SWT . FILL , SWT . FILL , true , false ) ; data . widthHint = 400 ; label . setLayoutData ( data ) ; downloadButton = new Label ( main , SWT . None ) ; downloadButton . setImage ( getEnabledButtonImage ( ) ) ; downloadListener = new MouseAdapter ( ) { @ Override public void mouseDown ( MouseEvent e ) { Display . getCurrent ( ) . asyncExec ( new Runnable ( ) { public void run ( ) { downloadButton . setImage ( getDisabledButtonImage ( ) ) ; } } ) ; downloadRuby ( ) ; downloadButton . removeMouseListener ( this ) ; } } ; downloadButton . addMouseListener ( downloadListener ) ; GridData downloadButtonData = new GridData ( SWT . CENTER , SWT . CENTER , true , true ) ; downloadButton . setLayoutData ( downloadButtonData ) ; setControl ( main ) ; } private Image getEnabledButtonImage ( ) { if ( fEnabledImage == null ) { fEnabledImage = RubyPlugin . imageDescriptorFromPlugin ( RubyPlugin . PLUGIN_ID , "" ) . createImage ( ) ; } return fEnabledImage ; } private Image getDisabledButtonImage ( ) { if ( fDisabledImage == null ) { fDisabledImage = RubyPlugin . imageDescriptorFromPlugin ( RubyPlugin . PLUGIN_ID , "" ) . createImage ( ) ; } return fDisabledImage ; } @ Override public void dispose ( ) { if ( fEnabledImage != null ) { fEnabledImage . dispose ( ) ; fEnabledImage = null ; } if ( fDisabledImage != null ) { fDisabledImage . dispose ( ) ; fDisabledImage = null ; } super . dispose ( ) ; } protected void downloadRuby ( ) { try { getContainer ( ) . run ( true , true , new IRunnableWithProgress ( ) { public void run ( IProgressMonitor monitor ) throws InvocationTargetException , InterruptedException { if ( monitor == null ) monitor = new NullProgressMonitor ( ) ; download ( monitor ) ; if ( monitor . isCanceled ( ) ) return ; try { monitor . subTask ( "" ) ; Process p = Runtime . getRuntime ( ) . exec ( getSaveLocation ( ) ) ; int installerExit = p . waitFor ( ) ; if ( installerExit != 0 ) { UIJob job = new UIJob ( "" ) { @ Override public IStatus runInUIThread ( IProgressMonitor monitor ) { setErrorMessage ( NewWizardMessages . DownloadRubyWizardPage_ERR_Installer_exit_failure ) ; return Status . OK_STATUS ; } } ; job . setSystem ( true ) ; job . schedule ( ) ; return ; } fInstalledProperly = true ; } catch ( IOException e ) { setErrorMessage ( NewWizardMessages . DownloadRubyWizardPage_ERR_Launching_installer ) ; } } private void download ( | |
1,911 | <s> package fi . koku . services . utility . userinfo . v1 ; import java . net . URL ; import javax . xml . namespace . QName ; import javax . xml . ws . BindingProvider ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import fi . koku . services . utility . user . v1 . UserInfoService ; import fi . koku . services . utility . user . v1 . UserInfoServicePortType ; public class UserInfoServiceFactory { private String uid ; private String pwd ; private String endpointBaseUrl ; private final URL wsdlLocation = getClass ( ) . getClassLoader ( ) . getResource ( "" ) ; private static Logger log = LoggerFactory . getLogger ( UserInfoServiceFactory . class ) ; public UserInfoServiceFactory ( String uid , String pwd , String endpointBaseUrl ) { this . uid = uid ; this . pwd = pwd ; this . endpointBaseUrl = endpointBaseUrl ; } public UserInfoServicePortType getUserInfoService ( ) { if ( wsdlLocation == null ) log . error ( "" ) ; UserInfoService service = new UserInfoService ( wsdlLocation , new QName ( "" , "" ) | |
1,912 | <s> package com . asakusafw . dmdl . analyzer . driver ; import com . asakusafw . dmdl . model . AstBasicType ; import com . asakusafw . dmdl . model . AstType ; import com . asakusafw . dmdl . semantics . DmdlSemantics ; import | |
1,913 | <s> package net . sf . sveditor . core . parser ; import java . util . HashSet ; import java . util . Set ; import net . sf . sveditor . core . db . SVDBLocation ; import net . sf . sveditor . core . db . expr . SVDBBinaryExpr ; import net . sf . sveditor . core . db . expr . SVDBCycleDelayExpr ; import net . sf . sveditor . core . db . expr . SVDBExpr ; import net . sf . sveditor . core . db . expr . SVDBFirstMatchExpr ; import net . sf . sveditor . core . db . expr . SVDBIdentifierExpr ; import net . sf . sveditor . core . db . expr . SVDBLiteralExpr ; import net . sf . sveditor . core . db . expr . SVDBParenExpr ; import net . sf . sveditor . core . db . expr . SVDBPropertyCaseItem ; import net . sf . sveditor . core . db . expr . SVDBPropertyCaseStmt ; import net . sf . sveditor . core . db . expr . SVDBPropertyIfStmt ; import net . sf . sveditor . core . db . expr . SVDBPropertySpecExpr ; import net . sf . sveditor . core . db . expr . SVDBPropertyWeakStrongExpr ; import net . sf . sveditor . core . db . expr . SVDBRangeExpr ; import net . sf . sveditor . core . db . expr . SVDBSequenceClockingExpr ; import net . sf . sveditor . core . db . expr . SVDBSequenceCycleDelayExpr ; import net . sf . sveditor . core . db . expr . SVDBSequenceDistExpr ; import net . sf . sveditor . core . db . expr . SVDBSequenceMatchItemExpr ; import net . sf . sveditor . core . db . expr . SVDBSequenceRepetitionExpr ; import net . sf . sveditor . core . db . expr . SVDBUnaryExpr ; public class SVPropertyExprParser extends SVParserBase { public SVPropertyExprParser ( ISVParser parser ) { super ( parser ) ; } private static final Set < String > BinaryOpKW ; private static final Set < String > BinaryOp ; static { BinaryOpKW = new HashSet < String > ( ) ; BinaryOpKW . add ( "or" ) ; BinaryOpKW . add ( "and" ) ; BinaryOpKW . add ( "throughout" ) ; BinaryOpKW . add ( "until" ) ; BinaryOpKW . add ( "s_until" ) ; BinaryOpKW . add ( "until_with" ) ; BinaryOpKW . add ( "s_until_with" ) ; BinaryOpKW . add ( "implies" ) ; BinaryOpKW . add ( "iff" ) ; BinaryOp = new HashSet < String > ( ) ; BinaryOp . add ( "|->" ) ; BinaryOp . add ( "|=>" ) ; BinaryOp . add ( "#-#" ) ; BinaryOp . add ( "#-#" ) ; for ( String op : SVLexer . RelationalOps ) { BinaryOp . add ( op ) ; } } public SVDBExpr property_statement ( ) throws SVParseException { SVDBExpr ret ; if ( fLexer . peekKeyword ( "if" ) ) { ret = property_statement_if ( ) ; } else if ( fLexer . peekKeyword ( "case" ) ) { ret = property_stmt_case ( ) ; } else { SVDBExpr stmt = property_expr ( ) ; fLexer . readOperator ( ";" ) ; ret = stmt ; } return ret ; } public SVDBExpr property_expr ( ) throws SVParseException { SVDBExpr ret = null ; if ( fDebugEn ) { debug ( "" ) ; } if ( fLexer . peekKeyword ( "strong" , "weak" ) ) { SVDBPropertyWeakStrongExpr ws_expr = new SVDBPropertyWeakStrongExpr ( ) ; ws_expr . setLocation ( fLexer . getStartLocation ( ) ) ; String ws = fLexer . eatToken ( ) ; ws_expr . setIsWeak ( ws . equals ( "weak" ) ) ; fLexer . readOperator ( "(" ) ; ws_expr . setExpr ( fParsers . propertyExprParser ( ) . sequence_expr ( ) ) ; fLexer . readOperator ( ")" ) ; ret = ws_expr ; } else if ( fLexer . peekOperator ( "(" ) ) { fLexer . eatToken ( ) ; SVDBExpr p_expr = property_expr ( ) ; fLexer . readOperator ( ")" ) ; debug ( "inner expr: " + p_expr . getClass ( ) . getName ( ) ) ; if ( fLexer . peekOperator ( "," ) ) { SVDBSequenceMatchItemExpr match_expr = new SVDBSequenceMatchItemExpr ( ) ; match_expr . setExpr ( p_expr ) ; while ( fLexer . peekOperator ( "," ) ) { fLexer . eatToken ( ) ; match_expr . addMatchItemExpr ( sequence_match_item ( ) ) ; } ret = match_expr ; } else { ret = new SVDBParenExpr ( p_expr ) ; } } else if ( fLexer . peekKeyword ( "not" ) ) { SVDBUnaryExpr unary_expr = new SVDBUnaryExpr ( ) ; unary_expr . setLocation ( fLexer . getStartLocation ( ) ) ; fLexer . eatToken ( ) ; unary_expr . setOp ( "not" ) ; unary_expr . setExpr ( fParsers . propertyExprParser ( ) . property_expr ( ) ) ; ret = unary_expr ; } else if ( fLexer . peekKeyword ( "nexttime" , "s_nexttime" ) ) { } else if ( fLexer . peekKeyword ( "always" , "s_always" , "eventually" , "s_eventually" ) ) { } else if ( fLexer . peekKeyword ( "accept_on" , "reject_on" , "" , "" ) ) { } else if ( fLexer . peekKeyword ( "if" , "case" ) ) { ret = property_statement ( ) ; } else { ret = sequence_expr ( ) ; } if ( fLexer . peekKeyword ( BinaryOpKW ) || fLexer . peekOperator ( BinaryOp ) ) { String op = fLexer . eatToken ( ) ; if ( fDebugEn ) { debug ( "" + op ) ; } ret = new SVDBBinaryExpr ( ret , op , property_expr ( ) ) ; } else if ( fLexer . peekOperator ( "##" ) ) { String op = fLexer . eatToken ( ) ; ret = new SVDBBinaryExpr ( ret , op , sequence_expr ( ) ) ; if ( fLexer . peekKeyword ( BinaryOpKW ) || fLexer . peekOperator ( BinaryOp ) ) { op = fLexer . eatToken ( ) ; if ( fDebugEn ) { debug ( "" + op ) ; } ret = new SVDBBinaryExpr ( ret , op , property_expr ( ) ) ; } } if ( fDebugEn ) { debug ( "" ) ; } return ret ; } private SVDBExpr property_statement_if ( ) throws SVParseException { SVDBPropertyIfStmt stmt = new SVDBPropertyIfStmt ( ) ; stmt . setLocation ( fLexer . getStartLocation ( ) ) ; fLexer . readKeyword ( "if" ) ; fLexer . readOperator ( "(" ) ; stmt . setExpr ( expression_or_dist ( ) ) ; fLexer . readOperator ( ")" ) ; stmt . setIfExpr ( property_expr ( ) ) ; if ( fLexer . peekKeyword ( "else" ) ) { fLexer . eatToken ( ) ; stmt . setElseExpr ( property_expr ( ) ) ; } return stmt ; } private SVDBExpr property_stmt_case ( ) throws SVParseException { SVDBPropertyCaseStmt stmt = new SVDBPropertyCaseStmt ( ) ; stmt . setLocation ( fLexer . getStartLocation ( ) ) ; fLexer . readKeyword ( "case" ) ; fLexer . readOperator ( "(" ) ; stmt . setExpr ( expression_or_dist ( ) ) ; fLexer . readOperator ( ")" ) ; while ( fLexer . peek ( ) != null && ! fLexer . peekKeyword ( "endcase" ) ) { SVDBPropertyCaseItem case_item = property_stmt_case_item ( ) ; stmt . addItem ( case_item ) ; } fLexer . readKeyword ( "endcase" ) ; return stmt ; } private SVDBPropertyCaseItem property_stmt_case_item ( ) throws SVParseException { if ( fDebugEn ) { debug ( "" + fLexer . peek ( ) ) ; } SVDBPropertyCaseItem item = new SVDBPropertyCaseItem ( ) ; item . setLocation ( fLexer . getStartLocation ( ) ) ; if ( fLexer . peekKeyword ( "default" ) ) { fLexer . eatToken ( ) ; item . addExpr ( new SVDBIdentifierExpr ( "default" ) ) ; if ( fLexer . peekOperator ( ":" ) ) { fLexer . eatToken ( ) ; } } else { while ( fLexer . peek ( ) != null ) { item . addExpr ( expression_or_dist ( ) ) ; if ( fLexer . peekOperator ( "," ) ) { fLexer . eatToken ( ) ; } else { break ; } } fLexer . readOperator ( ":" ) ; } item . setStmt ( property_statement ( ) ) ; if ( fDebugEn ) { debug ( "" + fLexer . peek ( ) ) ; } return item ; } public SVDBExpr sequence_expr ( ) throws SVParseException { SVDBExpr expr = null ; if ( fDebugEn ) { debug ( "" ) ; } if ( fLexer . peekOperator ( | |
1,914 | <s> package com . asakusafw . compiler . tool . analysis ; import java . io . Closeable ; import java . io . IOException ; import java . io . OutputStream ; import java . io . OutputStreamWriter ; import java . io . PrintWriter ; import java . nio . charset . Charset ; import java . text . MessageFormat ; import java . util . Collection ; import java . util . List ; import java . util . Map ; import java . util . Set ; import java . util . UUID ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import com . asakusafw . compiler . batch . AbstractWorkflowProcessor ; import com . asakusafw . compiler . batch . WorkDescriptionProcessor ; import com . asakusafw . compiler . batch . Workflow ; import com . asakusafw . compiler . batch . processor . JobFlowWorkDescriptionProcessor ; import com . asakusafw . compiler . flow . jobflow . JobflowModel ; import com . asakusafw . compiler . flow . plan . FlowGraphUtil ; import com . asakusafw . utils . collections . Lists ; import com . asakusafw . utils . collections . Maps ; import com . asakusafw . utils . collections . Sets ; import com . asakusafw . utils . graph . Graph ; import com . asakusafw . utils . graph . Graphs ; import com . asakusafw . vocabulary . batch . BatchDescription ; import com . asakusafw . vocabulary . batch . JobFlowWorkDescription ; import com . asakusafw . vocabulary . batch . WorkDescription ; import com . asakusafw . vocabulary . flow . FlowDescription ; import com . asakusafw . vocabulary . flow . graph . FlowElement ; import com . asakusafw . vocabulary . flow . graph . FlowElementDescription ; import com . asakusafw . vocabulary . flow . graph . FlowGraph ; import com . asakusafw . vocabulary . flow . graph . FlowPartDescription ; import com . asakusafw . vocabulary . flow . graph . OperatorDescription ; import com . asakusafw . vocabulary . flow . graph . OperatorDescription . Declaration ; public class VisualizeOriginalStructureProcessor extends AbstractWorkflowProcessor { static final Logger LOG = LoggerFactory . getLogger ( VisualizeOriginalStructureProcessor . class ) ; static final Charset ENCODING = Charset . forName ( "UTF-8" ) ; public static final String NAIVE_PATH = Constants . PATH_BATCH + "" ; public static final String MERGED_PATH = Constants . PATH_BATCH + "" ; @ Override public Collection < Class < ? extends WorkDescriptionProcessor < ? > > > getDescriptionProcessors ( ) { List < Class < ? extends WorkDescriptionProcessor < ? > > > results = Lists . create ( ) ; results . add ( JobFlowWorkDescriptionProcessor . class ) ; return results ; } @ Override public void process ( Workflow workflow ) throws IOException { process ( workflow , NAIVE_PATH , false ) ; process ( workflow , MERGED_PATH , true ) ; } void process ( Workflow workflow , String path , boolean merged ) throws IOException { OutputStream output = getEnvironment ( ) . openResource ( path ) ; try { Context context = new Context ( output , merged ) ; context . put ( "digraph {" ) ; context . push ( ) ; context . put ( "" ) ; Class < ? extends BatchDescription > desc = workflow . getDescription ( ) . getClass ( ) ; String batchId = context . label ( desc , "Batch" , desc . getSimpleName ( ) ) ; dump ( context , batchId , workflow . getGraph ( ) ) ; context . pop ( ) ; context . put ( "}" ) ; context . close ( ) ; } finally { output . close ( ) ; } } private void dump ( Context context , String batchId , Graph < Workflow . Unit > graph ) { assert context != null ; assert graph != null ; for | |
1,915 | <s> package com . asakusafw . testdriver . core ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . io . IOException ; import java . util . Arrays ; import org . junit . Test ; import com . asakusafw . runtime . io . ModelOutput ; import com . asakusafw . testdriver . core . MockImporterPreparator . Desc ; import com . asakusafw . vocabulary . external . ImporterDescription ; public class SpiImporterPreparatorTest extends SpiTestRoot { private static | |
1,916 | <s> package com . mcbans . firestar . mcbans . org . json ; import java . util . Iterator ; public class HTTP { public static final String CRLF = "rn" ; public static JSONObject toJSONObject ( String string ) throws JSONException { JSONObject jo = new JSONObject ( ) ; HTTPTokener x = new HTTPTokener ( string ) ; String token ; token = x . nextToken ( ) ; if ( token . toUpperCase ( ) . startsWith ( "HTTP" ) ) { jo . put ( "HTTP-Version" , token ) ; jo . put ( "Status-Code" , x . nextToken ( ) ) ; jo . | |
1,917 | <s> package com . devtty . gat . rest ; import com . devtty . gat . model . Member ; import com . devtty . gat . data . MemberRepository ; import java . util . List ; import javax . enterprise . context . RequestScoped ; import javax . inject . Inject ; import javax . persistence . EntityManager ; import javax . ws | |
1,918 | <s> package org . rubypeople . rdt . internal . ui . search ; import java . util . ArrayList ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . core . runtime . IStatus ; import org . eclipse . core . runtime . Status ; import org . eclipse . jface . text . IDocument ; import org . eclipse . search . ui . ISearchQuery ; import org . eclipse . search . ui . ISearchResult ; import org . eclipse . search . ui . text . Match ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . internal . corext . util . Messages ; import org . rubypeople . rdt . internal . ui . dialogs | |
1,919 | <s> package org . rubypeople . eclipse . shams . debug . core ; import java . util . List ; import java . util . Map ; import java . util . Set ; import org . eclipse . core . resources . IFile ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IPath ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . debug . core . ILaunch ; import org . eclipse . debug . core . ILaunchConfiguration ; import org . eclipse . debug . core . ILaunchConfigurationType ; import org . eclipse . debug . core . ILaunchConfigurationWorkingCopy ; import org . eclipse . debug . core . ILaunchDelegate ; public class ShamLaunchConfiguration implements ILaunchConfiguration { public ShamLaunchConfiguration ( ) { super ( ) ; } public ILaunch launch ( String mode , IProgressMonitor monitor ) throws CoreException { return null ; } public boolean supportsMode ( String mode ) throws CoreException { throw new RuntimeException ( "" ) ; } public String getName ( ) { throw new RuntimeException ( "" ) ; } public IPath getLocation ( ) { throw new RuntimeException ( "" ) ; } public boolean exists ( ) { throw new RuntimeException ( "" ) ; } public int getAttribute ( String attributeName , int defaultValue ) throws CoreException { throw new RuntimeException ( "" ) ; } public String getAttribute ( String attributeName , String defaultValue ) throws CoreException { return defaultValue ; } public boolean getAttribute ( String attributeName , boolean defaultValue ) throws CoreException { throw new RuntimeException ( "" ) ; } public List getAttribute ( String attributeName , List defaultValue ) throws CoreException { throw new RuntimeException ( "" ) ; } public Map getAttribute ( | |
1,920 | <s> package org . rubypeople . rdt . refactoring . ui . pages . movemethod ; import org . eclipse . ltk . ui . refactoring . UserInputWizardPage ; import org . eclipse . swt . widgets . Composite ; import org . rubypeople . rdt . refactoring . core . movemethod . MoveMethodConfig ; public class SecondMoveMethodPage extends UserInputWizardPage { private static final String TITLE = Messages . SecondMoveMethodPage_Title ; private MoveMethodConfig config ; public | |
1,921 | <s> package com . asakusafw . compiler . flow . processor ; import com . asakusafw . compiler . common . TargetOperator ; import com . asakusafw . compiler . flow . DataClass ; import com . asakusafw . compiler . flow . DataClass . Property ; import com . asakusafw . compiler . flow . LinePartProcessor ; import com . asakusafw . utils . java . model . syntax . Expression ; import com . asakusafw . vocabulary . flow . graph . FlowElementPortDescription ; import com . asakusafw . vocabulary . operator . Project ; @ TargetOperator ( Project . class ) public class ProjectFlowProcessor extends LinePartProcessor { @ Override public void emitLinePart ( Context context ) { FlowElementPortDescription input = context . getInputPort ( Project . ID_INPUT ) ; FlowElementPortDescription output = context . getOutputPort ( Project . ID_OUTPUT ) ; DataObjectMirror cache = context . createModelCache ( output . getDataType ( ) ) ; context . setOutput ( cache . get ( ) ) ; DataClass sourceType = loadChecked ( input ) ; DataClass sinkType = loadChecked ( output ) ; if ( sourceType == null || sinkType == null ) { return ; } context . add ( cache . createReset ( ) ) ; Expression inputObject = context . getInput ( ) ; Expression outputObject = cache . get ( ) ; for | |
1,922 | <s> package com . asakusafw . compiler . operator . processor ; import static org . junit . Assert . * ; import org . junit . Test ; import com . asakusafw . compiler . operator . OperatorCompilerTestRoot ; import com . asakusafw . compiler . operator . model . MockFoo ; import com . asakusafw . compiler . operator . model . MockHoge ; import com . asakusafw . compiler . operator . model . MockJoined ; import com . asakusafw . utils . graph . Graph ; import com . asakusafw . vocabulary . flow . testing . MockIn ; import com . asakusafw . vocabulary . flow . testing . MockOut ; public class MasterJoinOperatorProcessorTest extends OperatorCompilerTestRoot { @ Test public void simple ( ) { add ( "" ) ; ClassLoader loader = start ( new MasterJoinOperatorProcessor ( ) ) ; Object factory = create ( loader , "" ) ; MockIn < MockHoge > a = MockIn . of ( MockHoge . class , "a" ) ; MockIn < MockFoo > b = MockIn . of ( MockFoo . class , "b" ) ; MockOut < MockJoined > joined = MockOut . of ( MockJoined . class , "joined" ) ; MockOut < MockFoo > missed = MockOut . of ( MockFoo . class , "missed" ) ; Object masterJoin = invoke ( factory , "example" , a , b ) ; joined . add ( output ( MockJoined . class , masterJoin , "joined" ) ) ; missed . add ( output ( MockFoo . class , masterJoin , "missed" ) ) ; Graph < String > graph = toGraph ( a , b ) ; assertThat | |
1,923 | <s> package com . team1160 . scouting . frontend . elements ; import java . util . Vector ; import javax . swing . JComboBox ; import javax . swing . JLabel ; public class NumberDropDownElement extends ScoutingElement { private static final long serialVersionUID = 3243698735620782166L ; private JLabel label ; private JComboBox dropDown ; private int bottom , top ; private String name ; public NumberDropDownElement ( String name , int bottom , int top ) { super ( ) ; if ( ! ( name . endsWith ( ":" ) ) ) { label = new JLabel ( name + ":" ) ; this . name = name + ":" ; } else { label = new JLabel ( name ) ; this . name = name ; } this . bottom = bottom ; this . top = top ; Vector < Integer > items = new Vector < Integer > ( ) ; for ( int i = bottom ; i <= top ; i ++ ) { items . add ( i ) ; } this . dropDown = new JComboBox ( items ) ; this . add ( this . label ) ; | |
1,924 | <s> package com . asakusafw . vocabulary . flow . graph ; import java . text . MessageFormat ; import com . asakusafw . vocabulary . flow . In ; public final class FlowIn < T > implements In < T > { private InputDescription description ; private | |
1,925 | <s> package net . sf . sveditor . core . tests ; import java . io . InputStream ; import java . util . ArrayList ; import java . util . List ; import org . eclipse . core . runtime . NullProgressMonitor ; import net . sf . sveditor . core . StringInputStream ; import net . sf . sveditor . core . db . index . ISVDBFileSystemChangeListener ; import net . sf . sveditor . core . db . index . ISVDBFileSystemProvider ; import net . sf . sveditor . core . db . index . SVDBLibIndex ; public class SVDBStringDocumentIndex extends SVDBLibIndex { public SVDBStringDocumentIndex ( final String input ) { super ( "STUB" , "ROOT" , new ISVDBFileSystemProvider ( ) { public InputStream openStream ( String path ) { if ( path . equals ( "ROOT" ) ) { return new StringInputStream ( input ) ; } else { return null ; } } public boolean fileExists ( String path ) { return path . equals ( "ROOT" ) ; } public boolean isDir ( String path ) { return false ; } public List < String > getFiles ( String path ) { return new ArrayList < String > ( ) ; } public void init ( String root ) { } public long getLastModifiedTime ( String path ) { return 0 ; } public String resolvePath ( String path , String fmt ) { return path ; } public void removeFileSystemChangeListener ( ISVDBFileSystemChangeListener l ) { } public void dispose ( ) { } | |
1,926 | <s> package org . rubypeople . rdt . internal . ui . util ; import org . eclipse . swt . graphics . FontMetrics ; import org . eclipse . swt . graphics . GC ; import org . eclipse . swt . widgets . Control ; import org . eclipse . jface . dialogs . Dialog ; public class PixelConverter { private FontMetrics fFontMetrics ; public PixelConverter ( Control control ) { GC gc = new GC ( control ) ; gc . setFont ( control . getFont ( ) ) ; fFontMetrics = gc . getFontMetrics ( ) ; gc . dispose ( ) ; } public int convertHeightInCharsToPixels ( int | |
1,927 | <s> package de . fuberlin . wiwiss . d2rq . algebra ; import java . util . HashMap ; import java . util . Map ; import junit . framework . TestCase ; public class AttributeTest extends TestCase { private final static RelationName table1 = new RelationName ( null , "table1" ) ; private final static RelationName table1b = new RelationName ( null , "table1" ) ; private final static RelationName table2 = new RelationName ( null , "table2" ) ; private final static RelationName xTable1 = new RelationName ( "x" , "table1" ) ; private final static RelationName xTable2 = new RelationName ( "x" , "table2" ) ; private final static RelationName yTable1 = new RelationName ( "y" , "table1" ) ; private final static Attribute fooCol1 = new Attribute ( null , "foo" , "col1" ) ; private final static Attribute fooCol2 = new Attribute ( null , "foo" , "col2" ) ; private final static Attribute barCol1 = new Attribute ( null , "bar" , "col1" ) ; private final static Attribute barCol2 = new Attribute ( null , "bar" , "col2" ) ; public void testAttributeNames ( ) { Attribute col = new Attribute ( null , "table" , "column" ) ; assertEquals ( "table.column" , col . qualifiedName ( ) ) ; assertNull ( col . schemaName ( ) ) ; assertEquals ( "table" , col . tableName ( ) ) ; assertEquals ( "column" , col . attributeName ( ) ) ; assertEquals ( new RelationName ( null , "table" ) , col . relationName ( ) ) ; } public void testAttributeNameWithSchema ( ) { Attribute column = new Attribute ( "schema" , "table" , "column" ) ; assertEquals ( "" , column . qualifiedName ( ) ) ; assertEquals ( "schema" , column . schemaName ( ) ) ; assertEquals ( "table" , column . tableName ( ) ) ; assertEquals ( "column" , column . attributeName ( ) ) ; assertEquals ( new RelationName ( "schema" , "table" ) , column . relationName ( ) ) ; } public void testAttributeEquality ( ) { Attribute col1 = new Attribute ( null , "table" , "col1" ) ; Attribute col1b = new Attribute ( null , "table" , "col1" ) ; Attribute col2 = new Attribute ( null , "table" , "col2" ) ; Attribute col3 = new Attribute ( null , "table2" , "col1" ) ; Integer other = new Integer ( 42 ) ; assertFalse ( col1 . equals ( col2 ) ) ; assertFalse ( col1 . equals ( col3 ) ) ; assertFalse ( col1 . equals ( other ) ) ; assertFalse ( col2 . equals ( col1 ) ) ; assertFalse ( col3 . equals ( col1 ) ) ; assertFalse ( other . equals ( col1 ) ) ; assertTrue ( col1 . equals ( col1b ) ) ; assertFalse ( col1 . equals ( null ) ) ; } public void testAttributeEqualityWithSchema ( ) { Attribute schema0 = new Attribute ( null , "table" , "column" ) ; Attribute schema1 = new Attribute ( "schema1" , "table" , "column" ) ; Attribute schema2 = new Attribute ( "schema2" , "table" , "column" ) ; Attribute schema2b = new Attribute ( "schema2" , "table" , "column" ) ; assertFalse ( schema0 . equals ( schema1 ) ) ; assertFalse ( schema1 . equals ( schema2 ) ) ; assertTrue ( schema2 . equals ( schema2b ) ) ; } public void testAttributeHashCode ( ) { Map < Attribute , String > map = new HashMap < Attribute , String > ( ) ; Attribute col1 = new Attribute ( null , "table" , "col1" ) ; Attribute col1b = new Attribute ( null , "table" , "col1" ) ; Attribute col2 = new Attribute ( null , "table" , "col2" ) ; Attribute col3 = new Attribute | |
1,928 | <s> package com . asakusafw . testdriver ; import java . text . MessageFormat ; import com . asakusafw . testdriver . core . ModelVerifier ; public class IdentityVerifier implements ModelVerifier < Object > | |
1,929 | <s> package org . oddjob . persist ; import java . io . IOException ; import java . io . ObjectInputStream ; import java . io . ObjectOutputStream ; import java . io . Serializable ; import org . oddjob . FailedToStopException ; import org . oddjob . Resetable ; import org . oddjob . Stateful ; import org . oddjob . Stoppable ; import org . oddjob . Structural ; import org . oddjob . arooa . deploy . annotations . ArooaComponent ; import org . oddjob . arooa . life . ComponentPersistException ; import org . oddjob . arooa . life . ComponentPersister ; import org . oddjob . framework . BasePrimary ; import org . oddjob . framework . ComponentBoundry ; import org . oddjob . framework . StopWait ; import org . oddjob . images . IconHelper ; import org . oddjob . images . StateIcons ; import org . oddjob . state . IsAnyState ; import org . oddjob . state . IsDone ; import org . oddjob . state . IsExecutable ; import org . oddjob . state . IsHardResetable ; import org . oddjob . state . IsSoftResetable ; import org . oddjob . state . IsStoppable ; import org . oddjob . state . ParentState ; import org . oddjob . state . ParentStateChanger ; import org . oddjob . state . ParentStateConverter ; import org . oddjob . state . ParentStateHandler ; import org . oddjob . state . State ; import org . oddjob . state . StateChanger ; import org . oddjob . state . StateEvent ; import org . oddjob . state . StateListener ; import org . oddjob . structural . ChildHelper ; import org . oddjob . structural . StructuralListener ; public class ArchiveJob extends BasePrimary implements Runnable , Serializable , Stoppable , Resetable , Stateful , Structural { private transient ParentStateHandler stateHandler ; private transient ParentStateChanger stateChanger ; private static final long serialVersionUID = 2010032500L ; private transient ChildHelper < Runnable > childHelper ; private Object archiveIdentifier ; private String archiveName ; private transient OddjobPersister archiver ; private volatile transient PersistingStateListener listener ; protected transient volatile boolean stop ; public ArchiveJob ( ) { completeConstruction ( ) ; } private void completeConstruction ( ) { stateHandler = new ParentStateHandler ( this ) ; childHelper = new ChildHelper < Runnable > ( this ) ; stateChanger = new ParentStateChanger ( stateHandler , iconHelper , new Persistable ( ) { @ Override public void persist ( ) throws ComponentPersistException { save ( ) ; } } ) ; } @ Override protected ParentStateHandler stateHandler ( ) { return stateHandler ; } protected StateChanger < ParentState > getStateChanger ( ) { return stateChanger ; } public final void run ( ) { ComponentBoundry . push ( loggerName ( ) , this ) ; try { if ( ! stateHandler . waitToWhen ( new IsExecutable ( ) , new Runnable ( ) { public void run ( ) { getStateChanger ( ) . setState ( ParentState . EXECUTING ) ; } } ) ) { return ; } logger ( ) . info ( "Executing." ) ; try { configure ( ) ; execute ( ) ; } catch ( final Throwable e ) { logger ( ) . error ( "" , e ) ; stateHandler . waitToWhen ( new IsAnyState ( ) , new Runnable ( ) { public void run ( ) { getStateChanger ( ) . setStateException ( e ) ; } } ) ; } logger ( ) . info ( "" ) ; } finally { ComponentBoundry . pop ( ) ; } } private class PersistingStateListener implements StateListener { private final Stateful child ; private final ComponentPersister componentPersister ; private volatile StateEvent event ; private volatile boolean reflect ; public PersistingStateListener ( Stateful child , ComponentPersister componentPersister ) { this . child = child ; this . componentPersister = componentPersister ; } void startReflecting ( ) { reflect = true ; reflectState ( ) ; } void reflectState ( ) { if ( event . getState ( ) . isDestroyed ( ) ) { stopListening ( event . getSource ( ) ) ; } else { stateHandler . waitToWhen ( new IsAnyState ( ) , new Runnable ( ) { public void run ( ) { if ( event . getState ( ) . isException ( ) ) { getStateChanger ( ) . setStateException ( event . getException ( ) ) ; } else { getStateChanger ( ) . setState ( new ParentStateConverter ( ) . toStructuralState ( event . getState ( ) ) ) ; } } } ) ; } } @ Override public void jobStateChange ( final StateEvent event ) { ComponentBoundry . push ( loggerName ( ) , this ) ; try { this . event = event ; if ( reflect ) { reflectState ( ) ; } if ( stop ) { return ; } State state = event . getState ( ) ; if ( new IsDone ( ) . test ( state ) ) { if ( ! stateHandler . waitToWhen ( new IsAnyState ( ) , new Runnable ( ) { public void run ( ) { logger ( ) . info ( "Archiving [" + event . getSource ( ) + "] as [" + archiveIdentifier + "] because " + event . getState ( ) + "." ) ; try { persist ( event . getSource ( ) ) ; } catch ( ComponentPersistException e ) { logger ( ) . error ( "" , e ) ; getStateChanger ( ) . setStateException ( e ) ; } } } | |
1,930 | <s> package com . asakusafw . dmdl . windgate . jdbc . driver ; import java . io . IOException ; import java . sql . PreparedStatement ; import java . sql . ResultSet ; import java . sql . SQLException ; import java . sql . Types ; import java . text . MessageFormat ; import java . util . Arrays ; import java . util . Calendar ; import java . util . Collections ; import java . util . EnumSet ; import java . util . List ; import java . util . Map ; import java . util . Set ; import java . util . TreeMap ; import org . apache . hadoop . io . Text ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import com . asakusafw . dmdl . java . emitter . EmitContext ; import com . asakusafw . dmdl . java . spi . JavaDataModelDriver ; import com . asakusafw . dmdl . model . BasicTypeKind ; import com . asakusafw . dmdl . semantics . ModelDeclaration ; import com . asakusafw . dmdl . semantics . PropertyDeclaration ; import com . asakusafw . dmdl . semantics . Type ; import com . asakusafw . dmdl . semantics . type . BasicType ; import com . asakusafw . runtime . value . Date ; import com . asakusafw . runtime . value . DateTime ; import com . asakusafw . runtime . value . DateUtil ; import com . asakusafw . utils . collections . Lists ; import com . asakusafw . utils . collections . Maps ; import com . asakusafw . utils . java . model . syntax . ClassDeclaration ; import com . asakusafw . utils . java . model . syntax . Expression ; import com . asakusafw . utils . java . model . syntax . ExpressionStatement ; import com . asakusafw . utils . java . model . syntax . FieldDeclaration ; import com . asakusafw . utils . java . model . syntax . FormalParameterDeclaration ; import com . asakusafw . utils . java . model . syntax . InfixOperator ; import com . asakusafw . utils . java . model . syntax . MethodDeclaration ; import com . asakusafw . utils . java . model . syntax . ModelFactory ; import com . asakusafw . utils . java . model . syntax . Name ; import com . asakusafw . utils . java . model . syntax . PostfixOperator ; import com . asakusafw . utils . java . model . syntax . SimpleName ; import com . asakusafw . utils . java . model . syntax . Statement ; import com . asakusafw . utils . java . model . syntax . TypeBodyDeclaration ; import com . asakusafw . utils . java . model . syntax . TypeParameterDeclaration ; import com . asakusafw . utils . java . model . syntax . WildcardBoundKind ; import com . asakusafw . utils . java . model . util . AttributeBuilder ; import com . asakusafw . utils . java . model . util . ExpressionBuilder ; import com . asakusafw . utils . java . model . util . JavadocBuilder ; import com . asakusafw . utils . java . model . util . Models ; import com . asakusafw . utils . java . model . util . TypeBuilder ; import com . asakusafw . windgate . core . vocabulary . DataModelJdbcSupport ; import com . asakusafw . windgate . core . vocabulary . DataModelJdbcSupport . DataModelPreparedStatement ; import com . asakusafw . windgate . core . vocabulary . DataModelJdbcSupport . DataModelResultSet ; public class JdbcSupportEmitter extends JavaDataModelDriver { static final Logger LOG = LoggerFactory . getLogger ( JdbcSupportEmitter . class ) ; public static final String CATEGORY_JDBC = "jdbc" ; @ Override public void generateResources ( EmitContext context , ModelDeclaration model ) throws IOException { if ( isTarget ( model ) == false ) { return ; } checkColumnExists ( model ) ; checkColumnType ( model ) ; checkColumnConflict ( model ) ; Name supportClassName = generateSupport ( context , model ) ; if ( hasTableTrait ( model ) ) { generateImporterDescription ( context , model , supportClassName ) ; generateExporterDescription ( context , model , supportClassName ) ; } } private Name generateSupport ( EmitContext context , ModelDeclaration model ) throws IOException { assert context != null ; assert model != null ; EmitContext next = new EmitContext ( context . getSemantics ( ) , context . getConfiguration ( ) , model , CATEGORY_JDBC , "" ) ; LOG . debug ( "" , context . getQualifiedTypeName ( ) . toNameString ( ) ) ; SupportGenerator . emit ( next , model ) ; LOG . debug ( "" , context . getQualifiedTypeName ( ) . toNameString ( ) , next . getQualifiedTypeName ( ) . toNameString ( ) ) ; return next . getQualifiedTypeName ( ) ; } private void generateImporterDescription ( EmitContext context , ModelDeclaration model , Name supportClassName ) throws IOException { assert context != null ; assert model != null ; EmitContext next = new EmitContext ( context . getSemantics ( ) , context . getConfiguration ( ) , model , CATEGORY_JDBC , "" ) ; LOG . debug ( "" , context . getQualifiedTypeName ( ) . toNameString ( ) ) ; DescriptionGenerator . emitImporter ( next , model , supportClassName ) ; LOG . debug ( "" , context . getQualifiedTypeName ( ) . toNameString ( ) , next . getQualifiedTypeName ( ) . toNameString ( ) ) ; } private void generateExporterDescription ( EmitContext context , ModelDeclaration model , Name supportClassName ) throws IOException { assert context != null ; assert model != null ; EmitContext next = new EmitContext ( context . getSemantics ( ) , context . getConfiguration ( ) , model , CATEGORY_JDBC , "" ) ; LOG . debug ( "" , context . getQualifiedTypeName ( ) . toNameString ( ) ) ; DescriptionGenerator . emitExporter ( next , model , supportClassName ) ; LOG . debug ( "" , context . getQualifiedTypeName ( ) . toNameString ( ) , next . getQualifiedTypeName ( ) . toNameString ( ) ) ; } private boolean isTarget ( ModelDeclaration model ) { assert model != null ; return hasTableTrait ( model ) || hasColumnTrait ( model ) ; } private boolean hasTableTrait ( ModelDeclaration model ) { assert model != null ; return model . getTrait ( JdbcTableTrait . class ) != null ; } private boolean hasColumnTrait ( ModelDeclaration model ) { assert model != null ; boolean sawTrait = false ; for ( PropertyDeclaration prop : model . getDeclaredProperties ( ) ) { if ( prop . getTrait ( JdbcColumnTrait . class ) != null ) { sawTrait = true ; } } return sawTrait ; } private void checkColumnExists ( ModelDeclaration model ) throws IOException { assert model != null ; if ( hasColumnTrait ( model ) == false ) { throw new IOException ( MessageFormat . format ( "" , model . getName ( ) . identifier , JdbcColumnDriver . TARGET_NAME ) ) ; } } private void checkColumnType ( ModelDeclaration model ) throws IOException { assert model != null ; for ( PropertyDeclaration prop : model . getDeclaredProperties ( ) ) { if ( model . getTrait ( JdbcColumnTrait . class ) == null ) { continue ; } Type type = prop . getType ( ) ; if ( ( type instanceof BasicType ) == false ) { throw new IOException ( MessageFormat . format ( "" , type , model . getName ( ) . identifier , prop . getName ( ) . identifier ) ) ; } } } private void checkColumnConflict ( ModelDeclaration model ) throws IOException { assert model != null ; Map < String , PropertyDeclaration > saw = Maps . create ( ) ; for ( PropertyDeclaration prop : model . getDeclaredProperties ( ) ) { JdbcColumnTrait trait = prop . getTrait ( JdbcColumnTrait . class ) ; if ( trait == null ) { continue ; } String name = trait . getName ( ) ; if ( saw . containsKey ( name ) ) { PropertyDeclaration other = saw . get ( name ) ; throw new IOException ( MessageFormat . format ( "" , name , model . getName ( ) . identifier , prop . getName ( ) . identifier , other . getName ( ) . identifier ) ) ; } saw . put ( name , prop ) ; } } private static final class SupportGenerator { private static final String NAME_CALENDAR = "calendar" ; private static final String NAME_DATETIME = "datetime" ; private static final String NAME_DATE = "date" ; private static final String NAME_TEXT = "text" ; private static final String NAME_RESULT_SET_SUPPORT = "" ; private static final String NAME_PREPARED_STATEMENT_SUPPORT = "" ; private static final String NAME_PROPERTY_POSITIONS = "" ; private static final String NAME_CREATE_VECTOR = "" ; private final EmitContext context ; private final ModelDeclaration model ; private final ModelFactory f ; private SupportGenerator ( EmitContext context , ModelDeclaration model ) { assert context != null ; assert model != null ; this . context = context ; this . model = model ; this . f = context . getModelFactory ( ) ; } static void emit ( EmitContext context , ModelDeclaration model ) throws IOException { assert context != null ; assert model != null ; SupportGenerator emitter = new SupportGenerator ( context , model ) ; emitter . emit ( ) ; } private void emit ( ) throws IOException { ClassDeclaration decl = f . newClassDeclaration ( new JavadocBuilder ( f ) . text ( "" , model . getName ( ) ) . linkType ( context . resolve ( model . getSymbol ( ) ) ) . text ( "." ) . toJavadoc ( ) , new AttributeBuilder ( f ) . Public ( ) . Final ( ) . toAttributes ( ) , context . getTypeName ( ) , Collections . < TypeParameterDeclaration > emptyList ( ) , null , Collections . singletonList ( f . newParameterizedType ( context . resolve ( DataModelJdbcSupport . class ) , context . resolve ( model . getSymbol ( ) ) ) ) , createMembers ( ) ) ; context . emit ( decl ) ; } private List < TypeBodyDeclaration > createMembers ( ) { List < TypeBodyDeclaration > results = Lists . create ( ) ; results . addAll ( createMetaData ( ) ) ; results . add ( createGetSupportedType ( ) ) ; results . add ( createIsSupported ( ) ) ; results . add ( createCreateResultSetSupport ( ) ) ; results . add ( createCreatePreparedStatementSupport ( ) ) ; results . add ( createCreatePropertyVector ( ) ) ; results . add ( createResultSetSupportClass ( ) ) ; results . add ( createPreparedStatementSupportClass ( ) ) ; return results ; } private List < TypeBodyDeclaration > createMetaData ( ) { List < TypeBodyDeclaration > results = Lists . create ( ) ; results . add ( f . newFieldDeclaration ( null , new AttributeBuilder ( f ) . Private ( ) . Static ( ) . Final ( ) . toAttributes ( ) , f . newParameterizedType ( context . resolve ( Map . class ) , context . resolve ( String . class ) , context . resolve ( Integer . class ) ) , f . newSimpleName ( NAME_PROPERTY_POSITIONS ) , null ) ) ; List < Statement > statements = Lists . create ( ) ; SimpleName map = f . newSimpleName ( "map" ) ; statements . add ( new TypeBuilder ( f , context . resolve ( TreeMap . class ) ) . parameterize ( context . resolve ( String . class ) , context . resolve ( Integer . class ) ) . newObject ( ) . toLocalVariableDeclaration ( f . newParameterizedType ( context . resolve ( Map . class ) , context . resolve ( String . class ) , context . resolve ( Integer . class ) ) , map ) ) ; List < PropertyDeclaration > properties = getProperties ( ) ; for ( int i = 0 , n = properties . size ( ) ; i < n ; i ++ ) { PropertyDeclaration property = properties . get ( i ) ; JdbcColumnTrait trait = property . getTrait ( JdbcColumnTrait . class ) ; assert trait != null ; statements . add ( new ExpressionBuilder ( f , map ) . method ( "put" , Models . toLiteral ( f , trait . getName ( ) ) , Models . toLiteral ( f , i ) ) . toStatement ( ) ) ; } statements . add ( new ExpressionBuilder ( f , f . newSimpleName ( NAME_PROPERTY_POSITIONS ) ) . assignFrom ( map ) . toStatement ( ) ) ; results . add ( f . newInitializerDeclaration ( null , new AttributeBuilder ( f ) . Static ( ) . toAttributes ( ) , f . newBlock ( statements ) ) ) ; return results ; } private MethodDeclaration createGetSupportedType ( ) { MethodDeclaration decl = f . newMethodDeclaration ( null , new AttributeBuilder ( f ) . annotation ( context . resolve ( Override . class ) ) . Public ( ) . toAttributes ( ) , f . newParameterizedType ( context . resolve ( Class . class ) , context . resolve ( model . getSymbol ( ) ) ) , f . newSimpleName ( "" ) , Collections . < FormalParameterDeclaration > emptyList ( ) , Arrays . asList ( new Statement [ ] { new TypeBuilder ( f , context . resolve ( model . getSymbol ( ) ) ) . dotClass ( ) . toReturnStatement ( ) } ) ) ; return decl ; } private MethodDeclaration createIsSupported ( ) { SimpleName columnNames = f . newSimpleName ( "columnNames" ) ; List < Statement > statements = Lists . create ( ) ; statements . add ( createNullCheck ( columnNames ) ) ; statements . add ( f . newIfStatement ( new ExpressionBuilder ( f , columnNames ) . method ( "isEmpty" ) . toExpression ( ) , f . newBlock ( f . newReturnStatement ( Models . toLiteral ( f , false ) ) ) ) ) ; statements . add ( f . newTryStatement ( f . newBlock ( new ExpressionBuilder ( f , f . newThis ( ) ) . method ( NAME_CREATE_VECTOR , columnNames ) . toStatement ( ) , new ExpressionBuilder ( f , Models . toLiteral ( f , true ) ) . toReturnStatement ( ) ) , Arrays . asList ( f . newCatchClause ( f . newFormalParameterDeclaration ( context . resolve ( IllegalArgumentException . class ) , f . newSimpleName ( "e" ) ) , f . newBlock ( new ExpressionBuilder ( f , Models . toLiteral ( f , false ) ) . toReturnStatement ( ) ) ) ) , null ) ) ; MethodDeclaration decl = f . newMethodDeclaration ( null , new AttributeBuilder ( f ) . annotation ( context . resolve ( Override . class ) ) . Public ( ) . toAttributes ( ) , context . resolve ( boolean . class ) , f . newSimpleName ( "isSupported" ) , Arrays . asList ( f . newFormalParameterDeclaration ( f . newParameterizedType ( context . resolve ( List . class ) , context . resolve ( String . class ) ) , columnNames ) ) , statements ) ; return decl ; } private MethodDeclaration createCreateResultSetSupport ( ) { SimpleName resultSet = f . newSimpleName ( "resultSet" ) ; SimpleName columnNames = f . newSimpleName ( "columnNames" ) ; List < Statement > statements = Lists . create ( ) ; statements . add ( createNullCheck ( resultSet ) ) ; statements . add ( createNullCheck ( columnNames ) ) ; SimpleName vector = f . newSimpleName ( "vector" ) ; statements . add ( new ExpressionBuilder ( f , f . newThis ( ) ) . method ( NAME_CREATE_VECTOR , columnNames ) . toLocalVariableDeclaration ( context . resolve ( int [ ] . class ) , vector ) ) ; statements . add ( new TypeBuilder ( f , f . newNamedType ( f . newSimpleName ( NAME_RESULT_SET_SUPPORT ) ) ) . newObject ( resultSet , vector ) . toReturnStatement ( ) ) ; MethodDeclaration decl = f . newMethodDeclaration ( null , new AttributeBuilder ( f ) . annotation ( context . resolve ( Override . class ) ) . Public ( ) . toAttributes ( ) , context . resolve ( f . newParameterizedType ( context . resolve ( DataModelResultSet . class ) , context . resolve ( model . getSymbol ( ) ) ) ) , f . newSimpleName ( "" ) , Arrays . asList ( f . newFormalParameterDeclaration ( context . resolve ( ResultSet . class ) , resultSet ) , f . newFormalParameterDeclaration ( f . newParameterizedType ( context . resolve ( List . class ) , context . resolve ( String . class ) ) , columnNames ) ) , statements ) ; return decl ; } private MethodDeclaration createCreatePreparedStatementSupport ( ) { SimpleName preparedStatement = f . newSimpleName ( "statement" ) ; SimpleName columnNames = f . newSimpleName ( "columnNames" ) ; List < Statement > statements = Lists . create ( ) ; statements . add ( createNullCheck ( preparedStatement ) ) ; statements . add ( createNullCheck ( columnNames ) ) ; SimpleName vector = f . newSimpleName ( "vector" ) ; statements . add ( new ExpressionBuilder ( f , f . newThis ( ) ) . method ( NAME_CREATE_VECTOR , columnNames ) . toLocalVariableDeclaration ( context . resolve ( int [ ] . class ) , vector ) ) ; statements . add ( new TypeBuilder ( f , f . newNamedType ( f . newSimpleName ( NAME_PREPARED_STATEMENT_SUPPORT ) ) ) . newObject ( preparedStatement , vector ) . toReturnStatement ( ) ) ; MethodDeclaration decl = f . newMethodDeclaration ( null , new AttributeBuilder ( f ) . annotation ( context . resolve ( Override . class ) ) . Public ( ) . toAttributes ( ) , context . resolve ( f . newParameterizedType ( context . resolve ( DataModelPreparedStatement . class ) , context . resolve ( model . getSymbol ( ) ) ) ) , f . newSimpleName ( "" ) , Arrays . asList ( f . newFormalParameterDeclaration ( context . resolve ( PreparedStatement . class ) , preparedStatement ) , f . newFormalParameterDeclaration ( f . newParameterizedType ( context . resolve ( List . class ) , context . resolve ( String . class ) ) , columnNames ) ) , statements ) ; return decl ; } private Statement createNullCheck ( SimpleName parameter ) { assert parameter != null ; return f . newIfStatement ( new ExpressionBuilder ( f , parameter ) . apply ( InfixOperator . EQUALS , Models . toNullLiteral ( f ) ) . toExpression ( ) , f . newBlock ( new TypeBuilder ( f , context . resolve ( IllegalArgumentException . class ) ) . newObject ( Models . toLiteral ( f , MessageFormat . format ( "" , parameter . getToken ( ) ) ) ) . toThrowStatement ( ) ) ) ; } private MethodDeclaration createCreatePropertyVector ( ) { SimpleName columnNames = f . newSimpleName ( "columnNames" ) ; SimpleName vector = f . newSimpleName ( "vector" ) ; List < Statement > statements = Lists . create ( ) ; statements . add ( new TypeBuilder ( f , context . resolve ( int [ ] . class ) ) . newArray ( new ExpressionBuilder ( f , f . newSimpleName ( NAME_PROPERTY_POSITIONS ) ) . method ( "size" ) . toExpression ( ) ) . toLocalVariableDeclaration ( context . resolve ( int [ ] . class ) , vector ) ) ; SimpleName index = f . newSimpleName ( "i" ) ; SimpleName column = f . newSimpleName ( "column" ) ; SimpleName position = f . newSimpleName ( "position" ) ; statements . add ( f . newForStatement ( f . newLocalVariableDeclaration ( new AttributeBuilder ( f ) . toAttributes ( ) , context . resolve ( int . class ) , Arrays . asList ( f . newVariableDeclarator ( index , Models . toLiteral ( f , 0 ) ) , f . newVariableDeclarator ( f . newSimpleName ( "n" ) , new ExpressionBuilder ( f , columnNames ) . method ( "size" ) . toExpression ( ) ) ) ) , new ExpressionBuilder ( f , index ) . apply ( InfixOperator . LESS , f . newSimpleName ( "n" ) ) . toExpression ( ) , f . newStatementExpressionList ( new ExpressionBuilder ( f , index ) . apply ( PostfixOperator . INCREMENT ) . toExpression ( ) ) , f . newBlock ( new Statement [ ] { new ExpressionBuilder ( f , columnNames ) . method ( "get" , index ) . toLocalVariableDeclaration ( context . resolve ( String . class ) , column ) , new ExpressionBuilder ( f , f . newSimpleName ( NAME_PROPERTY_POSITIONS ) ) . method ( "get" , column ) . toLocalVariableDeclaration ( context . resolve ( Integer . class ) , position ) , f . newIfStatement ( new ExpressionBuilder ( f , position ) . apply ( InfixOperator . EQUALS , Models . toNullLiteral ( f ) ) . apply ( InfixOperator . CONDITIONAL_OR , new ExpressionBuilder ( f , vector ) . array ( position ) . apply ( InfixOperator . NOT_EQUALS , Models . toLiteral ( f , 0 ) ) . toExpression ( ) ) . toExpression ( ) , f . newBlock ( new TypeBuilder ( f , context . resolve ( IllegalArgumentException . class ) ) . newObject ( column ) . toThrowStatement ( ) ) ) , new ExpressionBuilder ( f , vector ) . array ( position ) . assignFrom ( new ExpressionBuilder ( f , index ) . apply ( InfixOperator . PLUS , Models . toLiteral ( f , 1 ) ) . toExpression ( ) ) . toStatement ( ) } ) ) ) ; statements . add ( new ExpressionBuilder ( f , vector ) . toReturnStatement ( ) ) ; return f . newMethodDeclaration ( null , new AttributeBuilder ( f ) . Private ( ) . toAttributes ( ) , context . resolve ( context . resolve ( int [ ] . class ) ) , f . newSimpleName ( NAME_CREATE_VECTOR ) , Arrays . asList ( f . newFormalParameterDeclaration ( f . newParameterizedType ( context . resolve ( List . class ) , context . resolve ( String . class ) ) , columnNames ) ) , statements ) ; } private ClassDeclaration createResultSetSupportClass ( ) { SimpleName resultSet = f . newSimpleName ( "resultSet" ) ; SimpleName properties = f . newSimpleName ( "properties" ) ; List < TypeBodyDeclaration > members = Lists . create ( ) ; members . add ( createPrivateField ( ResultSet . class , resultSet , false ) ) ; members . add ( createPrivateField ( int [ ] . class , properties , false ) ) ; Set < BasicTypeKind > kinds = collectTypeKinds ( ) ; if ( kinds . contains ( BasicTypeKind . TEXT ) ) { members . add ( createPrivateField ( Text . class , f . newSimpleName ( NAME_TEXT ) , true ) ) ; } if ( kinds . contains ( BasicTypeKind . DATE ) ) { members . add ( createPrivateField ( Date . class , f . newSimpleName ( NAME_DATE ) , true ) ) ; } if ( kinds . contains ( BasicTypeKind . DATETIME ) ) { members . add ( createPrivateField ( DateTime . class , f . newSimpleName ( NAME_DATETIME ) , true ) ) ; } if ( kinds . contains ( BasicTypeKind . DATE ) || kinds . contains ( BasicTypeKind . DATETIME ) ) { members . add ( createCalendarBuffer ( ) ) ; } members . add ( f . newConstructorDeclaration ( null , new AttributeBuilder ( f ) . toAttributes ( ) , f . newSimpleName ( NAME_RESULT_SET_SUPPORT ) , Arrays . asList ( f . newFormalParameterDeclaration ( context . resolve ( ResultSet . class ) , resultSet ) , f . newFormalParameterDeclaration ( context . resolve ( int [ ] . class ) , properties ) ) , Arrays . asList ( mapField ( resultSet ) , mapField ( properties ) ) ) ) ; SimpleName object = f . newSimpleName ( "object" ) ; List < Statement > statements = Lists . create ( ) ; statements . add ( f . newIfStatement ( new ExpressionBuilder ( f , resultSet ) . method ( "next" ) . apply ( InfixOperator . EQUALS , Models . toLiteral ( f , false ) ) . toExpression ( ) , f . newBlock ( new ExpressionBuilder ( f , Models . toLiteral ( f , false ) ) . toReturnStatement ( ) ) ) ) ; List < PropertyDeclaration > declared = getProperties ( ) ; for ( int i = 0 , n = declared . size ( ) ; i < n ; i ++ ) { statements . add ( createResultSetSupportStatement ( object , resultSet , f . newArrayAccessExpression ( properties , Models . toLiteral ( f , i ) ) , declared . get ( i ) ) ) ; } statements . add ( new ExpressionBuilder ( f , Models . toLiteral ( f , true ) ) . toReturnStatement ( ) ) ; members . add ( f . newMethodDeclaration ( null , new AttributeBuilder ( f ) . annotation ( context . resolve ( Override . class ) ) . Public ( ) . toAttributes ( ) , Collections . < TypeParameterDeclaration > emptyList ( ) , context . resolve ( boolean . class ) , f . newSimpleName ( "next" ) , Arrays . asList ( f . newFormalParameterDeclaration ( context . resolve ( model . getSymbol ( ) ) , object ) ) , 0 , Arrays . asList ( context . resolve ( SQLException . class ) ) , f . newBlock ( statements ) ) ) ; return f . newClassDeclaration ( null , new AttributeBuilder ( f ) . Private ( ) . Static ( ) . Final ( ) . toAttributes ( ) , f . newSimpleName ( NAME_RESULT_SET_SUPPORT ) , null , Arrays . asList ( f . newParameterizedType ( context . resolve ( DataModelResultSet . class ) , context . resolve ( model . getSymbol ( ) ) ) ) , members ) ; } private Set < BasicTypeKind > collectTypeKinds ( ) { EnumSet < BasicTypeKind > kinds = EnumSet . noneOf ( BasicTypeKind . class ) ; for ( PropertyDeclaration prop : getProperties ( ) ) { kinds . add ( toBasicKind ( prop . getType ( ) ) ) ; } return kinds ; } private FieldDeclaration createCalendarBuffer ( ) { return f . newFieldDeclaration ( null , new AttributeBuilder ( f ) . Private ( ) . Final ( ) . toAttributes ( ) , context . resolve ( Calendar . class ) , f . newSimpleName ( NAME_CALENDAR ) , new TypeBuilder ( f , context . resolve ( Calendar . class ) ) . method ( "getInstance" ) . toExpression ( ) ) ; } private ClassDeclaration createPreparedStatementSupportClass ( ) { SimpleName preparedStatement = f . newSimpleName ( "statement" ) ; SimpleName properties = f . newSimpleName ( "properties" ) ; List < TypeBodyDeclaration > members = Lists . create ( ) ; members . add ( createPrivateField ( PreparedStatement . class , preparedStatement , false ) ) ; members . add ( createPrivateField ( int [ ] . class , properties , false ) ) ; Set < BasicTypeKind > kinds = collectTypeKinds ( ) ; if ( kinds . contains ( BasicTypeKind . DATE ) ) { members . add ( f . newFieldDeclaration ( null , new AttributeBuilder ( f ) . Private ( ) . Final ( ) . toAttributes ( ) , context . resolve ( java . sql . Date . class ) , f . newSimpleName ( NAME_DATE ) , new TypeBuilder ( f , context . resolve ( java . sql . Date . class ) ) . newObject ( Models . toLiteral ( f , 0L ) ) . toExpression ( ) ) ) ; } if ( kinds . contains ( BasicTypeKind . DATETIME ) ) { members . add ( f . newFieldDeclaration ( null , new AttributeBuilder ( f ) . Private ( ) . Final ( ) . toAttributes ( ) , context . resolve ( java . sql . Timestamp . class ) , f . newSimpleName ( NAME_DATETIME ) , new TypeBuilder ( f , context . resolve ( java . sql . Timestamp . class ) ) . newObject ( Models . toLiteral ( f , 0L ) ) . toExpression ( ) ) ) ; } if ( kinds . contains ( BasicTypeKind . DATE ) || kinds . contains ( BasicTypeKind . DATETIME ) ) { members . add ( createCalendarBuffer ( ) ) ; } members . add ( f . newConstructorDeclaration ( null , new AttributeBuilder ( f ) . toAttributes ( ) , f . newSimpleName ( NAME_PREPARED_STATEMENT_SUPPORT ) , Arrays . asList ( f . newFormalParameterDeclaration ( context . resolve ( PreparedStatement . class ) , preparedStatement ) , f . newFormalParameterDeclaration ( context . resolve ( int [ ] . class ) , properties ) ) , Arrays . asList ( mapField ( preparedStatement ) , mapField ( properties ) ) ) ) ; SimpleName object = f . newSimpleName ( "object" ) ; List < Statement > statements = Lists . create ( ) ; List < PropertyDeclaration > declared = getProperties ( ) ; for ( int i = 0 , n = declared . size ( ) ; i < n ; i ++ ) { statements . add ( createPreparedStatementSupportStatement ( object , preparedStatement , f . newArrayAccessExpression ( properties , Models . toLiteral ( f , i ) ) , declared . get ( i ) ) ) ; } members . add ( f . newMethodDeclaration ( null , new AttributeBuilder ( f ) . annotation ( context . resolve ( Override . class ) ) . Public ( ) . toAttributes ( ) , Collections . < TypeParameterDeclaration > emptyList ( ) , context . resolve ( void . class ) , f . newSimpleName ( "" ) , Arrays . asList ( f . newFormalParameterDeclaration ( context . resolve ( model . getSymbol ( ) ) , object ) ) , 0 , Arrays . asList ( context . resolve ( SQLException . class ) ) , f . newBlock ( statements ) ) ) ; return f . newClassDeclaration ( null , new AttributeBuilder ( f ) . Private ( ) . Static ( ) . Final ( ) . toAttributes ( ) , f . newSimpleName ( NAME_PREPARED_STATEMENT_SUPPORT ) , null , Arrays . asList ( f . newParameterizedType ( context . resolve ( DataModelPreparedStatement . class ) , context . resolve ( model . getSymbol ( ) ) ) ) , members ) ; } private Statement createResultSetSupportStatement ( Expression object , Expression resultSet , Expression position , PropertyDeclaration property ) { List < Statement > statements = Lists . create ( ) ; SimpleName value = f . newSimpleName ( "value" ) ; SimpleName calendar = f . newSimpleName ( NAME_CALENDAR ) ; SimpleName text = f . newSimpleName ( NAME_TEXT ) ; SimpleName date = f . newSimpleName ( NAME_DATE ) ; SimpleName datetime = f . newSimpleName ( NAME_DATETIME ) ; BasicTypeKind kind = toBasicKind ( property . getType ( ) ) ; switch ( kind ) { case INT : statements . add ( createResultSetMapping ( object , resultSet , position , property , "getInt" ) ) ; statements . add ( createResultSetNullMapping ( object , resultSet , property ) ) ; break ; case LONG : statements . add ( createResultSetMapping ( object , resultSet , position , property , "getLong" ) ) ; statements . add ( createResultSetNullMapping ( object , resultSet , property ) ) ; break ; case FLOAT : statements . add ( createResultSetMapping ( object , resultSet , position , property , "getFloat" ) ) ; statements . add ( createResultSetNullMapping ( object , resultSet , property ) ) ; break ; case DOUBLE : statements . add ( createResultSetMapping ( object , resultSet , position , property , "getDouble" ) ) ; statements . add ( createResultSetNullMapping ( object , resultSet , property ) ) ; break ; case BYTE : statements . add ( createResultSetMapping ( object , resultSet , position , property , "getByte" ) ) ; statements . add ( createResultSetNullMapping ( object , resultSet , property ) ) ; break ; case SHORT : statements . add ( createResultSetMapping ( object , resultSet , position , property , "getShort" ) ) ; statements . add ( createResultSetNullMapping ( object , resultSet , property ) ) ; break ; case BOOLEAN : statements . add ( createResultSetMapping ( object , resultSet , position , property , "getBoolean" ) ) ; statements . add ( createResultSetNullMapping ( object , resultSet , property ) ) ; break ; case DECIMAL : statements . add ( createResultSetMapping ( object , resultSet , position , property , "" ) ) ; break ; case TEXT : statements . add ( new ExpressionBuilder ( f , resultSet ) . method ( "getString" , position ) | |
1,931 | <s> package org . rubypeople . rdt . internal . core ; import java . util . HashSet ; import java . util . Iterator ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . IRubyElementDelta ; import org . rubypeople . rdt . core . IRubyProject ; import org . rubypeople . rdt . core . ISourceFolderRoot ; import org . rubypeople . rdt . core . RubyModelException ; public class ModelUpdater { HashSet projectsToUpdate = new HashSet ( ) ; protected void addToParentInfo ( Openable child ) { Openable parent = ( Openable ) child . getParent ( ) ; if ( parent != null && parent . isOpen ( ) ) { try { RubyElementInfo info = ( RubyElementInfo ) parent . getElementInfo ( ) ; info . addChild ( child ) ; } catch ( RubyModelException e ) { } } } protected static void close ( Openable element ) { try { element . close ( ) ; } catch ( RubyModelException e ) { } } protected void elementAdded ( Openable element ) { int elementType = element . getElementType ( ) ; if ( elementType == IRubyElement . RUBY_PROJECT ) { addToParentInfo ( element ) ; this . projectsToUpdate . add ( element ) ; } else { addToParentInfo ( element ) ; close ( element ) ; } switch ( elementType ) { case IRubyElement . SOURCE_FOLDER_ROOT : this . projectsToUpdate . add ( element . getRubyProject ( ) ) ; break ; case IRubyElement . SOURCE_FOLDER : RubyProject project = ( RubyProject ) element . getRubyProject ( ) ; project . resetCaches ( ) ; break ; } } protected void elementChanged ( Openable element ) { close ( element ) ; } protected void elementRemoved ( Openable element ) { if ( element . isOpen ( ) ) { close ( element ) ; } removeFromParentInfo ( element ) ; int elementType = element . getElementType ( ) ; switch ( elementType ) { case IRubyElement . RUBY_MODEL : break ; case IRubyElement . RUBY_PROJECT : RubyModelManager manager = RubyModelManager . getRubyModelManager ( ) ; RubyProject javaProject = ( RubyProject ) element ; manager . removePerProjectInfo ( javaProject ) ; manager . containerRemove ( javaProject ) ; break ; case IRubyElement . SOURCE_FOLDER_ROOT : this . projectsToUpdate . add ( element . getRubyProject ( ) ) ; break ; case IRubyElement . SOURCE_FOLDER : RubyProject project = ( RubyProject ) element . getRubyProject ( ) ; project . resetCaches ( ) ; break ; } } public void processRubyDelta ( IRubyElementDelta delta ) { try { this . traverseDelta ( delta , null , null ) ; Iterator iterator = this . projectsToUpdate . iterator ( ) ; while ( iterator . hasNext ( ) ) { RubyProject project = ( RubyProject ) iterator . next ( ) ; project . updateSourceFolderRoots ( ) ; } } finally { this . projectsToUpdate = new HashSet ( ) ; } } protected void removeFromParentInfo ( Openable child ) { Openable parent = ( Openable ) child . getParent ( ) ; if ( parent != null && parent . isOpen ( ) ) { try { RubyElementInfo info = ( RubyElementInfo | |
1,932 | <s> package de . fuberlin . wiwiss . d2rq . functional_tests ; import junit . framework . Test ; import junit . | |
1,933 | <s> package net . sf . sveditor . core . db ; public class SVDBTypeInfoClassItem extends SVDBTypeInfo { public SVDBParamValueAssignList fParamAssign ; public SVDBTypeInfoClassItem ( ) { this ( "" ) ; } public SVDBTypeInfoClassItem ( String name ) { super ( name , SVDBItemType . TypeInfoClassItem ) ; } public SVDBTypeInfoClassItem ( String name , SVDBItemType type ) { super ( name , type ) ; } public boolean hasParameters ( ) { return ( fParamAssign != null && fParamAssign . getParameters ( ) . size ( ) > 0 ) ; } public void setParamAssignList ( SVDBParamValueAssignList assign ) { fParamAssign = assign ; } public SVDBParamValueAssignList getParamAssignList ( ) { return fParamAssign ; } public void init_class_item ( SVDBTypeInfoClassItem item ) { setName ( item . getName | |
1,934 | <s> package com . lmax . disruptor . support ; import com . lmax . disruptor . BatchHandler ; import com . lmax . disruptor . collections . Histogram ; public final class LatencyStepHandler implements BatchHandler < ValueEntry > { private final FunctionStep functionStep ; private final Histogram histogram ; private final long nanoTimeCost ; public LatencyStepHandler ( final FunctionStep functionStep , final Histogram histogram , final long nanoTimeCost ) { this . functionStep = functionStep ; this . histogram = histogram ; this . nanoTimeCost = nanoTimeCost ; } @ Override public void onAvailable ( final ValueEntry entry ) throws Exception { switch ( functionStep ) { case ONE : case TWO : break ; case THREE : long duration = System . nanoTime | |
1,935 | <s> package org . rubypeople . rdt . internal . ui . preferences . formatter ; import java . util . ArrayList ; import java . util . Collection ; import java . util . Iterator ; import java . util . Map ; import java . util . Observable ; import java . util . Observer ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Control ; import org . eclipse . swt . widgets . Group ; import org . rubypeople . rdt . core . formatter . DefaultCodeFormatterConstants ; public class CommentsTabPage extends ModifyDialogTabPage { private final static class Controller implements Observer { private final Collection fMasters ; private final Collection fSlaves ; public Controller ( Collection masters , Collection slaves ) { fMasters = masters ; fSlaves = slaves ; for ( final Iterator iter = fMasters . iterator ( ) ; iter . hasNext ( ) ; ) { ( ( CheckboxPreference ) iter . next ( ) ) . addObserver ( this ) ; } update ( null , null ) ; } public void update ( Observable o , Object arg ) { boolean enabled = true ; for ( final Iterator iter = fMasters . iterator ( ) ; iter . hasNext ( ) ; ) { enabled &= ( ( CheckboxPreference ) iter . next ( ) ) . getChecked ( ) ; } for ( final Iterator iter = fSlaves . iterator ( ) ; iter . hasNext ( ) ; ) { final Object obj = iter . next ( ) ; if ( obj instanceof Preference ) { ( ( Preference ) obj ) . setEnabled ( enabled ) ; } else if ( obj instanceof Control ) { ( ( Group ) obj ) . setEnabled ( enabled ) ; } } } } private final static String PREVIEW = createPreviewHeader ( "" ) + "" + "#n" + "" + "#n" + "" + " #n" + " #n" + "" + | |
1,936 | <s> package org . oddjob . monitor . model ; import java . util . Observable ; import org . oddjob . logging . LogEvent ; import org . oddjob . logging . LogListener ; | |
1,937 | <s> package com . asakusafw . testdriver . rule ; import java . text . MessageFormat ; public class FloatRange implements ValuePredicate < Number > { private final double lowerBound ; private final double upperBound ; public FloatRange ( double lowerBound , double upperBound ) { this . lowerBound = lowerBound ; this . upperBound = upperBound ; } @ Override public | |
1,938 | <s> package com . loiane . test ; import static org . junit . Assert . assertEquals ; import static org . junit . Assert . assertNotNull ; import java . util . List ; import org . junit . AfterClass ; import org . junit . BeforeClass ; import org . junit . Test ; import com . loiane . dao . BlogDAO ; import com . | |
1,939 | <s> package org . rubypeople . rdt . refactoring . tests . core . extractmethod ; import java . io . FileNotFoundException ; import java . io . IOException ; import org . eclipse . jface . text . BadLocationException ; import org . rubypeople . rdt . refactoring . core . IRefactoringContext ; import org . rubypeople . rdt . refactoring . core . RefactoringContext ; import org . rubypeople . rdt . refactoring . core . extractmethod . ExtractMethodConditionChecker ; import org . rubypeople . rdt . refactoring . core . extractmethod . ExtractMethodConfig ; import org . rubypeople . rdt . refactoring . core . extractmethod . MethodExtractor ; import org . rubypeople . rdt . refactoring . nodewrapper . VisibilityNodeWrapper ; import org . rubypeople . rdt . refactoring . nodewrapper . VisibilityNodeWrapper . METHOD_VISIBILITY ; import org . rubypeople . rdt . refactoring . tests . FileTestCase ; import org . rubypeople . rdt . refactoring . tests . FileTestData ; public class ExtractMethodTester extends FileTestCase { public ExtractMethodTester ( String fileName ) { super ( fileName ) ; } private VisibilityNodeWrapper . METHOD_VISIBILITY getVisibility ( FileTestData data ) { if ( ! data . hasProperty ( "visibility" ) ) { return METHOD_VISIBILITY . NONE ; } String v = data . getProperty ( "visibility" ) ; if ( v . equals ( "public" ) ) { return METHOD_VISIBILITY . PUBLIC ; } else if ( v . equals ( "protected" ) ) { return METHOD_VISIBILITY . PROTECTED ; } else if ( v . equals ( "private" ) ) { return METHOD_VISIBILITY . PRIVATE ; } else { return METHOD_VISIBILITY . NONE ; } } | |
1,940 | <s> package org . rubypeople . rdt . internal . ui . browsing ; import org . eclipse . core . resources . IWorkspace ; import org . eclipse . core . runtime . IAdaptable ; import org . eclipse . jface . viewers . ISelection ; import org . eclipse . jface . viewers . IStructuredSelection ; import org . eclipse . ui . IWorkbenchWindow ; import org . eclipse . ui . actions . OpenInNewWindowAction ; import org . rubypeople . rdt . core . | |
1,941 | <s> package de . fuberlin . wiwiss . d2rq . dbschema ; import junit . framework . Test ; import junit . framework . TestSuite ; | |
1,942 | <s> package com . asakusafw . windgate . core ; import java . text . MessageFormat ; import java . util . Collections ; import java . util . Map ; import java . util . TreeMap ; import java . util . regex . Matcher ; import java . util . regex . Pattern ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; public class ParameterList { static final WindGateLogger WGLOG = new WindGateCoreLogger ( ParameterList . class ) ; static final Logger LOG = LoggerFactory . getLogger ( ParameterList . class ) ; private static final Pattern VARIABLE = Pattern . compile ( "\\$\\{(.*?)\\}" ) ; private final Map < String , String > parameters ; public ParameterList ( ) { this ( Collections . < String , String > emptyMap ( ) ) ; } public ParameterList ( Map < String , String > parameters ) { if ( parameters == null ) { throw new IllegalArgumentException ( "" ) ; } this . parameters = Collections . unmodifiableMap ( new TreeMap < String , String > ( parameters ) ) ; } public Map < String , String > getPairs ( ) { return parameters ; } public String replace ( String string , boolean strict ) { if ( string == null ) { throw new IllegalArgumentException ( "" ) ; } StringBuilder buf = new StringBuilder ( ) ; int start = 0 ; Matcher matcher = VARIABLE . matcher ( string ) ; while ( matcher . find ( start ) ) { String name = matcher . group ( 1 ) ; String replacement = parameters . get ( name ) ; if ( replacement == null ) { if ( strict ) { WGLOG . error ( "E99001" , name ) ; throw new IllegalArgumentException ( MessageFormat . format ( "" , name , this ) ) ; } else { buf . append | |
1,943 | <s> package org . oddjob . io ; import java . io . File ; import java . io . FileInputStream ; import junit . framework . TestCase ; import org . apache . commons . io . FileUtils ; import org . oddjob . Oddjob ; import org . oddjob . OurDirs ; import org . oddjob . arooa . xml . XMLConfiguration ; import org . oddjob . state . ParentState ; public class AppendTypeTest extends TestCase { File outputDir ; public void setUp ( ) throws Exception { | |
1,944 | <s> package og . android . tether . system ; import android . app . Application ; import android . bluetooth . BluetoothAdapter ; public class BluetoothService_eclair extends BluetoothService { BluetoothAdapter btAdapter = null ; public BluetoothService_eclair ( ) { super ( ) ; btAdapter = BluetoothAdapter . getDefaultAdapter ( ) ; } @ Override public boolean startBluetooth ( ) { boolean connected = false ; this . btAdapter . enable ( ) ; int checkcounter = 0 ; while ( connected == false && checkcounter <= 60 ) { connected = this . btAdapter . isEnabled ( ) ; if ( connected == false ) { checkcounter ++ ; try { Thread . sleep ( | |
1,945 | <s> package org . oddjob . schedules . units ; import java . util . Arrays ; import org . oddjob . arooa . convert . ConversionProvider ; import org . oddjob . arooa . convert . ConversionRegistry ; import org . oddjob . arooa . convert . Convertlet ; import org . oddjob . arooa . convert . ConvertletException ; public interface Month { public enum Months implements Month { JANUARY { @ Override public int getMonthNumber ( ) { return 1 ; } } , FEBRUARY { @ Override public int getMonthNumber ( ) { return 2 ; } } , MARCH { @ Override public int getMonthNumber ( ) { return 3 ; } } , APRIL { @ Override public int getMonthNumber ( ) { return 4 ; } } , MAY { @ Override public int getMonthNumber ( ) { return 5 ; } } , JUNE { @ Override public int getMonthNumber ( ) { return 6 ; } } , JULY { @ Override public int getMonthNumber ( ) { return 7 ; } } , AUGUST { @ Override public int getMonthNumber ( ) { return 8 ; } } , SEPTEMBER { @ Override public int getMonthNumber ( ) { return 9 ; } } , OCTOBER { @ Override public int getMonthNumber ( ) { return 10 ; } } , NOVEMBER { @ Override public int getMonthNumber ( ) { return 11 ; } } , DECEMBER { @ Override public int getMonthNumber ( ) { return 12 ; } } , } public static class Conversions implements ConversionProvider { @ Override public void registerWith ( ConversionRegistry registry ) { registry . register ( String . class , Month | |
1,946 | <s> package de . fuberlin . wiwiss . d2rq . sql . types ; import de . fuberlin . wiwiss . d2rq . sql . | |
1,947 | <s> package org . oddjob . jmx . handlers ; import java . io . Serializable ; import java . lang . reflect . UndeclaredThrowableException ; import java . util . ArrayList ; import java . util . Date ; import java . util . List ; import javax . management . InstanceNotFoundException ; import javax . management . MBeanAttributeInfo ; import javax . management . MBeanException ; import javax . management . MBeanNotificationInfo ; import javax . management . MBeanOperationInfo ; import javax . management . Notification ; import javax . management . NotificationListener ; import javax . management . ReflectionException ; import org . oddjob . Stateful ; import org . oddjob . framework . JobDestroyedException ; import org . oddjob . jmx . RemoteOperation ; import org . oddjob . jmx . client . ClientDestroyed ; import org . oddjob . jmx . client . ClientHandlerResolver ; import org . oddjob . jmx . client . ClientInterfaceHandlerFactory ; import org . oddjob . jmx . client . ClientSideToolkit ; import org . oddjob . jmx . client . Destroyable ; import org . oddjob . jmx . client . HandlerVersion ; import org . oddjob . jmx . client . SimpleHandlerResolver ; import org . oddjob . jmx . client . Synchronizer ; import org . oddjob . jmx . server . JMXOperationPlus ; import org . oddjob . jmx . server . ServerInterfaceHandler ; import org . oddjob . jmx . server . ServerInterfaceHandlerFactory ; import org . oddjob . jmx . server . ServerSideToolkit ; import org . oddjob . state . JobState ; import org . oddjob . state . State ; import org . oddjob . state . StateEvent ; import org . oddjob . state . StateListener ; public class StatefulHandlerFactory implements ServerInterfaceHandlerFactory < Stateful , Stateful > { public static final HandlerVersion VERSION = new HandlerVersion ( 2 , 0 ) ; public static final String STATE_CHANGE_NOTIF_TYPE = "" ; static final JMXOperationPlus < Notification [ ] > SYNCHRONIZE = new JMXOperationPlus < Notification [ ] > ( "" , "" , Notification [ ] . class , MBeanOperationInfo . INFO ) ; public Class < Stateful > interfaceClass ( ) { return Stateful . class ; } public MBeanAttributeInfo [ ] getMBeanAttributeInfo ( ) { return new MBeanAttributeInfo [ 0 ] ; } public MBeanOperationInfo [ ] getMBeanOperationInfo ( ) { return new MBeanOperationInfo [ ] { SYNCHRONIZE . getOpInfo ( ) , } ; } public MBeanNotificationInfo [ ] getMBeanNotificationInfo ( ) { MBeanNotificationInfo [ ] nInfo = new MBeanNotificationInfo [ ] { new MBeanNotificationInfo ( new String [ ] { STATE_CHANGE_NOTIF_TYPE } , Notification . class . getName ( ) , "" ) } ; return nInfo ; } public ServerInterfaceHandler createServerHandler ( Stateful stateful , ServerSideToolkit ojmb ) { ServerStateHandler stateHelper = new ServerStateHandler ( stateful , ojmb ) ; try { stateful . addStateListener ( stateHelper ) ; } catch ( JobDestroyedException e ) { stateHelper . jobStateChange ( stateful . lastStateEvent ( ) ) ; } return stateHelper ; } public ClientHandlerResolver < Stateful > clientHandlerFactory ( ) { return new SimpleHandlerResolver < Stateful > ( ClientStatefulHandlerFactory . class . getName ( ) , VERSION ) ; } public static class ClientStatefulHandlerFactory implements ClientInterfaceHandlerFactory < Stateful > { public Class < Stateful > interfaceClass ( ) { return Stateful . class ; } public HandlerVersion getVersion ( ) { return VERSION ; } public Stateful createClientHandler ( Stateful proxy , ClientSideToolkit toolkit ) { return new ClientStatefulHandler ( proxy , toolkit ) ; } } static class ClientStatefulHandler implements Stateful , Destroyable { private StateEvent lastEvent ; private final List < StateListener > listeners = new ArrayList < StateListener > ( ) ; private final ClientSideToolkit toolkit ; private final Stateful owner ; private Synchronizer synchronizer ; public ClientStatefulHandler ( Stateful owner , ClientSideToolkit toolkit ) { this . owner = owner ; this . toolkit = toolkit ; lastEvent = new StateEvent ( this . owner , JobState . READY , null ) ; } void jobStateChange ( StateData data ) { StateEvent newEvent = new StateEvent ( owner , data . getJobState ( ) , data . getDate ( ) , data . getThrowable ( ) ) ; lastEvent = newEvent ; List < StateListener > copy = null ; synchronized ( listeners ) { copy = new ArrayList < StateListener > ( listeners ) ; } for ( StateListener listener : copy ) { listener . jobStateChange ( newEvent ) ; } } public void addStateListener ( StateListener listener ) throws JobDestroyedException { synchronized ( this ) { if ( synchronizer == null ) { synchronizer = new Synchronizer ( new NotificationListener ( ) { public void handleNotification ( Notification notification , Object arg1 ) { StateData stateData = ( StateData ) notification . getUserData ( ) ; jobStateChange ( stateData ) ; } } ) ; toolkit . registerNotificationListener ( STATE_CHANGE_NOTIF_TYPE , synchronizer ) ; Notification [ ] lastNotifications = null ; try { lastNotifications = ( Notification [ ] ) toolkit . invoke ( SYNCHRONIZE ) ; } catch ( InstanceNotFoundException e ) { throw new JobDestroyedException ( owner ) ; } catch ( Throwable e ) { throw new UndeclaredThrowableException ( e ) ; } synchronizer . synchronize ( lastNotifications ) ; } if ( lastEvent . getState ( ) | |
1,948 | <s> package org . oddjob . monitor . action ; import junit . framework . TestCase ; import org . oddjob . Loadable ; import org . oddjob . monitor . model . MockExplorerContext ; import org . oddjob . util . MockThreadManager ; import org . oddjob . util . ThreadManager ; public class UnloadActionTest extends TestCase { private class OurLoadable implements Loadable { boolean loadable = false ; public boolean isLoadable ( ) { return loadable ; } public void load ( ) { throw new RuntimeException ( "Unexpected." ) ; } @ Override public void unload ( ) { setLoadable ( true ) ; } void setLoadable ( boolean loadable ) { this . loadable = loadable ; } } class OurEContext extends MockExplorerContext { OurLoadable loadable = new OurLoadable ( ) ; @ Override public Object getThisComponent ( ) { return loadable ; } @ Override public ThreadManager getThreadManager ( ) { return new MockThreadManager ( ) { @ Override public void run ( Runnable runnable , String description ) { runnable . run ( ) ; } } ; } } public void testCycle | |
1,949 | <s> package org . rubypeople . rdt . internal . cheatsheets . webservice ; import org . eclipse . core . resources . IProject ; import org . eclipse . jface . action . Action ; import org . eclipse . jface . viewers . StructuredSelection ; import org . eclipse . jface . wizard . WizardDialog ; import org . eclipse . ui . PlatformUI ; import org . eclipse . ui . cheatsheets . ICheatSheetAction ; import org . eclipse | |
1,950 | <s> package org . rubypeople . rdt . internal . testunit . ui ; import java . util . ArrayList ; import java . util . Arrays ; import java . util . List ; import java . util . StringTokenizer ; public class TestUnitPreferencesConstants { public final static String DO_FILTER_STACK = TestunitPlugin . PLUGIN_ID + "" ; public final static String SHOW_ON_ERROR_ONLY = TestunitPlugin . PLUGIN_ID + "" ; public static final String PREF_ACTIVE_FILTERS_LIST = TestunitPlugin . PLUGIN_ID + "" ; public static final String PREF_INACTIVE_FILTERS_LIST = TestunitPlugin . PLUGIN_ID + "" ; private static String [ ] fgDefaultFilterPatterns = new String [ ] { "" , "" , "" , } ; private TestUnitPreferencesConstants ( ) { } public static List < String > createDefaultStackFiltersList ( ) { return Arrays . asList ( fgDefaultFilterPatterns ) ; } public static String serializeList ( String [ ] list ) { if ( list == null ) return "" ; StringBuffer buffer = new StringBuffer ( ) ; for ( int i = 0 ; i < list . length ; i ++ ) { if ( i > 0 ) buffer . append ( ',' ) ; buffer . append ( list [ i ] ) ; } return buffer . toString ( ) ; } public static String [ ] parseList ( String listString ) { List < String > | |
1,951 | <s> package org . rubypeople . rdt . refactoring . tests . core . inlinemethod ; import java . io . FileNotFoundException ; import java . io . IOException ; import org . jruby . ast . MethodDefNode ; import org . rubypeople . rdt . refactoring . core . inlinemethod . MethodFinder ; import org . rubypeople . rdt . refactoring . core . inlinemethod . ParameterReplacer ; import org . rubypeople . rdt . refactoring . core . inlinemethod . SelectedCallFinder ; import org . rubypeople . rdt . refactoring . core . inlinemethod . TargetClassFinder ; import org . rubypeople . rdt . refactoring . documentprovider . IDocumentProvider ; import org . rubypeople . rdt . refactoring . nodewrapper . MethodCallNodeWrapper ; import org . rubypeople . rdt . refactoring . tests . FileTestData ; public class TC_ParameterReplacer extends FinderTestsBase { public TC_ParameterReplacer ( String fileName ) { super ( fileName ) ; } @ Override public | |
1,952 | <s> package com . aptana . rdt ; import java . io . File ; import java . io . IOException ; import java . net . URL ; import org . eclipse . core . runtime . FileLocator ; import org . eclipse . core . runtime . IPath ; import org . eclipse . core . runtime . Plugin ; public class AptanaRDTTests extends Plugin { private static AptanaRDTTests plugin ; public AptanaRDTTests ( ) { super ( ) ; plugin = this ; } public static File getFileInPlugin ( IPath path ) { try { URL installURL = new URL ( getDefault ( ) . getBundle ( ) . getEntry ( "/" ) , | |
1,953 | <s> package org . rubypeople . rdt . internal . launching ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IPath ; import org . rubypeople . rdt . core . ILoadpathContainer ; import org . rubypeople . rdt . core . IRubyProject ; import org . rubypeople . rdt . core . LoadpathContainerInitializer ; import org . rubypeople . rdt . core . RubyCore ; import org . rubypeople . rdt . launching . IVMInstall ; import org . rubypeople . rdt . launching . IVMInstallType ; import org . rubypeople . rdt . launching . RubyRuntime ; public class RubyContainerInitializer extends LoadpathContainerInitializer { @ Override public void initialize ( IPath containerPath , IRubyProject project ) throws CoreException { int size = containerPath . segmentCount ( ) ; if ( size > 0 ) { if ( containerPath . segment ( 0 ) . equals ( RubyRuntime . RUBY_CONTAINER ) ) { IVMInstall vm = resolveInterpreter | |
1,954 | <s> package net . sf . sveditor . core . tests . parser ; import net . sf . sveditor . core . SVCorePlugin ; import net . sf . sveditor . core . parser . SVParseException ; import junit . framework . TestCase ; public class TestParseSpecify extends TestCase { public void testSpecifyIf ( ) throws SVParseException { String testname = "" ; SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; String doc = "" + "" + " specifyn" + "" + "" + "" + "" + "" + " endmodulen" ; ParserTests . runTestStrDoc ( testname , doc , new String [ ] { "my_module" } ) ; } public void testSpecifyBlock ( ) throws SVParseException { String testname = "" ; String doc = "" + " input in;n" + "" + "n" + "" + "n" + " specifyn" + "" + " endspecifyn" + "endmodulen" ; SVCorePlugin . getDefault ( ) | |
1,955 | <s> package org . oddjob . describe ; import java . util . Map ; import org . oddjob . arooa . ArooaSession ; public class UniversalDescriber implements Describer { private final Describer [ ] describers ; public UniversalDescriber ( ArooaSession session ) { describers = new Describer | |
1,956 | <s> package org . springframework . social . google . api . plus . person ; public class ProfileURL { private String value ; private String type ; @ Override public String toString ( ) { | |
1,957 | <s> package org . oddjob . sql ; import java . sql . Connection ; import java . sql . PreparedStatement ; import java . sql . ResultSet ; import java . sql . SQLException ; import java . util . Date ; import org . oddjob . util . Clock ; public class SQLClock { public static final String DEFAULT_SQL = "" ; private String name ; private Connection connection ; private | |
1,958 | <s> package org . rubypeople . rdt . internal . ui . text ; import junit . framework . Test ; import junit . framework . TestSuite ; import org . rubypeople . rdt . internal . ui . text . ruby . TC_RubyTokenScanner ; public class TS_InternalUiText { public static Test suite ( ) { TestSuite suite = new TestSuite ( "" ) ; | |
1,959 | <s> package com . pogofish . jadt . emitter ; import static com . pogofish . jadt . ast . ASTConstants . NO_COMMENTS ; import static com . pogofish . jadt . ast . ArgModifier . _Final ; import static com . pogofish . jadt . ast . ArgModifier . _Transient ; import static com . pogofish . jadt . ast . ArgModifier . _Volatile ; import static com . pogofish . jadt . ast . JDTagSection . _JDTagSection ; import static com . pogofish . jadt . ast . JDToken . _JDAsterisk ; import static com . pogofish . jadt . ast . JDToken . _JDEOL ; import static com . pogofish . jadt . ast . JDToken . _JDTag ; import static com . pogofish . jadt . ast . JDToken . _JDWhiteSpace ; import static com . pogofish . jadt . ast . JDToken . _JDWord ; import static com . pogofish . jadt . ast . JavaComment . _JavaDocComment ; import static com . pogofish . jadt . ast . PrimitiveType . _BooleanType ; import static com . pogofish . jadt . ast . PrimitiveType . _ByteType ; import static com . pogofish . jadt . ast . PrimitiveType . _CharType ; import static com . pogofish . jadt . ast . PrimitiveType . _DoubleType ; import static com . pogofish . jadt . ast . PrimitiveType . _FloatType ; import static com . pogofish . jadt . ast . PrimitiveType . _IntType ; import static com . pogofish . jadt . ast . PrimitiveType . _LongType ; import static com . pogofish . jadt . ast . PrimitiveType . _ShortType ; import static com . pogofish . jadt . ast . RefType . _ArrayType ; import static com . pogofish . jadt . ast . RefType . _ClassType ; import static com . pogofish . jadt . ast . Type . _Primitive ; import static com . pogofish . jadt . ast . Type . _Ref ; import static com . pogofish . jadt . util . Util . list ; import static org . junit . Assert . assertEquals ; import org . junit . Test ; import com . pogofish . jadt . ast . Arg ; import com . pogofish . jadt . ast . ArgModifier ; import com . pogofish . jadt . ast . Constructor ; import com . pogofish . jadt . ast . RefType ; import com . pogofish . jadt . sink . StringSink ; import com . pogofish . jadt . util . Util ; public class ClassBodyEmitterTest { private static final String NO_ARG_NO_TYPES_FACTORY = "" + "" ; private static final String NO_ARG_TYPES_FACTORY = "" + "" + "" + "" ; private static final String ARGS_NO_TYPES_FACTORY = "" ; private static final String ARGS_TYPES_FACTORY = "" ; private static final String CONSTRUCTOR_METHOD = " /**n" + "" + " */n" + "" + "" + "n" + " /**n" + "" + " */n" + "" + "" + "" + " }" ; private static final String NO_ARG_TO_STRING = "" + "" + "" + " }" ; private static final String ONE_ARG_TO_STRING = "" + "" + "" + " }" ; private static final String ARGS_TO_STRING = "" + "" + "" + " }" ; private static final String NO_ARG_EQUALS = "" + "" + "" + "" + "" + "" + " }" ; private static final String ARGS_NO_TYPES_EQUALS = "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + " }" ; private static final String ARGS_TYPES_EQUALS = "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + " }" ; private static final String NO_ARG_HASHCODE = "" + "" + "" + " }" ; private static final String ARGS_HASHCODE = "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + " }" ; private final ClassBodyEmitter emitter = new StandardClassBodyEmitter ( ) ; public void testNonParameterizedTypeName ( ) { final StringSink sink = new StringSink ( "test" ) ; try { emitter . emitParameterizedTypeName ( sink , Util . < String > list ( ) ) ; } finally { sink . close ( ) ; } assertEquals ( "" , sink . result ( ) ) ; } public void testOneParameterizedTypeName ( ) { final StringSink sink = new StringSink ( "test" ) ; try { emitter . emitParameterizedTypeName ( sink , list ( "A" ) ) ; } finally { sink . close ( ) ; } assertEquals ( "<A>" , sink . result ( ) ) ; } public void testMultiParameterizedTypeName ( ) { final StringSink sink = new StringSink ( "test" ) ; try { emitter . emitParameterizedTypeName ( sink , list ( "A" , "B" , "C" ) ) ; } finally { sink . close ( ) ; } assertEquals ( "<A, B, C>" , sink . result ( ) ) ; } @ Test public void testNoArgNoTypesFactory ( ) { final Constructor constructor = new Constructor ( NO_COMMENTS , "Whatever" , Util . < Arg > list ( ) ) ; final StringSink sink = new StringSink ( "test" ) ; try { emitter . constructorFactory ( sink , "SomeDataType" , "SomeFactory" , Util . < String > list ( ) , constructor ) ; } finally { sink . close ( ) ; } assertEquals ( NO_ARG_NO_TYPES_FACTORY , sink . result ( ) ) ; } @ Test public void testNoArgTypesFactory ( ) { final Constructor constructor = new Constructor ( NO_COMMENTS , "Whatever" , Util . < Arg > list ( ) ) ; final StringSink sink = new StringSink ( "test" ) ; try { emitter . constructorFactory ( sink , "SomeDataType" , "SomeFactory" , list ( "A" , "B" ) , constructor ) ; } finally { sink . close ( ) ; } assertEquals ( NO_ARG_TYPES_FACTORY , sink . result ( ) ) ; } @ Test public void testArgsNoTypesFactory ( ) { final Constructor constructor = new Constructor ( NO_COMMENTS , "Foo" , list ( new Arg ( Util . < ArgModifier > list ( ) , _Ref ( _ClassType ( "Integer" , Util . < RefType > list ( ) ) ) , "yeah" ) , new Arg ( Util . < ArgModifier > list ( ) , _Ref ( _ClassType ( "String" , Util . < RefType > list ( ) ) ) , "hmmm" ) ) ) ; final StringSink sink = new StringSink ( "test" ) ; try { emitter . constructorFactory ( sink , "SomeDataType" , "SomeFactory" , Util . < String > list ( ) , constructor ) ; } finally { sink . close ( ) ; } assertEquals ( ARGS_NO_TYPES_FACTORY , sink . result ( ) ) ; } @ Test public void testArgsTypesFactory ( ) { final Constructor constructor = new Constructor ( NO_COMMENTS , "Foo" , list ( new Arg ( Util . < ArgModifier > list ( ) , _Ref ( _ClassType ( "Integer" , Util . < RefType > list ( ) ) ) , "yeah" ) , new Arg ( Util . < ArgModifier > list ( ) , _Ref ( _ClassType ( "String" , Util . < RefType > list ( ) ) ) , "hmmm" ) ) ) ; final StringSink sink = new StringSink ( "test" ) ; try { emitter . constructorFactory ( sink , "SomeDataType" , "SomeFactory" , list ( "A" , "B" ) , constructor ) ; } finally { sink . close ( ) ; } assertEquals ( ARGS_TYPES_FACTORY , sink . result ( ) ) ; } @ Test public void testConstructorMethod ( ) { final Constructor constructor = new Constructor ( list ( _JavaDocComment ( "/**" , list ( _JDEOL ( "n" ) ) , list ( _JDTagSection ( "@param" , list ( _JDWhiteSpace ( " " ) , _JDAsterisk ( ) , _JDWhiteSpace ( " " ) , _JDTag ( "@param" ) , _JDWhiteSpace ( " " ) , _JDWord ( "um" ) , _JDWhiteSpace ( " " ) , _JDWord ( "" ) , _JDEOL ( "n" ) , _JDWhiteSpace ( " " ) ) ) ) , "*/" ) ) , "Foo" , list ( new Arg ( Util . < ArgModifier > list ( ) , _Ref ( _ClassType ( "String" , Util . < RefType > list ( ) ) ) , "um" ) , new Arg ( Util . list ( _Final ( ) , _Transient ( ) , _Volatile ( ) ) , _Primitive ( _IntType ( ) ) , "yeah" ) ) ) ; final StringSink sink = new StringSink ( "test" ) ; try { emitter . emitConstructorMethod ( sink , " " , constructor ) ; } finally { sink . close ( ) ; } assertEquals ( CONSTRUCTOR_METHOD , sink . result ( ) ) ; } @ Test public void testNoArgToString ( ) { final Constructor constructor = new Constructor ( NO_COMMENTS , "Whatever" , Util . < Arg > list ( ) ) ; final StringSink sink = new StringSink ( "test" ) ; try { emitter . emitToString ( sink , " " , constructor ) ; } finally { sink . close ( ) ; } assertEquals ( NO_ARG_TO_STRING , sink . result ( ) ) ; } @ Test public void testOneArgToString ( ) { final Constructor constructor = new Constructor ( NO_COMMENTS , "Foo" , list ( new Arg ( Util . < ArgModifier > list ( ) , _Ref ( _ClassType ( "Integer" , Util . < RefType > list ( ) ) ) , "um" ) ) ) ; final StringSink sink = new StringSink ( "test" ) ; try { emitter . emitToString ( sink , " " , constructor ) ; } finally { sink . close ( ) ; } | |
1,960 | <s> package com . asakusafw . vocabulary . model ; import java . lang . annotation . Documented ; import java . lang . annotation . ElementType ; import java . lang . annotation . Retention ; import java . lang . annotation . RetentionPolicy ; import java . lang . annotation . Target ; @ Deprecated @ | |
1,961 | <s> package org . rubypeople . rdt . internal . corext . callhierarchy ; import java . util . Arrays ; import java . util . Comparator ; import java . util . HashMap ; import java . util . Map ; import org . eclipse . core . runtime . IProgressMonitor ; import org . jruby . ast . Node ; import org . rubypeople . rdt . core . IMethod ; import org . rubypeople . rdt . core . IRubyElement ; class CalleeMethodWrapper extends MethodWrapper { private Comparator fMethodWrapperComparator = new MethodWrapperComparator ( ) ; private static class MethodWrapperComparator implements Comparator { public int compare ( Object o1 , Object o2 ) { MethodWrapper m1 = ( MethodWrapper | |
1,962 | <s> package net . sf . sveditor . core . scanner ; import net . sf . sveditor . core . db . SVDBMacroDef ; public interface IPreProcMacroProvider { SVDBMacroDef findMacro | |
1,963 | <s> package org . rubypeople . rdt . internal . ui . dialogs ; import org . eclipse . swt . graphics . Point ; import org . eclipse . swt . graphics . Rectangle ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Control ; import org . eclipse . swt . widgets . Shell ; import org . eclipse . jface . dialogs . DialogSettings ; import org . eclipse . jface . dialogs . IDialogSettings ; import org . eclipse . jface . operation . IRunnableContext ; import org . eclipse . ui . PlatformUI ; import org . rubypeople . rdt . core . search . IRubySearchScope ; import org . rubypeople . rdt . ui . dialogs . TypeSelectionExtension ; import org . rubypeople . rdt . internal . ui . IRubyHelpContextIds ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; public class OpenTypeSelectionDialog2 extends TypeSelectionDialog2 { private IDialogSettings fSettings ; private Point fLocation ; private Point fSize ; private static final String DIALOG_SETTINGS = "" ; private static final String WIDTH = "width" ; private static final String HEIGHT = "height" ; public OpenTypeSelectionDialog2 ( Shell parent , boolean multi , IRunnableContext context , IRubySearchScope scope , int elementKinds ) { this ( parent , multi , context , scope , elementKinds , null ) ; } public OpenTypeSelectionDialog2 ( Shell parent , boolean multi , IRunnableContext context , IRubySearchScope scope , int elementKinds , TypeSelectionExtension extension ) { super ( parent , multi , context , scope , elementKinds , extension ) ; IDialogSettings settings = RubyPlugin . getDefault ( ) . getDialogSettings ( ) ; fSettings = settings . getSection ( DIALOG_SETTINGS ) ; if ( fSettings == null ) { fSettings = new DialogSettings ( DIALOG_SETTINGS ) ; settings . addSection ( fSettings ) ; fSettings . put ( WIDTH , 480 ) ; fSettings . put ( HEIGHT , 320 ) ; } } | |
1,964 | <s> package org . oddjob . schedules . schedules ; import java . text . DateFormat ; import java . text . ParseException ; import java . text . SimpleDateFormat ; import java . util . Calendar ; import java . util . Date ; import junit . framework . TestCase ; import org . oddjob . OddjobDescriptorFactory ; import org . oddjob . arooa . ArooaDescriptor ; import org . oddjob . arooa . ArooaParseException ; import org . oddjob . arooa . standard . StandardFragmentParser ; import org . oddjob . arooa . utils . DateHelper ; import org . oddjob . arooa . xml . XMLConfiguration ; import org . oddjob . schedules . Interval ; import org . oddjob . schedules . IntervalTo ; import org . oddjob . schedules . Schedule ; import org . oddjob . schedules . ScheduleContext ; import org . oddjob . schedules . ScheduleResult ; import org . oddjob . schedules . ScheduleRoller ; import org . oddjob . schedules . SimpleScheduleResult ; import org . oddjob . schedules . units . DayOfMonth ; import org . oddjob . schedules . units . DayOfWeek ; import org . oddjob . schedules . units . WeekOfMonth ; public class MonthlyScheduleTest extends TestCase { DateFormat checkFormat ; DateFormat inputFormat ; protected void setUp ( ) { checkFormat = new SimpleDateFormat ( "" ) ; inputFormat = new SimpleDateFormat ( "" ) ; } public void testFromAndTo ( ) throws ParseException { MonthlySchedule schedule = new MonthlySchedule ( ) ; schedule . setFromDay ( new DayOfMonth . Number ( 5 ) ) ; schedule . setToDay ( new DayOfMonth . Number ( 25 ) ) ; Date now1 = inputFormat . parse ( "" ) ; IntervalTo expected = new IntervalTo ( DateHelper . parseDate ( "2003-02-05" ) , DateHelper . parseDate ( "2003-02-26" ) ) ; Interval result = schedule . nextDue ( new ScheduleContext ( now1 ) ) ; assertEquals ( expected , result ) ; } public void testAfter ( ) throws ParseException { MonthlySchedule schedule = new MonthlySchedule ( ) ; schedule . setFromDay ( new DayOfMonth . Number ( 5 ) ) ; schedule . setToDay ( new DayOfMonth . Number ( 25 ) ) ; Date now1 = inputFormat . parse ( "" ) ; IntervalTo expected = new IntervalTo ( DateHelper . parseDateTime ( "2003-03-05" ) , DateHelper . parseDateTime ( "2003-03-26" ) ) ; Interval result = schedule . nextDue ( new ScheduleContext ( now1 ) ) ; assertEquals ( expected , result ) ; } public void testOverBoundry ( ) throws ParseException { MonthlySchedule schedule = new MonthlySchedule ( ) ; schedule . setFromDay ( new DayOfMonth . Number ( 25 ) ) ; schedule . setToDay ( new DayOfMonth . Number ( 5 ) ) ; Date now1 = inputFormat . parse ( "" ) ; IntervalTo expected = new IntervalTo ( DateHelper . parseDate ( "2003-02-25" ) , DateHelper . parseDate ( "2003-03-06" ) ) ; Interval result1 = schedule . nextDue ( new ScheduleContext ( now1 ) ) ; assertEquals ( expected , result1 ) ; Date now2 = inputFormat . parse ( "" ) ; Interval result2 = schedule . nextDue ( new ScheduleContext ( now2 ) ) ; assertEquals ( expected , result2 ) ; Date now3 = inputFormat . parse ( "" ) ; Interval result3 = schedule . nextDue ( new ScheduleContext ( now3 ) ) ; assertEquals ( expected , result3 ) ; } public void testLastDay ( ) throws ParseException { MonthlySchedule schedule = new MonthlySchedule ( ) ; schedule . setFromDay ( new DayOfMonth . Number ( 5 ) ) ; schedule . setToDay ( DayOfMonth . Shorthands . LAST ) ; Date now1 = inputFormat . parse ( "" ) ; Interval interval1 = schedule . nextDue ( new ScheduleContext ( now1 ) ) ; IntervalTo expected1 = new IntervalTo ( DateHelper . parseDateTime ( "2003-03-05" ) , DateHelper . parseDateTime ( "2003-04-01" ) ) ; assertTrue ( "" , interval1 . equals ( expected1 ) ) ; Interval interval2 = schedule . nextDue ( new ScheduleContext ( now1 ) ) ; IntervalTo expected2 = new IntervalTo ( DateHelper . parseDateTime ( "2003-03-05" ) , DateHelper . parseDateTime ( "2003-04-01" ) ) ; assertEquals ( expected2 , interval2 ) ; } public void testPenultimateDayOfMonth ( ) throws ParseException { MonthlySchedule schedule = new MonthlySchedule ( ) ; schedule . setFromDay ( new DayOfMonth . Number ( 5 ) ) ; schedule . setToDay ( DayOfMonth . Shorthands . PENULTIMATE ) ; ScheduleResult [ ] results = new ScheduleRoller ( schedule ) . resultsFrom ( DateHelper . parseDateTime ( "" ) ) ; ScheduleResult expected = new IntervalTo ( DateHelper . parseDateTime ( "2008-01-05" ) , DateHelper . parseDateTime ( "2008-01-31" ) ) ; assertEquals ( expected , results [ 0 ] ) ; expected = new IntervalTo ( DateHelper . parseDateTime ( "2008-02-05" ) , DateHelper . parseDateTime ( "2008-02-29" ) ) ; assertEquals ( expected , results [ 1 ] ) ; expected = new IntervalTo ( DateHelper . parseDateTime ( "2008-03-05" ) , DateHelper . parseDateTime ( "2008-03-31" ) ) ; assertEquals ( expected , results [ 2 ] ) ; expected = new IntervalTo ( DateHelper . parseDateTime ( "2008-04-05" ) , DateHelper . parseDateTime ( "2008-04-30" ) ) ; assertEquals ( expected , results [ 3 ] ) ; expected = new IntervalTo ( DateHelper . parseDateTime ( "2008-05-05" ) , DateHelper . parseDateTime ( "2008-05-31" ) ) ; assertEquals ( expected , results [ 4 ] ) ; } public void testLastDayOfMonthWithTimeOverMidnight ( ) throws ParseException { MonthlySchedule test = new MonthlySchedule ( ) ; test . setOnDay ( DayOfMonth . Shorthands . LAST ) ; TimeSchedule time = new TimeSchedule ( ) ; time . setFrom ( "23:00" ) ; time . setTo ( "01:00" ) ; test . setRefinement ( time ) ; ScheduleResult [ ] results = new ScheduleRoller ( test ) . resultsFrom ( DateHelper . parseDateTime ( "" ) ) ; ScheduleResult expected = new IntervalTo ( DateHelper . parseDateTime ( "" ) , DateHelper . parseDateTime ( "" ) ) ; assertEquals ( expected , results [ 0 ] ) ; expected = new IntervalTo ( DateHelper . parseDateTime ( "" ) , DateHelper . parseDateTime ( "" ) ) ; assertEquals ( expected , results [ 1 ] ) ; expected = new IntervalTo ( DateHelper . parseDateTime ( "" ) , DateHelper . parseDateTime ( "" ) ) ; assertEquals ( expected , results [ 2 ] ) ; expected = new IntervalTo ( DateHelper . parseDateTime ( "" ) , DateHelper . parseDateTime ( "" ) ) ; assertEquals ( expected , results [ 3 ] ) ; expected = new IntervalTo ( DateHelper . parseDateTime ( "" ) , DateHelper . parseDateTime ( "" ) ) ; assertEquals ( expected , results [ 4 ] ) ; results = new ScheduleRoller ( test ) . resultsFrom ( DateHelper . parseDateTime ( "" ) ) ; expected = new IntervalTo ( DateHelper . parseDateTime ( "" ) , DateHelper . parseDateTime ( "" ) ) ; assertEquals ( expected , results [ 0 ] ) ; expected = new IntervalTo ( DateHelper . parseDateTime ( "" ) , DateHelper . parseDateTime ( "" ) ) ; assertEquals ( expected , results [ 1 ] ) ; } public void testDefaultFrom ( ) throws ParseException { MonthlySchedule schedule = new MonthlySchedule ( ) ; schedule . setToDay ( new DayOfMonth . Number ( 25 ) ) ; Interval result = schedule . nextDue ( new ScheduleContext ( DateHelper . parseDate ( "2006-03-26" ) ) ) ; assertEquals ( new IntervalTo ( DateHelper . parseDateTime ( "" ) , DateHelper . parseDateTime ( "" ) ) , result ) ; } public void testDefaultTo ( ) throws ParseException { MonthlySchedule schedule = new MonthlySchedule ( ) ; schedule . setFromDay ( new DayOfMonth . Number ( 5 ) ) ; Interval result = | |
1,965 | <s> package com . asakusafw . dmdl . thundergate ; import java . util . Collection ; import java . util . Set ; import java . util . regex . Pattern ; import com . asakusafw . utils . collections . Sets ; public interface ModelMatcher { ModelMatcher ALL = new ModelMatcher ( ) { @ Override public boolean acceptModel ( String name ) { return true ; } } ; ModelMatcher NOTHING = new ModelMatcher ( ) { @ Override public boolean acceptModel ( String name | |
1,966 | <s> package com . asakusafw . runtime . configuration ; import java . io . File ; import java . io . FileInputStream ; import java . io . FileNotFoundException ; import java . io . FileOutputStream ; import java . io . IOException ; import java . io . InputStream ; import java . io . OutputStream ; import java . net . URI ; import java . net . URISyntaxException ; import java . net . URL ; import java . text . MessageFormat ; import java . util . zip . ZipEntry ; import java . util . zip . ZipInputStream ; import java . util . zip . ZipOutputStream ; import org . junit . rules . TemporaryFolder ; import org . junit . rules . TestRule ; import org . junit . runner . Description ; import org . junit . runners . model . Statement ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import com . asakusafw . runtime . stage . ToolLauncher ; public class FrameworkDeployer implements TestRule { static final Logger LOG = LoggerFactory . getLogger ( FrameworkDeployer . class ) ; final TemporaryFolder folder = new TemporaryFolder ( ) ; final boolean copyDefaults ; private File home ; private File work ; private File runtimeLib ; public FrameworkDeployer ( ) { this ( true ) ; } public FrameworkDeployer ( boolean copyDefaults ) { this . copyDefaults = copyDefaults ; } @ Override public Statement apply ( final Statement base , Description description ) { return new Statement ( ) { @ Override public void evaluate ( ) throws Throwable { folder . create ( ) ; try { createDirs ( ) ; if ( copyDefaults ) { deployMainDist ( ) ; deployTestDist ( ) ; deployRuntimeLibrary ( ) ; } deploy ( ) ; base . evaluate ( ) ; } finally { folder . delete ( ) ; } } } ; } void createDirs ( ) { home = folder . newFolder ( "home" ) ; work = folder . newFolder ( "work" ) ; } protected void deploy ( ) throws Throwable { return ; } void deployMainDist ( ) throws IOException { LOG . debug ( "" ) ; File source = new File ( "" ) ; if ( source . exists ( ) ) { copy ( source , getHome ( ) ) ; } else { LOG . debug ( "" , source . getAbsolutePath ( ) ) ; } } void deployTestDist ( ) throws IOException { LOG . debug ( "" ) ; File source = new File ( "" ) ; if ( source . exists ( ) ) { copy ( source , getHome ( ) ) ; } else { LOG . debug ( "" , source . getAbsolutePath ( ) ) ; } } void deployRuntimeLibrary ( ) throws IOException { LOG . debug ( "" ) ; runtimeLib = deployLibrary ( ToolLauncher . class , "" ) ; } public File deployLibrary ( Class < ? > memberClass , String targetPath ) throws IOException { File archive = findLibraryPathFromClass ( memberClass ) ; if ( archive == null ) { throw new IOException ( MessageFormat . format ( "" , targetPath ) ) ; } File target = new File ( getHome ( ) , targetPath ) ; deployLibrary ( archive , target ) ; return target ; } public File findLibraryPathFromClass ( Class < ? > aClass ) { if ( aClass == null ) { throw new IllegalArgumentException ( "" ) ; } int start = aClass . getName ( ) . lastIndexOf ( '.' ) + 1 ; String name = aClass . getName ( ) . substring ( start ) ; URL resource = aClass . getResource ( name + ".class" ) ; if ( resource == null ) { LOG . warn ( "" , aClass . getName ( ) ) ; return null ; } String protocol = resource . getProtocol ( ) ; if ( protocol . equals ( "file" ) ) { File file = new File ( resource . getPath ( ) ) ; return toClassPathRoot ( aClass , file ) ; } if ( protocol . equals ( "jar" ) ) { String path = resource . getPath ( ) ; return toClassPathRoot ( aClass , path ) ; } else { LOG . warn ( "" , resource , aClass . getName ( ) ) ; return null ; } } private File toClassPathRoot ( Class < ? > aClass , File classFile ) { assert aClass != null ; assert classFile | |
1,967 | <s> package org . oddjob . jmx ; import org . oddjob . jmx . handlers . DescribeableHandlerFactory ; import org . oddjob . jmx . handlers . DynaBeanHandlerFactory ; import org . oddjob . jmx . handlers . LogEnabledHandlerFactory ; import org . oddjob . jmx . handlers . LogPollableHandlerFactory ; import org . oddjob . jmx . handlers . ObjectInterfaceHandlerFactory ; import org . oddjob . jmx . handlers . RemoteOddjobHandlerFactory ; import org . oddjob . jmx . server . ServerInterfaceHandlerFactory ; public class SharedConstants { public static final String RETRIEVE_LOG_EVENTS_METHOD = "" ; public static final String RETRIEVE_CONSOLE_EVENTS_METHOD = "" ; public static final String TO_STRING_METHOD = "toString" ; public static final String GET_LOGGER_METHOD = "loggerName" ; public static final ServerInterfaceHandlerFactory < ? , ? > [ ] DEFAULT_SERVER_HANDLER_FACTORIES | |
1,968 | <s> package org . apache . camel . example . reportincident ; import org . apache . camel . CamelContext ; import org . apache . commons . logging . Log ; import org . apache . commons . logging . LogFactory ; import org . apache . cxf . jaxws . JaxWsProxyFactoryBean ; import org . junit . Test ; import org . springframework . beans . factory . annotation . Autowired ; import org . springframework . test . context . ContextConfiguration ; import org . springframework . test . context . junit4 . AbstractJUnit4SpringContextTests ; import static org . junit . Assert . | |
1,969 | <s> package logmx . parser ; import java . text . SimpleDateFormat ; import java . util . Date ; import com . lightysoft . logmx . business . ParsedEntry ; import com . lightysoft . logmx . mgr . LogFileParser ; public class GlassfishLogFileParser extends LogFileParser { private final static SimpleDateFormat DATE_FORMAT = new SimpleDateFormat ( "" ) ; private final static boolean DEBUG = false ; private boolean recordStarted = false ; private StringBuilder buffer = new StringBuilder ( ) ; @ Override protected void parseLine ( String s ) throws Exception { if ( s == null ) { return ; } if ( DEBUG ) { ParsedEntry entry = createNewEntry ( ) ; entry . setMessage ( s ) ; addEntry ( entry ) ; } if ( s . startsWith ( "[#|" ) || s . startsWith ( "#|" ) ) { recordStarted = true ; buffer . setLength ( 0 ) ; } if ( recordStarted ) { buffer . append ( s ) ; buffer . append ( "n" ) ; if ( s . endsWith ( | |
1,970 | <s> package org . rubypeople . rdt . internal . ui . wizards . dialogfields ; import org . eclipse . swt . SWT ; import org . eclipse . swt . events . ModifyEvent ; import org . eclipse . swt . events . ModifyListener ; import org . eclipse . swt . layout . GridData ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Control ; import org . eclipse . swt . widgets . Label ; import org . eclipse . swt . widgets . Text ; public class StringDialogField extends DialogField { private String fText ; private Text fTextControl ; private ModifyListener fModifyListener ; public StringDialogField ( ) { super ( ) ; fText = "" ; } public Control [ ] doFillIntoGrid ( Composite parent , int nColumns ) { assertEnoughColumns ( nColumns ) ; Label label = getLabelControl ( parent ) ; label . setLayoutData ( gridDataForLabel ( 1 ) ) ; Text text = getTextControl ( parent ) ; text . setLayoutData ( gridDataForText ( nColumns - 1 ) ) ; return new Control [ ] { label , text } ; } public int getNumberOfControls ( ) { return 2 ; } protected static GridData gridDataForText ( int span ) { GridData gd = new GridData ( ) ; | |
1,971 | <s> package org . rubypeople . rdt . internal . ui ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . runtime . IAdapterFactory ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . RubyCore ; public class ResourceAdapterFactory implements IAdapterFactory { private static Class [ ] PROPERTIES = new Class [ ] { IRubyElement | |
1,972 | <s> package org . springframework . social . quickstart . config ; import javax . sql . DataSource ; import org . springframework . beans . factory . annotation . Autowired ; import org . springframework . context . annotation . Bean ; import org . springframework . context . annotation . Configuration ; import org . springframework . context . annotation . Scope ; import org . springframework . context . annotation . ScopedProxyMode ; import org . springframework . core . env . Environment ; import org . springframework . security . crypto . encrypt . Encryptors ; import org . springframework . social . connect . ConnectionFactory ; import org . springframework . social . connect . ConnectionFactoryLocator ; import org . springframework . social . connect . ConnectionRepository ; import org . springframework . social . connect . NotConnectedException ; import org . springframework . social . connect . UsersConnectionRepository ; import org . springframework . social . connect . jdbc . JdbcUsersConnectionRepository ; import org . springframework . social . connect . support . ConnectionFactoryRegistry ; import org . springframework . social . connect . web . ProviderSignInController ; import org . springframework . social . google . api . Google ; import org . springframework . social . google . connect . GoogleConnectionFactory ; import org . springframework . social . quickstart . user . SecurityContext ; import org . springframework . social . quickstart . user . SimpleConnectionSignUp ; import org . springframework . social . quickstart . user . SimpleSignInAdapter ; import org . springframework . social . quickstart . user . User ; @ Configuration public class SocialConfig { @ Autowired private Environment environment ; @ Autowired private DataSource dataSource ; @ Bean public ConnectionFactoryLocator connectionFactoryLocator | |
1,973 | <s> package net . sf . sveditor . core . db . persistence ; import java . io . DataInput ; import java . io . DataOutput ; import java . util . List ; import java . util . Map ; import net . sf . sveditor . core . db . ISVDBChildItem ; import net . sf . sveditor . core . db . ISVDBChildParent ; import net . sf . sveditor . core . db . ISVDBItemBase ; import net . sf . sveditor . core . db . SVDBItemType ; import net . sf . sveditor . core . db . SVDBLocation ; @ SuppressWarnings ( "rawtypes" ) public interface ISVDBPersistenceRWDelegateParent { void init ( DataInput in ) ; void init ( DataOutput out ) ; void writeObject ( Class cls , Object obj ) throws DBWriteException ; void readObject ( ISVDBChildItem parent , Class cls , Object obj ) throws DBFormatException ; SVDBLocation readSVDBLocation ( ) throws DBFormatException ; String readString ( ) throws DBFormatException ; int readRawType ( ) throws DBFormatException ; Map < String , String > readMapStringString ( ) throws DBFormatException ; Map < String , List > readMapStringList ( Class val_c ) throws DBFormatException ; Map < String , Object > readMapStringObject ( Class val_c ) throws DBFormatException ; List < Long > readLongList ( ) throws DBFormatException ; List < Integer > readIntList ( ) throws DBFormatException ; List < String > readStringList ( ) throws DBFormatException ; List readObjectList ( ISVDBChildParent parent , Class val_c ) throws DBWriteException , DBFormatException ; byte [ ] readByteArray ( ) throws DBFormatException ; boolean readBoolean ( ) throws DBFormatException ; long readLong ( ) throws DBFormatException ; SVDBItemType readItemType ( ) throws DBFormatException ; ISVDBItemBase readSVDBItem ( ISVDBChildItem parent ) throws DBFormatException ; List readItemList ( ISVDBChildItem parent ) throws DBFormatException ; Enum readEnumType ( Class enum_type ) throws DBFormatException ; int readInt ( ) throws DBFormatException ; void writeBoolean ( boolean v ) throws DBWriteException ; void writeRawType ( int type ) throws DBWriteException ; void writeIntList ( List < Integer > items ) throws DBWriteException ; void writeMapStringString ( Map < String , String > map ) throws DBWriteException ; void writeMapStringList ( Map < String , List > map , Class list_c ) throws DBWriteException , DBFormatException ; void writeMapStringObject ( Map < String , Object > map , Class list_c ) throws DBWriteException , DBFormatException ; void writeStringList ( List < String > items ) throws DBWriteException ; void | |
1,974 | <s> package net . ggtools . grand . ui . widgets . property ; import java . io . FileInputStream ; import java . io . FileOutputStream ; import java . io . IOException ; import java . util . HashMap ; import java . util . Map ; import java . util . Properties ; import net . ggtools . grand . ui . widgets . ExceptionDialog ; import org . apache . commons . logging . Log ; import org . apache . commons . logging . LogFactory ; import org . eclipse . jface . viewers . CellEditor ; import org . eclipse . jface . viewers . ICellModifier ; import org . eclipse . jface . viewers . IStructuredContentProvider ; import org . eclipse . jface . viewers . IStructuredSelection ; import org . eclipse . jface . viewers . TableViewer ; import org . eclipse . jface . viewers . TextCellEditor ; import org . eclipse . jface . viewers . Viewer ; import org . eclipse . jface . viewers . ViewerSorter ; import org . eclipse . swt . SWT ; import org . eclipse . swt . events . SelectionAdapter ; import org . eclipse . swt . events . SelectionEvent ; import org . eclipse . swt . layout . GridData ; import org . eclipse . swt . layout . GridLayout ; import org . eclipse . swt . widgets . Button ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . FileDialog ; import org . eclipse . swt . widgets . Label ; import org . eclipse . swt . widgets . Table ; import org . eclipse . swt . widgets . TableColumn ; import org . eclipse . swt . widgets . TableItem ; public class PropertyEditor { private final class CellModifier implements ICellModifier { public boolean canModify ( final Object element , final String property ) { if ( columnExists ( property ) ) { final int columnNumber = getColumnNumber ( property ) ; switch ( columnNumber ) { case STATUS_COLUMN_NUM : return false ; default : return true ; } } return false ; } public Object getValue ( final Object element , final String property ) { if ( columnExists ( property ) && ( element instanceof PropertyPair ) ) { final int columnNumber = getColumnNumber ( property ) ; final PropertyPair pair = ( PropertyPair ) element ; switch ( columnNumber ) { case NAME_COLUMN_NUM : return pair . getName ( ) ; case VALUE_COLUMN_NUM : return pair . getValue ( ) ; } } return null ; } public void modify ( final Object element , final String property , final Object value ) { if ( columnExists ( property ) ) { final PropertyPair pair = ( PropertyPair ) ( ( TableItem ) element ) . getData ( ) ; if ( log . isDebugEnabled ( ) ) { log . debug ( "" + pair ) ; } final int columnNumber = getColumnNumber ( property ) ; switch ( columnNumber ) { case NAME_COLUMN_NUM : pair . setName ( value . toString ( ) ) ; propertyList . update ( pair ) ; break ; case VALUE_COLUMN_NUM : pair . setValue ( value . toString ( ) ) ; propertyList . update ( pair ) ; break ; } } } } private static final class PropertyListContentProvider implements IStructuredContentProvider , PropertyChangedListener { private static final Log log = LogFactory . getLog ( PropertyListContentProvider . class ) ; private PropertyList currentPropertyList ; private TableViewer tableViewer ; public void allPropertiesChanged ( final Object fillerParameter ) { tableViewer . getTable ( ) . getDisplay ( ) . asyncExec ( new Runnable ( ) { public void run ( ) { tableViewer . refresh ( ) ; } } ) ; } public void clearedProperties ( final Object fillerParameter ) { tableViewer . getTable ( ) . getDisplay ( ) . asyncExec ( new Runnable ( ) { public void run ( ) { tableViewer . refresh ( ) ; } } ) ; } public void dispose ( ) { | |
1,975 | <s> package org . rubypeople . rdt . refactoring . nodewrapper ; import java . util . ArrayList ; import java . util . Collection ; import org . jruby . ast . ArgsCatNode ; import org . jruby . ast . ArrayNode ; import org . jruby . ast . Node ; import org . jruby . ast . SplatNode ; import org . rubypeople . rdt . refactoring . core . NodeFactory ; import org . rubypeople . rdt . refactoring . util . NodeUtil ; public class CallArgsNodeWrapper implements INodeWrapper { private SplatNode splatNode ; private ArrayNode arrayNode ; private Node wrappedNode ; public CallArgsNodeWrapper ( Node node ) { wrappedNode = node ; if ( NodeUtil . nodeAssignableFrom ( node , ArrayNode . class ) ) { arrayNode = ( ArrayNode ) node ; } else if ( NodeUtil . nodeAssignableFrom ( node , SplatNode . class ) ) { splatNode = ( SplatNode ) node ; } else if ( NodeUtil . nodeAssignableFrom ( node , ArgsCatNode . class ) ) { ArgsCatNode argsCatNode = ( ArgsCatNode ) node ; arrayNode = ( ArrayNode ) argsCatNode . getFirstNode ( ) ; splatNode = ( SplatNode ) argsCatNode . getSecondNode ( ) ; } } public boolean hasSplatNode ( ) { return splatNode != null ; } public boolean hasArrayNode ( ) { return arrayNode != null ; } public Node cloneWithAddedArg ( Node addedArg ) { ArrayNode newArrayNode = getNewArrayNode ( addedArg ) ; if ( hasSplatNode ( ) ) { return | |
1,976 | <s> package org . oddjob . framework ; import java . beans . PropertyChangeListener ; import java . beans . PropertyChangeSupport ; import javax . swing . ImageIcon ; import org . apache . log4j . Logger ; import org . oddjob . Iconic ; import org . oddjob . Stateful ; import org . oddjob . arooa . ArooaConfigurationException ; import org . oddjob . arooa . ArooaException ; import org . oddjob . arooa . ArooaSession ; import org . oddjob . arooa . deploy . annotations . ArooaHidden ; import org . oddjob . arooa . life . ArooaContextAware ; import org . oddjob . arooa . life . ArooaLifeAware ; import org . oddjob . arooa . life . ArooaSessionAware ; import org . oddjob . arooa . life . ComponentPersistException ; import org . oddjob . arooa . parsing . ArooaContext ; import org . oddjob . arooa . runtime . RuntimeEvent ; import org . oddjob . arooa . runtime . RuntimeListenerAdaptor ; import org . oddjob . images . IconHelper ; import org . oddjob . images . IconListener ; import org . oddjob . state . IsAnyState ; import org . oddjob . state . StateEvent ; import org . oddjob . state . StateHandler ; import org . oddjob . state . StateListener ; public abstract class BaseComponent implements Iconic , Stateful , ArooaSessionAware , ArooaContextAware , PropertyChangeNotifier { private final PropertyChangeSupport propertyChangeSupport = new PropertyChangeSupport ( this ) ; protected final IconHelper iconHelper = new IconHelper ( this ) ; private ArooaSession session ; abstract protected StateHandler < ? > stateHandler ( ) ; @ Override @ ArooaHidden public void setArooaSession ( ArooaSession session ) { this . session | |
1,977 | <s> package net . sf . sveditor . doc . user ; import org . eclipse . core . runtime . Plugin ; import org . osgi . framework . BundleContext ; public class Activator extends Plugin { private static Activator fPlugin ; @ Override public void start ( BundleContext context ) throws Exception { super . start ( context ) ; fPlugin = this ; } @ Override public void stop ( BundleContext context ) throws Exception { fPlugin = | |
1,978 | <s> package com . team1160 . scouting . frontend . elements ; import java . awt . BorderLayout ; import java . awt . Component ; import javax . swing . JLabel ; import javax . swing . JScrollPane ; import javax . swing . JTextArea ; public class MultiLineInputElement extends ScoutingElement { private static final long serialVersionUID = - 1672197929657009689L ; private JLabel label ; private JScrollPane scrolling ; private JTextArea input ; String name ; protected boolean inComments ; public MultiLineInputElement ( String name ) { super ( ) ; this . inComments = false ; if ( ! ( name . endsWith ( ":" ) ) ) { label = new JLabel ( name + ":" ) ; this . name = name + ":" ; } else { label = new JLabel ( name ) ; this . name = name ; } this . input = new JTextArea ( ) ; this . scrolling = new JScrollPane ( this . input ) ; this . setLayout ( new BorderLayout ( ) ) ; this . label . setAlignmentX ( Component . LEFT_ALIGNMENT ) ; this . input . setAlignmentX ( Component . LEFT_ALIGNMENT ) ; this . add ( label , BorderLayout . WEST ) ; this . add ( scrolling , BorderLayout . CENTER ) ; } public String getText ( ) { return this . label . getText ( ) ; } public String getInput ( ) { return this . input . getText ( ) + "n" ; } public boolean isInComments ( ) { return inComments ; } public void setInComments ( boolean inComments ) { this . inComments = inComments ; } @ Override public boolean equals ( Object obj ) { if ( obj == null ) { return false ; } if ( getClass ( ) != obj . getClass | |
1,979 | <s> package test . modelgen . table . model ; import java . io . DataInput ; import java . io . DataOutput ; import java . io . IOException ; import javax . annotation . Generated ; import org . apache . hadoop . io . Text ; import org . apache . hadoop . io . Writable ; import com . asakusafw . runtime . value . DateTime ; import com . asakusafw . runtime . value . DateTimeOption ; import com . asakusafw . runtime . value . IntOption ; import com . asakusafw . runtime . value . LongOption ; import com . asakusafw . runtime . value . StringOption ; import com . asakusafw . vocabulary . model . DataModel ; import com . asakusafw . vocabulary . model . Property ; import com . asakusafw . vocabulary . model . TableModel ; @ Generated ( "" ) @ DataModel @ TableModel ( name = "" , columns = { "SID" , "VERSION_NO" , "TEXTDATA2" , "INTDATA2" , "DATEDATA2" , "RGST_DATE" , "UPDT_DATE" , "ERROR_CODE" } , primary = { } ) @ SuppressWarnings ( "deprecation" ) public class ImportTarget2Error implements Writable { @ Property ( name = "SID" ) private LongOption sid = new LongOption ( ) ; @ Property ( name = "VERSION_NO" ) private LongOption versionNo = new LongOption ( ) ; @ Property ( name = "TEXTDATA2" ) private StringOption textdata2 = new StringOption ( ) ; @ Property ( name = "INTDATA2" ) private IntOption intdata2 = new IntOption ( ) ; @ Property ( name = "DATEDATA2" ) private DateTimeOption datedata2 = new DateTimeOption ( ) ; @ Property ( name = "RGST_DATE" ) private DateTimeOption rgstDate = new DateTimeOption ( ) ; @ Property ( name = "UPDT_DATE" ) private DateTimeOption updtDate = new DateTimeOption ( ) ; @ Property ( name = "ERROR_CODE" ) private StringOption errorCode = new StringOption ( ) ; public long getSid ( ) { return this . sid . get ( ) ; } public void setSid ( long sid ) { this . sid . modify ( sid ) ; } public LongOption getSidOption ( ) { return this . sid ; } public void setSidOption ( LongOption sid ) { this . sid . copyFrom ( sid ) ; } public long getVersionNo ( ) { return this . versionNo . get ( ) ; } public void setVersionNo ( long versionNo ) { this . versionNo . modify ( versionNo ) ; } public LongOption getVersionNoOption ( ) { return this . versionNo ; } public void setVersionNoOption ( LongOption versionNo ) { this . versionNo . copyFrom ( versionNo ) ; } public Text getTextdata2 ( ) { return this . textdata2 . get ( ) ; } public void setTextdata2 ( Text textdata2 ) { this . textdata2 . modify ( textdata2 ) ; } public String getTextdata2AsString ( ) { return this . textdata2 . getAsString ( ) ; } public void setTextdata2AsString ( String textdata2 ) { this . textdata2 . modify ( textdata2 ) ; } public StringOption getTextdata2Option ( ) { return this . textdata2 ; } public void setTextdata2Option ( StringOption textdata2 ) { this . textdata2 . copyFrom ( textdata2 ) ; } public int getIntdata2 ( ) { return this . intdata2 . get ( ) ; } public void setIntdata2 ( int intdata2 ) { this . intdata2 . modify ( intdata2 ) ; } public IntOption getIntdata2Option ( ) { return this . intdata2 ; } public void setIntdata2Option ( IntOption intdata2 ) { this . intdata2 . copyFrom ( intdata2 ) ; } public DateTime getDatedata2 ( ) { return this . datedata2 . get ( ) ; } public void setDatedata2 ( DateTime datedata2 ) { this . datedata2 . modify ( datedata2 ) ; } public DateTimeOption getDatedata2Option ( ) { return this . datedata2 ; } public void setDatedata2Option ( DateTimeOption datedata2 ) { this . datedata2 . copyFrom ( datedata2 ) ; } public DateTime getRgstDate ( ) { return this . rgstDate . get ( ) ; } public void setRgstDate ( DateTime rgstDate ) { this . rgstDate . modify ( rgstDate ) ; } public DateTimeOption getRgstDateOption ( ) { return this . rgstDate ; } public void setRgstDateOption ( DateTimeOption rgstDate ) { this . rgstDate . copyFrom ( rgstDate ) ; } public DateTime getUpdtDate ( ) { return this . updtDate . get ( ) ; } public void setUpdtDate ( DateTime updtDate ) { this . updtDate . modify ( updtDate ) ; } public DateTimeOption getUpdtDateOption ( ) { return this . updtDate ; } | |
1,980 | <s> package org . rubypeople . rdt . internal . ui . search ; import org . eclipse . search . ui . text . Match ; public class RubyElementMatch extends Match { private int fAccuracy ; private int fMatchRule ; private boolean fIsWriteAccess ; private boolean fIsReadAccess ; private boolean fIsRubydoc ; RubyElementMatch ( Object element , int matchRule , | |
1,981 | <s> package org . oddjob . designer . components ; import junit . framework . TestCase ; import org . apache . log4j . Logger ; import org . oddjob . OddjobDescriptorFactory ; import org . oddjob . arooa . ArooaDescriptor ; import org . oddjob . arooa . ArooaParseException ; import org . oddjob . arooa . ArooaType ; import org . oddjob . arooa . design . DesignInstance ; import org . oddjob . arooa . design . DesignParser ; import org . oddjob . arooa . design . view . ViewMainHelper ; import org . oddjob . arooa . standard . StandardArooaSession ; import org . oddjob . arooa . xml . XMLConfiguration ; public class DeleteDCTest extends TestCase { private static final Logger logger = Logger . getLogger ( DeleteDCTest . class ) ; | |
1,982 | <s> package org . rubypeople . rdt . refactoring . core . renamefield . fielditems ; import org . jruby . ast . Node ; import org . jruby . ast . SymbolNode ; public class AttrFieldItem extends FieldItem { private SymbolNode | |
1,983 | <s> package net . sf . sveditor . ui . editor ; import org . eclipse . jface . text . BadLocationException ; import org . eclipse . jface . text . IDocument ; import org . eclipse . jface . text . IRegion ; import org . eclipse . jface . text . Region ; import org . eclipse . jface . text . source . ICharacterPairMatcher ; public class SVCharacterPairMatcher implements ICharacterPairMatcher { private final static char fPairs [ ] = { '{' , '}' , '<' , '>' , '[' , ']' , '(' , ')' } ; private IDocument fDocument ; private int fOffset ; private int fStartPos ; private int fEndPos ; private int fAnchor ; public void clear ( ) { } public void dispose ( ) { clear ( ) ; fDocument = null ; } public int getAnchor ( ) { return fAnchor ; } public IRegion match ( IDocument document , int offset ) { fOffset = offset ; if ( fOffset < 0 ) { return null ; } fDocument = document ; if ( fDocument != null && matchPairsAt ( ) && fStartPos != fEndPos ) { return new Region ( fStartPos , fEndPos - fStartPos + 1 ) ; } return null ; } private boolean matchPairsAt ( ) { int i ; int pairIndex1 = fPairs . length ; int pairIndex2 = fPairs . length ; fStartPos = - 1 ; fEndPos = - 1 ; try { char prevChar = fDocument . getChar ( Math . max ( fOffset - 1 , 0 ) ) ; for ( i = 0 ; i < fPairs . length ; i = i + 2 ) { if ( prevChar == fPairs [ i ] ) { fStartPos = fOffset - 1 ; pairIndex1 = i ; } } for ( i = 1 ; i < fPairs . length ; i = i + 2 ) { if ( prevChar == fPairs [ i ] ) { fEndPos = fOffset - 1 ; pairIndex2 = i ; } } if ( fEndPos > - 1 ) { fAnchor = RIGHT ; fStartPos = searchForOpeningPeer ( fEndPos , fPairs [ pairIndex2 - 1 ] , fPairs [ pairIndex2 ] ) ; if ( fStartPos > - 1 ) return true ; else fEndPos = - 1 ; } else if ( fStartPos > - 1 ) { fAnchor = LEFT ; fEndPos = searchForClosingPeer ( fStartPos , fPairs [ pairIndex1 ] , fPairs [ pairIndex1 + 1 ] ) ; if ( fEndPos > - 1 ) return true ; else fStartPos = - 1 ; } } catch ( BadLocationException x ) { } return false ; } private int searchForClosingPeer ( int start , char opening , char closing ) { try { int depth = 1 ; int fPos = start + 1 ; char fChar = 0 ; while ( true ) { while ( fPos < fDocument . getLength ( ) ) { fChar = fDocument . getChar ( fPos ) ; if ( fChar == '"' ) | |
1,984 | <s> package org . rubypeople . rdt . internal . ui . workingsets ; import org . eclipse . core . resources . IProject ; import org . eclipse . core . runtime . CoreException ; import org . rubypeople . rdt . core . IRubyModel ; import org . rubypeople . rdt . core . RubyModelException ; import org . rubypeople . rdt . ui . StandardRubyElementContentProvider ; class RubyWorkingSetPageContentProvider extends StandardRubyElementContentProvider { public boolean hasChildren ( Object element ) { if ( element instanceof IProject && ! ( ( IProject ) element ) . isAccessible ( ) ) return false ; return super . hasChildren ( element ) ; } public Object [ ] getChildren ( Object parentElement ) { try { if ( parentElement instanceof IRubyModel ) return concatenate | |
1,985 | <s> package com . asakusafw . compiler . operator ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . io . BufferedReader ; import java . io . IOException ; import java . io . InputStream ; import java . io . InputStreamReader ; import java . io . Reader ; import java . lang . reflect . Field ; import java . lang . reflect . Method ; import java . text . MessageFormat ; import java . util . Arrays ; import java . util . LinkedList ; import java . util . List ; import java . util . Set ; import javax . annotation . processing . Processor ; import javax . tools . Diagnostic ; import javax . tools . JavaFileObject ; import org . hamcrest . Matcher ; import org . hamcrest . Matchers ; import org . junit . After ; import com . asakusafw . utils . collections . Lists ; import com . asakusafw . utils . collections . Sets ; import com . asakusafw . utils . graph . Graph ; import com . asakusafw . utils . graph . Graphs ; import com . asakusafw . utils . java . jsr199 . testing . SafeProcessor ; import com . asakusafw . utils . java . jsr199 . testing . VolatileCompiler ; import com . asakusafw . utils . java . jsr199 . testing . VolatileJavaFile ; import com . asakusafw . utils . java . model . syntax . ModelFactory ; import com . asakusafw . utils . java . model . util . Models ; import com . asakusafw . vocabulary . flow . Source ; import com . asakusafw . vocabulary . flow . graph . FlowElement ; import com . asakusafw . vocabulary . flow . graph . FlowElementInput ; import com . asakusafw . vocabulary . flow . graph . FlowElementOutput ; import com . asakusafw . vocabulary . flow . graph . FlowIn ; import com . asakusafw . vocabulary . flow . graph . PortConnection ; import com . asakusafw . vocabulary . flow . testing . MockIn ; public class OperatorCompilerTestRoot { ModelFactory f = Models . getModelFactory ( ) ; private final VolatileCompiler compiler = new VolatileCompiler ( ) ; private final List < JavaFileObject > sources = Lists . create ( ) ; protected boolean dump = true ; @ After public void tearDown ( ) throws Exception { compiler . close ( ) ; } protected Object create ( ClassLoader loader , String name ) { try { Class < ? > loaded = loader . loadClass ( name ) ; return loaded . newInstance ( ) ; } catch ( Exception e ) { throw new AssertionError ( e ) ; } } protected Object invoke ( Object object , String name , Object ... arguments ) { try { for ( Method method : object . getClass ( ) . getMethods ( ) ) { if ( method . getName ( ) . equals ( name ) ) { return method . invoke ( object , arguments ) ; } } } catch ( Exception e ) { throw new AssertionError ( e ) ; } throw new AssertionError ( name ) ; } protected Object access ( Object object , String name ) { try { for ( Field field : object . getClass ( ) . getFields ( ) ) { if ( field . getName ( ) . equals ( name ) ) { return field . get ( object ) ; } } } catch ( Exception e ) { throw new AssertionError ( e ) ; } throw new AssertionError ( name ) ; } @ SuppressWarnings ( "unchecked" ) protected < T > Source < T > output ( Class < T > dataType , Object object , String name ) { try { for ( Field field : object . getClass ( ) . getFields ( ) ) { if ( field . getName ( ) . equals ( name ) ) { return ( Source < T > ) field . get ( object ) ; } } } catch ( Exception e ) { throw new AssertionError ( e ) ; } throw new AssertionError ( name ) ; } protected Matcher < ? super Set < String > > isJust ( String ... names ) { return Matchers . < Set < String > > is ( Sets . from ( names ) ) ; } protected Graph < | |
1,986 | <s> package org . epic . regexp . views ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . ui . actions . ActionFactory ; import org . eclipse . ui . part . * ; import org . eclipse . swt . graphics . Image ; import org . eclipse . jface . action . * ; import org . eclipse . jface . resource . ImageDescriptor ; import org . eclipse . ui . * ; import org . eclipse . swt . widgets . Menu ; import org . eclipse . swt . SWT ; import org . eclipse . swt . layout . GridData ; import org . eclipse . swt . layout . GridLayout ; import org . eclipse . swt . graphics . * ; import org . eclipse . swt . widgets . Label ; import org . eclipse . swt . widgets . Button ; import org . eclipse . swt . widgets . Display ; import org . eclipse . swt . custom . * ; import org . eclipse . swt . events . FocusListener ; import org . eclipse . swt . events . FocusEvent ; import org . epic . regexp . RegExpPlugin ; import java . io . BufferedReader ; import java . io . File ; import java . io . FileInputStream ; import java . io . IOException ; import java . io . InputStreamReader ; import java . util . * ; import gnu . regexp . RE ; import gnu . regexp . REMatch ; import gnu . regexp . REException ; public class RegExpView extends ViewPart { class focusListener implements FocusListener { public void focusGained ( FocusEvent e ) { activeInput = e . getSource ( ) ; } public void focusLost ( FocusEvent e ) { } } ; class DebugInfo { private RE re ; private List subexpressions = new ArrayList ( ) ; private List bracketsInRegexp = new ArrayList ( ) ; private List allMatches = new ArrayList ( ) ; private String input ; private String regexp ; private String matchString ; private boolean matchesInitialized = false ; private int matchingBracketsCount = 0 ; int eflags = 0 ; public DebugInfo ( ) { } public void setInput ( String input ) { this . input = input ; } public void setRegexp ( String regexp ) { this . regexp = regexp ; } public void setMatchString ( String match ) { this . matchString = match ; } public String getInput ( ) { return input ; } public String getRegExp ( ) { return regexp ; } public String getMatchString ( ) { return matchString ; } public void addBracketPosition ( int start , int end ) { bracketsInRegexp . add ( new SubexpressionPos ( start , end ) ) ; } public void addSubexpressionPosition ( int start , int end ) { subexpressions . add ( new SubexpressionPos ( start , end ) ) ; } public SubexpressionPos getSubexpressionPosition ( int index ) { return ( SubexpressionPos ) subexpressions . get ( index ) ; } public int getSubexpressionCount ( ) { return subexpressions . size ( ) ; } public REMatch [ ] getMatches ( int index ) { int checkEflags = 0 ; if ( ignoreCaseCheckBox . getSelection ( ) ) { checkEflags |= RE . REG_ICASE ; } if ( multilineCheckBox . getSelection ( ) ) { checkEflags |= RE . REG_MULTILINE ; } if ( ! matchesInitialized || eflags != checkEflags ) { eflags = checkEflags ; initMatches ( ) ; } return ( REMatch [ ] ) allMatches . toArray ( new REMatch [ 0 ] ) ; } public int geMatchingBracketsCount ( ) { return matchingBracketsCount ; } public void initMatches ( ) { String reg = null ; boolean found = false ; RE re = null ; this . allMatches . clear ( ) ; try { for ( int i = bracketsInRegexp . size ( ) - 1 ; i >= 0 ; i -- ) { SubexpressionPos pos = ( SubexpressionPos ) bracketsInRegexp . get ( i ) ; reg = regexp . substring ( 0 , pos . getEnd ( ) + 1 ) ; re = new RE ( reg , eflags ) ; if ( re . getAllMatches ( matchString ) . length > 0 ) { matchingBracketsCount = i + 1 ; found = true ; break ; } } if ( re != null && found ) { REMatch [ ] matches = re . getAllMatches ( matchString ) ; for ( int j = 0 ; j < matches . length ; j ++ ) { this . allMatches . add ( matches [ j ] ) ; } } } catch ( Exception e ) { e . printStackTrace ( ) ; } this . matchesInitialized = true ; } } ; class SubexpressionPos { int start ; int end ; public SubexpressionPos ( int start , int end ) { this . start = start ; this . end = end ; } private int getStart ( ) { return start ; } private int getEnd ( ) { return end ; } } ; private Composite panel ; private List colorTable = new ArrayList ( ) ; private Action validateAction , cutAction , copyAction , pasteAction ; private Action stopDebugAction , forwardDebugAction , backDebugAction ; private StyledText regExpText ; private StyledText matchText ; private Label resultImageLabel ; private Button ignoreCaseCheckBox , multilineCheckBox ; private Object activeInput = null ; private DebugInfo debugInfo = null ; private int debugPosition = 0 ; private static final String SHORTCUTS_RESOURCE_BUNDLE = "" ; public RegExpView ( ) { } public void createPartControl ( Composite parent ) { makeActions ( ) ; contributeToActionBars ( ) ; panel = new Composite ( parent , SWT . NULL ) ; buildColorTable ( ) ; GridLayout layout = new GridLayout ( ) ; layout . numColumns = 4 ; panel . setLayout ( layout ) ; GridData data = new GridData ( GridData . FILL_HORIZONTAL ) ; data . grabExcessHorizontalSpace = true ; panel . setLayoutData ( data ) ; data = new GridData ( GridData . FILL_HORIZONTAL ) ; data . horizontalSpan = 1 ; Label regExpLabel = new Label ( panel , SWT . NONE ) ; regExpLabel . setText ( "" ) ; regExpLabel . setLayoutData ( data ) ; data = new GridData ( GridData . FILL_HORIZONTAL ) ; data . horizontalSpan = 1 ; resultImageLabel = new Label ( panel , SWT . NONE ) ; resultUnknown ( ) ; resultImageLabel . setLayoutData ( data ) ; data = new GridData ( ) ; data . horizontalSpan = 1 ; ignoreCaseCheckBox = new Button ( panel , SWT . CHECK ) ; ignoreCaseCheckBox . setText ( "ignore case" ) ; ignoreCaseCheckBox . setLayoutData ( data ) ; data = new GridData ( ) ; data . horizontalSpan = 1 ; multilineCheckBox = new Button ( panel , SWT . CHECK ) ; multilineCheckBox . setText ( "multiline" ) ; multilineCheckBox . setLayoutData ( data ) ; data = new GridData ( GridData . FILL_HORIZONTAL ) ; data . horizontalSpan = 4 ; regExpText = new StyledText ( panel , SWT . BORDER ) ; regExpText . setLayoutData ( data ) ; regExpText . addFocusListener ( new focusListener ( ) ) ; data = new GridData ( GridData . FILL_HORIZONTAL ) ; data . horizontalSpan = 4 ; Label matchTextLabel = new Label ( panel , SWT . NONE ) ; matchTextLabel . setText ( "" ) ; matchTextLabel . setLayoutData ( data ) ; data = new GridData ( GridData . FILL_HORIZONTAL | GridData . FILL_VERTICAL ) ; data . horizontalSpan = 4 ; matchText = new StyledText ( panel , SWT . BORDER | SWT . H_SCROLL | SWT . V_SCROLL ) ; matchText . setLayoutData ( data ) ; matchText . addFocusListener ( new focusListener ( ) ) ; IActionBars bars = getViewSite ( ) . getActionBars ( ) ; bars . setGlobalActionHandler ( ActionFactory . CUT . getId ( ) , cutAction ) ; bars . setGlobalActionHandler ( ActionFactory . COPY . getId ( ) , copyAction ) ; bars . setGlobalActionHandler ( ActionFactory . PASTE . getId ( ) , pasteAction ) ; hookContextMenu ( ) ; } private void resultUnknown ( ) { setResultLabelImage ( RegExpImages . RESULT_GRAY , "" ) ; } private void hookContextMenu ( ) { MenuManager menuMgr = new MenuManager ( "#PopupMenu" ) ; menuMgr . setRemoveAllWhenShown ( true ) ; menuMgr . addMenuListener ( new IMenuListener ( ) { public void menuAboutToShow ( IMenuManager manager ) { fillContextMenu ( manager ) ; } } ) ; Menu menuRegExp = menuMgr . createContextMenu ( regExpText ) ; regExpText . setMenu ( menuRegExp ) ; Menu menuMatch = menuMgr . createContextMenu ( matchText ) ; matchText . setMenu ( menuMatch ) ; } private void fillContextMenu ( IMenuManager manager ) { manager . add ( cutAction ) ; manager . add ( copyAction ) ; manager . add ( pasteAction ) ; createShortcutsMenu ( manager ) ; manager . add ( new Separator ( "Additions" ) ) ; } private void buildColorTable ( ) { Display display = panel . getDisplay ( ) ; colorTable . add ( display . getSystemColor ( SWT . COLOR_BLUE ) ) ; colorTable . add ( display . getSystemColor ( SWT . COLOR_BLACK ) ) ; colorTable . add ( display . getSystemColor ( SWT . COLOR_RED ) ) ; colorTable . add ( display . getSystemColor ( SWT . COLOR_DARK_GRAY ) ) ; colorTable . add ( display . getSystemColor ( SWT . COLOR_DARK_GREEN ) ) ; colorTable . add ( new Color ( display , 255 , 127 , 0 ) ) ; colorTable . add ( display . getSystemColor ( SWT . COLOR_DARK_MAGENTA ) ) ; colorTable . add ( new Color ( display , 201 , 141 , 141 ) ) ; colorTable . add ( new Color ( display , 214 , 179 , 74 ) ) ; colorTable . add ( new Color ( display , 204 , 74 , 214 ) ) ; } private void createShortcutsMenu ( IMenuManager mgr ) { IMenuManager submenu = new MenuManager ( "Shortcuts" ) ; mgr . add ( submenu ) ; Action shortcut ; try { File shortcutsFile = new File ( RegExpPlugin . getPlugInDir ( ) + File . separator + "shortcuts" ) ; FileInputStream fin = new FileInputStream ( shortcutsFile ) ; BufferedReader br = new BufferedReader ( new InputStreamReader ( fin ) ) ; String line ; while ( ( line = br . readLine ( ) ) != null ) { StringTokenizer st = new StringTokenizer ( line , "t" ) ; if ( st . countTokens ( ) == 2 ) { final String shortc = st . nextToken ( ) ; String descr = st . nextToken ( ) ; shortcut = new Action ( ) { public void run ( ) { insertShortcut ( shortc ) ; } } ; shortcut . setText ( shortc + " - " + descr ) ; submenu . add ( shortcut ) ; mgr . update ( true ) ; } else if ( st . countTokens ( ) == 1 ) { String token = st . nextToken ( ) ; if ( token . equals ( "<DEL>" ) ) { submenu . add ( new Separator ( ) ) ; } } } } catch ( IOException e ) { e . printStackTrace ( ) ; } } private void contributeToActionBars ( ) { IActionBars bars = getViewSite ( ) . getActionBars ( ) ; fillLocalToolBar ( bars . getToolBarManager ( ) ) ; } private void fillLocalToolBar ( IToolBarManager manager ) { manager . add ( stopDebugAction ) ; manager . add ( backDebugAction ) ; manager . add ( forwardDebugAction ) ; manager . add ( new Separator ( ) ) ; manager . add ( validateAction ) ; } private void makeActions ( ) { stopDebugAction = new Action ( ) { public void run ( ) { resetDebug ( ) ; } } ; stopDebugAction . setText ( "Reset" ) ; stopDebugAction . setToolTipText ( "Reset" ) ; stopDebugAction . setImageDescriptor ( RegExpImages . ICON_DEBUG_STOP ) ; backDebugAction = new Action ( ) { public void run ( ) { backDebug ( ) ; } } ; backDebugAction . setText ( "Backward" ) ; backDebugAction . setToolTipText ( "Backward" ) ; backDebugAction . setImageDescriptor ( RegExpImages . ICON_DEBUG_BACK ) ; forwardDebugAction = new Action ( ) { public void run ( ) { forwardDebug ( ) ; } } ; forwardDebugAction . setText ( "Forward" ) ; forwardDebugAction . setToolTipText ( "Forward" ) ; forwardDebugAction . setImageDescriptor ( RegExpImages . ICON_DEBUG_FORWARD ) ; validateAction = new Action ( ) { public void run ( ) { validateRegExp ( ) ; } } ; validateAction . setText ( "" ) ; validateAction . setToolTipText ( "" ) ; validateAction . setImageDescriptor ( RegExpImages . ICON_RUN ) ; cutAction = new Action ( "Cut" , RegExpImages . EDIT_CUT ) { public void run ( ) { ( ( StyledText ) activeInput ) . cut ( ) ; } } ; copyAction = new Action ( "Copy" , RegExpImages . EDIT_COPY ) { public void run ( ) { ( ( StyledText ) activeInput ) . copy ( ) ; } } ; pasteAction = new Action ( "Paste" , RegExpImages . EDIT_PASTE ) { public void run ( ) { ( ( StyledText ) activeInput ) . paste ( ) ; } } ; } private void insertShortcut ( String text ) { int selCount = regExpText . getSelectionCount ( ) ; int pos = regExpText . getCaretOffset ( ) ; regExpText . insert ( text ) ; if ( selCount == 0 ) { regExpText . setCaretOffset ( pos + text . length ( ) ) ; } } public void validateRegExp ( ) { boolean result = false ; int eflags = 0 ; regExpText . setStyleRange ( null ) ; debugPosition = 0 ; if ( ignoreCaseCheckBox . getSelection ( ) ) { eflags |= RE . REG_ICASE ; } if ( multilineCheckBox . getSelection ( ) ) { eflags |= RE . REG_MULTILINE ; } try { RE re = new RE ( regExpText . getText ( ) , eflags ) ; REMatch [ ] matches = re . getAllMatches ( matchText . getText ( ) ) ; String matchesString = "" ; result = matches . length > 0 ? true : false ; matchText . setStyleRange ( null ) ; for ( int i = 0 ; i < matches . length ; i ++ ) { int color = 0 ; for ( int j = 1 ; j <= re . getNumSubs ( ) ; j ++ ) { StyleRange styleRange = new StyleRange ( ) ; styleRange . start = matches [ i ] . getStartIndex ( j ) ; styleRange . length = matches [ i ] . getEndIndex ( j ) - matches [ i ] . getStartIndex ( j ) ; Display display = panel . getDisplay ( ) ; styleRange . foreground = display . getSystemColor ( SWT . COLOR_WHITE ) ; styleRange . background = ( Color ) colorTable . get ( color ) ; matchText . setStyleRange ( styleRange ) ; matchText . setTopIndex ( styleRange . start ) ; matchText . setCaretOffset ( styleRange . start ) ; int offsetFromLine = styleRange . start - matchText . getOffsetAtLine ( matchText . getLineAtOffset ( styleRange . start ) ) ; matchText . setHorizontalIndex ( offsetFromLine ) ; matchText . redraw ( ) ; if ( ++ color > colorTable . size ( ) ) { color = 0 ; } } } } catch ( REException e ) { e . printStackTrace ( ) ; } if ( result ) { resultMatches ( ) ; } else { resultDoesNotMatch ( ) ; } } private void resultDoesNotMatch ( ) { setResultLabelImage ( RegExpImages . RESULT_RED , "" ) ; } private void resultMatches ( ) { setResultLabelImage ( RegExpImages . RESULT_GREEN , "Matches" ) ; } public void setResultLabelImage ( ImageDescriptor descr , String tooltip ) { Image labelImage = new Image ( resultImageLabel . getDisplay ( ) , descr . getImageData ( ) ) ; labelImage . setBackground ( panel . getBackground ( ) ) ; resultImageLabel . setImage ( labelImage ) ; resultImageLabel . setToolTipText ( tooltip ) ; } public void setFocus ( ) { } private void buildDebugRegExp ( String input , String match ) { String convInput ; String result = "" ; RE re = null ; boolean inBracket = false ; boolean escape = false ; String character ; int start = 0 , end = 0 ; int bracketStart = 0 ; debugInfo = new DebugInfo ( ) ; debugInfo . setInput ( input ) ; debugInfo . setMatchString ( match ) ; try { re = new RE ( "\\[^.]" ) ; convInput = re . substitute ( input , ".." ) ; if ( convInput . indexOf ( '(' ) == - 1 ) { for ( int i = 0 ; i < input . length ( ) ; i ++ ) { character = input . substring ( i , i + 1 ) ; if ( ! inBracket ) { re = new RE ( "[\\[\\{]" ) ; if ( re . isMatch ( character ) ) { bracketStart = result . length ( ) ; result += "(" + character ; inBracket = true ; start = i ; } else { if ( ! escape ) { bracketStart = result . length ( ) ; result += "(" ; start = i ; } else { escape = false ; } result += character ; if ( character . equals ( "\\" ) ) { escape = true ; continue ; } if ( ( i + 1 ) < input . length ( ) ) { String nextChar = input . substring ( i + 1 , i + 2 ) ; re = new RE ( "[\\*\\+]" ) ; if ( re . isMatch ( nextChar ) ) { result += nextChar ; i ++ ; } } if ( ( i + 1 ) < input . length ( ) ) { String nextChar = input . substring ( i + 1 , i + 2 ) ; re = new RE ( "[\\?]" ) ; if ( re . isMatch ( nextChar ) ) { result += nextChar ; i ++ ; } } result += ")" ; debugInfo . addSubexpressionPosition ( start , i + 1 ) ; debugInfo . addBracketPosition ( bracketStart , result . length ( ) - 1 ) ; } } else { re = new RE ( "[\\]\\}]" ) ; if ( re . isMatch ( character ) ) { if ( ( i + 1 ) < input . length ( ) ) { String nextChar = input . substring ( i + 1 , i + 2 ) ; if ( nextChar . equals ( "{" ) ) { result += character + nextChar ; i ++ ; continue ; } re = new RE ( "[\\+\\*]" ) ; if ( re . isMatch ( nextChar ) ) { result += character + nextChar ; i ++ ; if ( ( i + 1 ) < input . length | |
1,987 | <s> package com . asakusafw . compiler . fileio . io ; import java . io . IOException ; import com . asakusafw . compiler . fileio . model . ExJoined2 ; import com . asakusafw . runtime . io . ModelOutput ; import com . asakusafw . runtime . io . RecordEmitter ; public final class ExJoined2Output implements ModelOutput < ExJoined2 > { private final RecordEmitter emitter ; public ExJoined2Output ( RecordEmitter emitter ) { if ( emitter == null ) { | |
1,988 | <s> package hudson . stagingworkflow ; import org . jbpm . graph . def . ActionHandler ; import org . jbpm . graph . exe . ExecutionContext ; import org . jbpm . graph . exe . Token ; import org . jbpm . graph . node . TaskNode ; import org . jbpm . taskmgmt . def . Task ; import org . jbpm . taskmgmt . exe . TaskInstance ; import org . jbpm | |
1,989 | <s> package com . asakusafw . compiler . flow . testing . io ; import java . io . IOException ; import com . asakusafw . compiler . flow . testing . model . Part2 ; import com . asakusafw . runtime . io . ModelOutput ; import com . asakusafw . runtime . io . RecordEmitter ; public final class Part2Output implements ModelOutput < Part2 > { private final RecordEmitter emitter ; public Part2Output | |
1,990 | <s> package org . rubypeople . rdt . internal . ui . util ; import org . eclipse . jface . dialogs . IDialogConstants ; import org . eclipse . jface . resource . JFaceResources ; import org . eclipse . jface . util . Assert ; import org . eclipse . swt . SWT ; import org . eclipse . swt . dnd . DragSource ; import org . eclipse . swt . dnd . DropTarget ; import org . eclipse . swt . layout . GridData ; import org . eclipse . swt . widgets . Button ; import org . eclipse . swt . widgets . Caret ; import org . eclipse . swt . widgets . Control ; import org . eclipse . swt . widgets . Display ; import org . eclipse . swt . widgets . Menu ; import org . eclipse . swt . widgets . ScrollBar ; import org . eclipse . swt . widgets . Shell ; import org . eclipse . swt . widgets . Table ; import org . eclipse . swt . widgets . Widget ; public class SWTUtil { public static Display getStandardDisplay ( ) { Display display ; display = Display . getCurrent ( ) ; if ( display == null ) display = Display . getDefault ( ) ; return display ; } public static Shell getShell ( Widget widget ) { if ( widget instanceof Control ) return ( ( Control ) widget ) . getShell ( ) ; if ( widget instanceof Caret ) return ( ( Caret ) widget ) . getParent ( ) . getShell ( ) ; if ( widget instanceof DragSource ) return ( ( DragSource ) widget ) . getControl ( ) . getShell ( ) ; if ( widget instanceof DropTarget ) return ( ( DropTarget ) widget ) . getControl ( ) . getShell ( ) ; if ( widget instanceof Menu ) return ( ( Menu ) widget ) . getParent ( ) . getShell ( ) ; if ( widget instanceof ScrollBar ) return ( ( ScrollBar ) widget ) . getParent ( ) . getShell ( ) ; return null ; } public static int getButtonWidthHint ( Button button ) { button . setFont ( JFaceResources . getDialogFont ( ) ) ; PixelConverter converter = new PixelConverter ( button ) ; int widthHint = converter . convertHorizontalDLUsToPixels ( IDialogConstants . BUTTON_WIDTH ) ; return Math . max ( widthHint , button . computeSize ( SWT . DEFAULT , SWT . DEFAULT , true ) . x ) ; } public static void setButtonDimensionHint ( Button button ) { Assert . isNotNull ( | |
1,991 | <s> package org . rubypeople . rdt . ui . actions ; import java . lang . reflect . InvocationTargetException ; import java . util . ArrayList ; import java . util . Arrays ; import java . util . List ; import org . eclipse . core . runtime . IStatus ; import org . eclipse . core . runtime . Status ; import org . eclipse . jface . dialogs . ErrorDialog ; import org . eclipse . jface . text . ITextSelection ; import org . eclipse . jface . viewers . ISelectionProvider ; import org . eclipse . jface . viewers . IStructuredSelection ; import org . eclipse . ui . IWorkbenchSite ; import org . eclipse . ui . PlatformUI ; import org . rubypeople . rdt . core . IImportDeclaration ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . IRubyScript ; import org . rubypeople . rdt . core . ISourceFolder ; import org . rubypeople . rdt . core . IType ; import org . rubypeople . rdt . core . RubyModelException ; import org . rubypeople . rdt . internal . ui . IRubyHelpContextIds ; import org . rubypeople . rdt . internal . ui . IRubyStatusConstants ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; import org . rubypeople . rdt . internal . ui . actions . ActionMessages ; import org . rubypeople . rdt . internal . ui . actions . ActionUtil ; import org . rubypeople . rdt . internal . ui . actions . SelectionConverter ; import org . rubypeople . rdt . internal . ui . rubyeditor . RubyEditor ; import org . rubypeople . rdt . internal . ui . util . ExceptionHandler ; import org . rubypeople . rdt . internal . ui . util . OpenTypeHierarchyUtil ; public class OpenTypeHierarchyAction extends SelectionDispatchAction { private RubyEditor fEditor ; public OpenTypeHierarchyAction ( IWorkbenchSite site ) { super ( site ) ; setText ( ActionMessages . OpenTypeHierarchyAction_label ) ; setToolTipText ( ActionMessages . OpenTypeHierarchyAction_tooltip ) ; setDescription ( ActionMessages . OpenTypeHierarchyAction_description ) ; PlatformUI . getWorkbench ( ) . getHelpSystem ( ) . setHelp ( this , IRubyHelpContextIds . OPEN_TYPE_HIERARCHY_ACTION ) ; } public OpenTypeHierarchyAction ( IWorkbenchSite site , ISelectionProvider provider ) { this ( site ) ; setSpecialSelectionProvider ( provider ) ; } public OpenTypeHierarchyAction ( RubyEditor editor ) { this ( editor . getEditorSite ( ) ) ; fEditor = editor ; setEnabled ( SelectionConverter . canOperateOn ( fEditor ) ) ; } public void selectionChanged ( ITextSelection selection ) { } public void selectionChanged ( IStructuredSelection selection ) { setEnabled ( isEnabled ( selection ) ) ; } private boolean isEnabled ( IStructuredSelection selection ) { if ( selection . size ( ) != 1 ) return false ; Object input = selection . getFirstElement ( ) ; if ( ! ( input instanceof IRubyElement ) ) return false ; switch ( ( ( IRubyElement ) input ) . getElementType ( ) ) { case IRubyElement . METHOD : case IRubyElement . FIELD : case IRubyElement . TYPE : return true ; case IRubyElement . SOURCE_FOLDER_ROOT : case IRubyElement . RUBY_PROJECT : case IRubyElement . SOURCE_FOLDER : case IRubyElement . IMPORT_DECLARATION : case IRubyElement . SCRIPT : return true ; case IRubyElement . LOCAL_VARIABLE : default : return false ; } } public void run ( ITextSelection selection ) { IRubyElement input = SelectionConverter . getInput ( fEditor ) ; if ( ! ActionUtil . isProcessable ( getShell ( ) , input ) ) return ; try { IRubyElement [ ] elements = SelectionConverter . codeResolveOrInputForked ( fEditor ) ; if ( elements == null ) return ; List candidates = new ArrayList ( elements . length ) ; for ( int i = 0 ; i < elements . length ; i ++ ) { IRubyElement [ ] resolvedElements = OpenTypeHierarchyUtil . getCandidates ( elements [ i ] ) ; if ( resolvedElements != null ) candidates . addAll ( Arrays . asList ( resolvedElements ) ) ; } run ( ( IRubyElement [ ] ) candidates . toArray ( new IRubyElement [ candidates . size ( ) ] ) ) ; } catch ( InvocationTargetException e ) { ExceptionHandler . handle ( e , getShell ( ) , getDialogTitle ( ) , ActionMessages . SelectionConverter_codeResolve_failed ) ; } catch ( InterruptedException e ) { } } public void run ( IStructuredSelection selection ) { if ( selection . size ( ) != 1 ) return ; Object input = selection . getFirstElement ( ) ; if ( ! ( input instanceof IRubyElement ) ) { IStatus status = createStatus ( ActionMessages . OpenTypeHierarchyAction_messages_no_ruby_element ) ; ErrorDialog . openError ( getShell ( ) , getDialogTitle ( ) , ActionMessages . OpenTypeHierarchyAction_messages_title , status ) ; return ; } IRubyElement element = ( IRubyElement ) input ; if ( ! ActionUtil . isProcessable ( getShell ( ) , element ) ) return ; List result = new ArrayList ( 1 ) ; IStatus status = compileCandidates ( result , element ) ; if ( status . isOK ( ) ) { run ( ( IRubyElement [ ] ) result . toArray ( new IRubyElement | |
1,992 | <s> package org . springframework . samples . petclinic . aspects ; import java . util . ArrayList ; import java . util . Collections ; import java . util . List ; import org . aspectj . lang . annotation . Aspect ; import org . aspectj . lang . annotation . Before ; @ Aspect public class UsageLogAspect { private int historySize = 100 ; private List < String > namesRequested = new ArrayList < String > ( this . historySize ) ; public synchronized void setHistorySize ( int historySize ) { this . historySize = historySize ; this . namesRequested = new ArrayList < String > ( historySize ) ; } @ Before ( "" ) public synchronized void logNameRequest ( String name ) { if | |
1,993 | <s> package net . sf . sveditor . core . tests . indent ; import junit . framework . TestCase ; import net . sf . sveditor . core . SVCorePlugin ; import net . sf . sveditor . core . indent . ISVIndenter ; import net . sf . sveditor . core . indent . SVIndentScanner ; import net . sf . sveditor . core . log . LogFactory ; import net . sf . sveditor . core . log . LogHandle ; import net . sf . sveditor . core . scanutils . StringTextScanner ; public class TestAdaptiveIndent extends TestCase { public void testAdaptiveSecondLevel ( ) { LogHandle log = LogFactory . getLogHandle ( "" ) ; String content = "" + "" + "" + "" + "" + "n" + "" + "ttn" + "" + "a = 5;n" + "" + "n" ; String expected = "" + "" + "" + "" + "" + "n" + "" + "n" + "" + "ta = 5;n" + "endfunctionn" + "n" ; SVIndentScanner scanner = new SVIndentScanner ( new StringTextScanner ( content ) ) ; ISVIndenter indenter = SVCorePlugin . getDefault ( ) . createIndenter ( ) ; indenter . init ( scanner ) ; indenter . setAdaptiveIndent ( true ) ; indenter . setAdaptiveIndentEnd ( 9 ) ; String result = indenter . indent ( ) ; log . debug ( "Result:" ) ; log . debug ( result ) ; IndentComparator . compare ( "" , expected , result ) ; LogFactory . removeLogHandle ( log ) ; } public void testPostComment ( ) { String content = "class foo;n" + "" + "" + "" + "" + "tttan" ; String expected = "class foo;n" + "" + "" + "" + "" + "tttan" ; SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; coreAutoIndentTest ( "" , content , 5 , expected ) ; } public void testBasicModule ( ) { String content = "module foo(n" + " input a,n" + " int b)n" + "t;n" + "tn" + " int a;n" + "tn" + "" + "" + "a = 5;n" + "endn" + "n" + "endmodulen" ; String expected = "module foo(n" + " input a,n" + " int b)n" + "t;n" + "tn" + " int a;n" + "tn" + "" + "" + " ta = 5;n" + " endn" + " n" + "endmodulen" ; SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; LogHandle log = LogFactory . getLogHandle ( "" ) ; SVIndentScanner scanner = new SVIndentScanner ( new StringTextScanner ( content ) ) ; ISVIndenter indenter = SVCorePlugin . getDefault ( ) . createIndenter ( ) ; indenter . init ( scanner ) ; indenter . setAdaptiveIndent ( true ) ; indenter . setAdaptiveIndentEnd ( 9 ) ; String result = indenter . indent ( ) ; log . debug ( "Result:" ) ; log . debug ( result ) ; IndentComparator . compare ( log , "" , expected , result ) ; LogFactory . removeLogHandle ( log ) ; } public void testModuleContainingClass ( ) { String content = "module foo(n" + " input a,n" + " int b)n" + "t;n" + "tn" + "" + " int a;n" + "endclassn" + "tn" + "endmodulen" ; String expected = "module foo(n" + " input a,n" + " int b)n" + "t;n" + "tn" + "" + " tint a;n" + " endclassn" + "tn" + "endmodulen" ; LogHandle log = LogFactory . getLogHandle ( "" ) ; SVIndentScanner scanner = new SVIndentScanner ( new StringTextScanner ( content ) ) ; ISVIndenter indenter = SVCorePlugin . getDefault ( ) . createIndenter ( ) ; indenter . init ( scanner ) ; indenter . setAdaptiveIndentEnd ( 6 ) ; String result = indenter . indent ( ) ; log . debug ( "Result:" ) ; log . debug ( result ) ; IndentComparator . compare ( log , "" , expected , result ) ; LogFactory . removeLogHandle ( log ) ; } public void testAdaptiveIf ( ) { String content = "" + "" + "" + "" + "" + "n" + "" + "ttn" + "" + "ta = 6;n" + "" + "a = 5;n" + "endn" + "" + "n" ; String expected = "" + "" + "" + "" + "" + "n" + "" + "n" + "" + "ta = 6;n" + "" + "ttta = 5;n" + "ttendn" + "endfunctionn" + "n" ; LogHandle log = LogFactory . getLogHandle ( "" ) ; SVIndentScanner scanner = new SVIndentScanner ( new StringTextScanner ( content ) ) ; ISVIndenter indenter = SVCorePlugin . getDefault ( ) . createIndenter ( ) ; indenter . init ( scanner ) ; indenter . setAdaptiveIndent ( true ) ; indenter . setAdaptiveIndentEnd ( 11 ) ; String result = indenter . indent ( ) ; log . debug ( "Result:" ) ; log . debug ( result ) ; IndentComparator . compare ( log , "" , expected , result ) ; LogFactory . removeLogHandle ( log ) ; } public void testPostSysTfIfPartial ( ) { String content = "" + "" + "" + "" + "" + "n" + "" + "ttn" + "" + "" + "" + "" + "a = 6;n" + "endn" + "" + "n" ; String expected = "" + "ttta = 6;n" + "ttendn" ; LogHandle log = LogFactory . getLogHandle ( "" ) ; SVIndentScanner scanner = new SVIndentScanner ( new StringTextScanner ( content ) ) ; ISVIndenter indenter = SVCorePlugin . getDefault ( ) . createIndenter ( ) ; indenter . init ( scanner ) ; indenter . setAdaptiveIndentEnd ( 11 ) ; String result = indenter . indent ( 12 , 14 ) ; log . debug ( "Result:" ) ; log . debug ( result ) ; IndentComparator . compare ( log , "" , expected , result ) ; LogFactory . removeLogHandle ( log ) ; } public void testPostSysTfIfFull ( ) { String content = "" + "" + "" + "" + "" + "n" + "" + "ttn" + "" + "" + "" + "" + "a = 6;n" | |
1,994 | <s> package org . oddjob . designer . elements . schedule ; import org . oddjob . arooa . design . DesignFactory ; import org . oddjob . arooa . design . DesignInstance ; import org . oddjob . arooa . design . DesignProperty ; import org . oddjob . arooa . design . SimpleTextAttribute ; import org . | |
1,995 | <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 . LocalVariableDeclaration ; import com . asakusafw . utils . java . model . syntax . ModelKind ; import com . asakusafw . utils . java . model . syntax . Type ; import com . asakusafw . utils . java . model . syntax . VariableDeclarator ; import com . asakusafw . utils . java . model . syntax . Visitor ; public final class LocalVariableDeclarationImpl extends ModelRoot implements LocalVariableDeclaration { private List < ? extends Attribute > modifiers ; private Type type ; private List < ? extends VariableDeclarator > variableDeclarators ; @ Override public List < ? extends Attribute > getModifiers ( ) { return this . modifiers ; } public void setModifiers ( List < ? extends Attribute > modifiers ) { Util . notNull ( modifiers , "modifiers" ) ; Util . notContainNull ( modifiers , "modifiers" ) ; this . modifiers = Util . freeze ( modifiers ) ; } @ Override public Type getType ( ) { return this . type ; } public void setType ( Type type ) { Util . notNull ( type , "type" ) ; this . type = type ; } @ Override public List < ? extends VariableDeclarator > getVariableDeclarators ( ) { return this | |
1,996 | <s> package org . oddjob . tools . includes ; import java . io . ByteArrayInputStream ; import java . io . ByteArrayOutputStream ; import java . io . InputStream ; import org . oddjob . doclet . CustomTagNames ; import org . oddjob . io . ResourceType ; import org . oddjob . jobs . XSLTJob ; public class XMLResourceLoader implements IncludeLoader , CustomTagNames { private static final String EOL = System . getProperty ( "" ) ; @ Override public boolean canLoad ( String tag ) { return XML_RESOURCE_TAG . equals ( tag ) ; } @ Override public String load ( String resource ) { try { FilterFactory filterFactory = new FilterFactory ( resource ) ; InputStream input = new ResourceType ( filterFactory . getResourcePath ( ) ) . toInputStream ( ) ; String xml = filterFactory . getTextLoader ( ) . load ( input ) ; InputStream stylesheet = getClass ( ) . getResourceAsStream ( "" ) ; ByteArrayOutputStream | |
1,997 | <s> package test . modelgen . table . io ; import java . io . IOException ; import javax . annotation . Generated ; import test . modelgen . table . model . ImportTarget1 ; import com . asakusafw . runtime . io . ModelInput ; import com . asakusafw . runtime . io . RecordParser ; @ Generated ( "" ) @ SuppressWarnings ( "deprecation" ) public final class ImportTarget1ModelInput implements ModelInput < ImportTarget1 > { private final RecordParser parser ; public ImportTarget1ModelInput ( RecordParser parser ) { if ( parser == null ) { throw new IllegalArgumentException ( ) ; } this . parser = parser ; } @ Override public boolean readTo ( ImportTarget1 model ) throws IOException { if ( parser . next ( ) == false ) { return false ; } parser . fill ( model . getSidOption ( ) ) ; parser . fill ( model . getVersionNoOption ( ) ) ; parser . fill ( model . getTextdata1Option ( ) ) ; parser . fill ( model . getIntdata1Option ( ) ) ; parser . fill ( model . | |
1,998 | <s> package org . rubypeople . rdt . internal . testunit . ui ; import org . eclipse . debug . core . ILaunchManager ; import org . eclipse . jface . action . Action ; public class RerunAction extends Action { private String fTestId ; private String fClassName ; private String fTestName ; private TestUnitView fTestRunner ; private String fLaunchMode ; public RerunAction ( TestUnitView runner , String testId , String className , String testName , String launchMode ) { super ( ) ; if ( launchMode . equals ( ILaunchManager . RUN_MODE ) ) setText ( TestUnitMessages . RerunAction_label_run ) ; else if | |
1,999 | <s> package org . rubypeople . rdt . internal . ui . text ; import org . eclipse . jface . text . IRegion ; import org . eclipse . jface . text . |
Subsets and Splits