id
int32 0
3k
| input
stringlengths 43
33.8k
| gt
stringclasses 1
value |
---|---|---|
1,700 | <s> package org . oddjob . util ; import junit . framework . TestCase ; import org . oddjob . Oddjob ; import org . oddjob . OddjobLookup ; import org . oddjob . arooa . convert . ArooaConversionException ; import org . oddjob . arooa . reflect . ArooaPropertyException ; import org . oddjob . arooa . xml . XMLConfiguration ; public class ClassLoaderDiagnosticsTest extends TestCase { public void testResource ( ) { ClassLoaderDiagnostics test = new ClassLoaderDiagnostics ( ) ; test . setResource ( "" ) ; test . run ( ) ; assertTrue ( test . getLocation ( ) . contains ( | |
1,701 | <s> package net . michaelkerley ; import javax . microedition . lcdui . Font ; import javax . microedition . lcdui . Display ; import javax . microedition . midlet . MIDlet ; import javax . microedition . midlet . MIDletStateChangeException ; import javax . microedition . rms . RecordStoreException ; public class PipesMIDlet extends MIDlet { public static final String [ ] aboutText = { "" , "" , "" , "" , "" , "" , "" } ; public static final Font largeFont = Font . getFont ( Font . FACE_PROPORTIONAL , Font . STYLE_BOLD , Font . SIZE_LARGE ) ; public static final Font mediumFont = Font . getFont ( Font . FACE_PROPORTIONAL , Font . STYLE_BOLD , Font . SIZE_MEDIUM ) ; public static final Font smallFont = Font . getFont ( Font . FACE_PROPORTIONAL , Font . STYLE_PLAIN , Font . SIZE_SMALL ) ; private PipesCanvas pipesCanvas ; private boolean firstStart = true ; private static PipesMIDlet instance ; public PipesMIDlet ( ) { instance = this ; pipesCanvas = new PipesCanvas ( this ) ; } protected void startApp ( ) throws MIDletStateChangeException { try { pipesCanvas . load ( ) ; } catch ( Exception e ) { e . printStackTrace ( ) ; pipesCanvas . init ( ) ; } if ( firstStart ) { pipesCanvas . showAbout ( 2000 ) ; Display . getDisplay ( this ) . setCurrent ( pipesCanvas ) ; firstStart = false ; } } protected void pauseApp ( ) { try { pipesCanvas . save ( ) ; } catch ( RecordStoreException e ) { e . printStackTrace ( | |
1,702 | <s> package com . team1160 . scouting . frontend . panels ; import com . team1160 . scouting . frontend . elements . JumpMenuItem ; import java . awt . BorderLayout ; import java . awt . Dimension ; import javax . swing . ImageIcon ; import javax . swing . JLabel ; import javax . swing . JPanel ; import com . team1160 . scouting . frontend . resourcePackets . CardLayoutPacket ; import java . awt . event . KeyEvent ; import javax . swing . JMenu ; import javax . swing . JMenuBar ; public class InitialPanel extends JPanel { private static final long serialVersionUID = 1628999285286377291L ; JMenuBar toolbar ; JPanel picturepanel ; CardLayoutPacket layout ; JMenu go ; public InitialPanel ( CardLayoutPacket layout ) { this . layout = layout ; this . setLayout ( new BorderLayout ( ) ) ; toolbar = new JMenuBar ( ) ; toolbar . setLayout ( new BorderLayout ( ) ) ; this . go = new JMenu ( "Go" ) ; this . go . setMnemonic ( KeyEvent . VK_G ) ; this . go . add ( new JumpMenuItem ( layout , "" , "match" ) ) ; this . go . add ( new JumpMenuItem ( layout , "Graph" , "graph" ) ) ; this . go . add ( new JumpMenuItem ( | |
1,703 | <s> package org . oddjob . jobs ; import java . io . BufferedInputStream ; import java . io . File ; import java . io . IOException ; import java . io . InputStream ; import java . io . ObjectInputStream ; import java . io . ObjectOutputStream ; import java . io . OutputStream ; import java . util . HashMap ; import java . util . Map ; import org . oddjob . Stoppable ; import org . oddjob . arooa . deploy . annotations . ArooaAttribute ; import org . oddjob . arooa . deploy . annotations . ArooaText ; import org . oddjob . arooa . utils . ArooaTokenizer ; import org . oddjob . arooa . utils . QuoteTokenizerFactory ; import org . oddjob . framework . SerializableJob ; import org . oddjob . logging . ConsoleOwner ; import org . oddjob . logging . LogArchive ; import org . oddjob . logging . LogArchiver ; import org . oddjob . logging . LogLevel ; import org . oddjob . logging . LoggingOutputStream ; import org . oddjob . logging . cache . LogArchiveImpl ; import org . oddjob . util . IO ; import org . oddjob . util . OddjobConfigException ; public class ExecJob extends SerializableJob implements Stoppable , ConsoleOwner { private static final long serialVersionUID = 2009012700L ; private static int consoleCount ; private static String uniqueConsoleId ( ) { synchronized ( ExecJob . class ) { return ( "EXEC_CONSOLE" + consoleCount ++ ) ; } } private transient LogArchiveImpl consoleArchive ; private void completeConstruction ( ) { consoleArchive = new LogArchiveImpl ( uniqueConsoleId ( ) , LogArchiver . MAX_HISTORY ) ; this . environment = new HashMap < String , String > ( ) ; } private File dir ; private String command ; private String [ ] args ; private boolean newEnvironment ; private Map < String , String > environment ; private boolean redirectStderr ; private transient InputStream stdin ; private transient OutputStream stdout ; private transient OutputStream stderr ; private transient volatile Process proc ; private transient volatile Thread thread ; private int exitValue ; public ExecJob ( ) { completeConstruction ( ) ; } public void setArgs ( String [ ] args ) { this . args = args ; } @ ArooaText public void setCommand ( String command ) { this . command = command ; } public String getCommand ( ) { return command ; } @ ArooaAttribute public void setDir ( File dir ) { this . dir = dir ; } public void setNewEnvironment ( boolean explicitEnvironment ) { this . newEnvironment = explicitEnvironment ; } public boolean isNewEnvironment ( ) { return newEnvironment ; } public void setEnvironment ( String name , String value ) { if ( value == null ) { this . environment . remove ( name ) ; } else { this . environment . put ( name , value ) ; } } public String getEnvironment ( String name ) { return this . environment . get ( name ) ; } public void setRedirectStderr ( boolean redirectErrorStream ) { this . redirectStderr = redirectErrorStream ; } public boolean isRedirectStderr ( ) { return this . redirectStderr ; } public void setStdin ( InputStream stdin ) { this . stdin = stdin ; } | |
1,704 | <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 DayOfWeek { enum Days implements DayOfWeek { MONDAY { @ Override public int getDayNumber ( ) { return 1 ; } } , TUESDAY { @ Override public int getDayNumber ( ) { return 2 ; } } , WEDNESDAY { @ Override public int getDayNumber ( ) { return 3 ; } } , THURSDAY { @ Override public int getDayNumber ( ) { return 4 ; } } , FRIDAY { @ Override public int getDayNumber ( ) { return 5 ; } } , SATURDAY { @ Override public int getDayNumber ( ) { return 6 ; } } , SUNDAY { @ Override public int getDayNumber ( ) { return 7 ; } } } public static class Conversions implements ConversionProvider { @ Override public void registerWith ( ConversionRegistry registry ) { registry . register ( String . class , DayOfWeek . class , new Convertlet < String , DayOfWeek > ( ) { @ Override public DayOfWeek convert ( String from ) throws ConvertletException { try { final int day = Integer . parseInt ( from ) ; return Days . values ( ) [ day - 1 ] ; } catch ( IndexOutOfBoundsException | |
1,705 | <s> package net . sf . sveditor . core . db ; import java . util . ArrayList ; import java . util . List ; public class | |
1,706 | <s> package org . rubypeople . rdt . refactoring . core . movefield ; import java . util . Collection ; import org . rubypeople . rdt . refactoring . core . renamefield . FieldRenamer ; import org . rubypeople . rdt . refactoring . core . renamefield . RenameFieldConditionChecker ; import org . rubypeople . rdt . refactoring . core . renamefield . RenameFieldConfig ; import org . rubypeople . rdt . refactoring . documentprovider . DocumentWithIncluding ; import org . rubypeople . rdt . refactoring . editprovider . EditProvider ; import org . rubypeople . rdt . refactoring . editprovider . FileEditProvider ; import org . rubypeople . rdt . refactoring . editprovider . FileMultiEditProvider ; import org . rubypeople . rdt . refactoring . editprovider . IMultiFileEditProvider ; import org . rubypeople . rdt . refactoring . editprovider . MultiFileEditProvider ; public class MoveFieldEditProvider implements IMultiFileEditProvider { private final MoveFieldConfig config ; public MoveFieldEditProvider ( MoveFieldConfig config ) { this . config = config ; } public Collection < FileMultiEditProvider > getFileEditProviders ( ) { MultiFileEditProvider providers = new MultiFileEditProvider ( ) ; addTargetAccessorGenerator ( providers ) ; addSourceAccessorGenerator ( providers ) ; addFieldRenamers ( providers ) ; return providers . getFileEditProviders ( ) ; } private void addFieldRenamers ( MultiFileEditProvider providers ) { RenameFieldConfig renameFieldConfig = new RenameFieldConfig ( new DocumentWithIncluding ( config . getDocumentProvider ( ) ) , config . getPos ( ) ) ; new RenameFieldConditionChecker ( renameFieldConfig ) ; renameFieldConfig . setDoRenameAccessorMethods ( false ) ; renameFieldConfig . setDoRenameAccessors ( false ) ; renameFieldConfig . setNewName ( config . getTargetReference ( ) + '.' + config . getSelectedFieldName ( ) ) ; FieldRenamer renamer = new FieldRenamer ( renameFieldConfig ) ; for ( FileMultiEditProvider fileMultiEditProvider : renamer . getFileEditProviders ( ) ) { for ( EditProvider editProvider : fileMultiEditProvider . getEditProviders ( ) ) { providers . addEditProvider ( new FileEditProvider ( fileMultiEditProvider . getFileName ( ) , editProvider ) ) ; } } } private void addTargetAccessorGenerator ( MultiFileEditProvider providers ) | |
1,707 | <s> package com . asakusafw . compiler . flow . stage ; import java . util . List ; import java . util . Map ; import com . asakusafw . compiler . common . NameGenerator ; import com . asakusafw . compiler . common . Precondition ; import com . asakusafw . compiler . flow . FlowCompilingEnvironment ; import com . asakusafw . compiler . flow . stage . StageModel . Fragment ; import com . asakusafw . compiler . flow . stage . StageModel . ResourceFragment ; import com . asakusafw . runtime . core . Result ; import com . asakusafw . utils . collections . Lists ; import com . asakusafw . utils . collections . Maps ; import com . asakusafw . utils . java . model . syntax . ConstructorDeclaration ; import com . asakusafw . utils . java . model . syntax . Expression ; import com . asakusafw . utils . java . model . syntax . FieldDeclaration ; import com . asakusafw . utils . java . model . syntax . FormalParameterDeclaration ; import com . asakusafw . utils . java . model . syntax . ModelFactory ; import com . asakusafw . utils . java . model . syntax . SimpleName ; import com . asakusafw . utils . java . model . syntax . Statement ; import com . asakusafw . utils . java . model . util . AttributeBuilder ; import com . asakusafw . utils . java . model . util . ExpressionBuilder ; import com . asakusafw . utils . java . model . util . ImportBuilder ; import com . asakusafw . utils . java . model . util . JavadocBuilder ; import com . asakusafw . utils . java . model . util . Models ; import com . asakusafw . vocabulary . flow . graph . FlowElementOutput ; import com . asakusafw . vocabulary . flow . graph . FlowElementPortDescription ; import com . asakusafw . vocabulary . flow . graph . FlowResourceDescription ; public class FragmentConnection { private final Map < FlowResourceDescription , SimpleName > resources = Maps . create ( ) ; private final Map < FlowElementOutput , SimpleName > successors = Maps . create ( ) ; private final ModelFactory factory ; private final Fragment fragment ; private final ImportBuilder importer ; public FragmentConnection ( FlowCompilingEnvironment environment , Fragment fragment , NameGenerator names , ImportBuilder importer ) { assert environment != null ; assert fragment != null ; assert names != null ; assert importer != null ; this . factory = environment . getModelFactory ( ) ; this . fragment = fragment ; this . importer = importer ; for ( ResourceFragment resource : fragment . getResources ( ) ) { SimpleName name = names . create ( "resource" ) ; resources . put ( resource . getDescription ( ) , name ) ; } for ( FlowElementOutput output : fragment . getOutputPorts ( ) ) { SimpleName name = names . create ( output . getDescription ( ) . getName ( ) ) ; successors . put ( output , name ) ; } } public List < FieldDeclaration > createFields ( ) { List < FieldDeclaration > results = Lists . create ( ) ; for ( ResourceFragment resource : fragment . getResources ( ) ) { results . add ( createResourceField ( resource ) ) ; } for ( FlowElementOutput output : fragment . getOutputPorts ( ) ) { results . add ( createOutputField ( output ) ) ; } return results ; } public ConstructorDeclaration createConstructor ( SimpleName className ) { Precondition . checkMustNotBeNull ( className , "className" ) ; JavadocBuilder javadoc = new JavadocBuilder ( factory ) . text ( "-UNK-" ) ; List < FormalParameterDeclaration > parameters = Lists . create ( ) ; List < Statement > statements = Lists . create ( ) ; for ( ResourceFragment resource : fragment . getResources ( ) ) { SimpleName param = getResource ( resource . getDescription ( ) ) ; javadoc . param ( param ) . text ( resource . getDescription ( ) . toString ( ) ) ; parameters . add ( factory . newFormalParameterDeclaration ( importer . toType ( resource . getCompiled ( ) . getQualifiedName ( ) ) , param ) ) ; statements . add ( new ExpressionBuilder ( factory , factory . newThis ( ) ) . field ( param ) . assignFrom ( param ) . toStatement ( ) ) ; } for ( FlowElementOutput output : fragment . getOutputPorts ( ) ) { SimpleName chain = successors . get ( output ) ; assert chain != null ; javadoc . param ( chain ) . code ( "{0}#{1}" , output . getOwner ( ) . getDescription ( ) . getName ( ) , output . getDescription ( ) . getName ( ) ) . text ( "-UNK-" ) ; parameters . add ( factory . newFormalParameterDeclaration ( importer . resolve ( factory . newParameterizedType ( Models . toType ( factory , Result . class ) , Models . toType ( factory , output . getDescription ( ) . getDataType ( ) ) ) ) , chain ) ) ; statements . add ( new ExpressionBuilder ( factory , factory . newThis ( ) ) . field ( chain ) . assignFrom ( chain ) . toStatement ( ) ) ; } return factory . newConstructorDeclaration ( javadoc . toJavadoc ( ) , new AttributeBuilder ( factory ) . Public ( ) . toAttributes ( ) , className , parameters , statements ) ; } private FieldDeclaration createResourceField ( ResourceFragment resource ) { assert resource != null ; return factory . newFieldDeclaration ( null , new AttributeBuilder ( factory ) . Private ( ) . Final ( ) . toAttributes ( ) , importer . toType ( resource . getCompiled ( ) . getQualifiedName ( ) ) , getResource ( | |
1,708 | <s> package org . oddjob . schedules . schedules ; import java . text . ParseException ; 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 . ScheduleList ; import org . oddjob . schedules . units . Month ; public class LastScheduleTest extends TestCase { public void testLastChristmas ( ) throws ParseException { DateSchedule c1 = new DateSchedule ( ) ; c1 . setOn ( "2009-12-25" ) ; DateSchedule c2 = new DateSchedule ( ) ; c2 . setOn ( "2008-12-25" ) ; DateSchedule c3 = new DateSchedule ( ) ; c3 . setOn ( "2007-12-25" ) ; ScheduleList list = new ScheduleList ( ) ; list . setSchedules ( new Schedule [ ] { c1 , c2 , c3 } ) ; LastSchedule last = new LastSchedule ( ) ; last . setRefinement | |
1,709 | <s> package org . rubypeople . rdt . internal . ui . text . ruby ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . core . runtime . ISafeRunnable ; import org . eclipse . core . runtime . IStatus ; import org . eclipse . core . runtime . NullProgressMonitor ; import org . eclipse . core . runtime . OperationCanceledException ; import org . eclipse . core . runtime . Platform ; import org . eclipse . core . runtime . Status ; import org . eclipse . jface . text . Assert ; import org . eclipse . jface . text . IDocument ; import org . eclipse . jface . text . IRegion ; import org . eclipse . jface . text . reconciler . DirtyRegion ; import org . eclipse . jface . text . reconciler . IReconcilingStrategy ; import org . eclipse . jface . text . reconciler . IReconcilingStrategyExtension ; import org . eclipse . jface . text . source . IAnnotationModel ; import org . eclipse . ui . texteditor . IDocumentProvider ; import org . eclipse . ui . texteditor . ITextEditor ; import org . jruby . ast . RootNode ; import org . rubypeople . rdt . core . IRubyScript ; import org . rubypeople . rdt . core . RubyModelException ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; import org . rubypeople . rdt . ui . IWorkingCopyManager ; import org . rubypeople . rdt . ui . RubyUI ; public class RubyReconcilingStrategy implements IReconcilingStrategy , IReconcilingStrategyExtension { private ITextEditor fEditor ; private IWorkingCopyManager fManager ; private IDocumentProvider fDocumentProvider ; private IProgressMonitor fProgressMonitor ; private boolean fNotify = true ; private IRubyReconcilingListener fRubyReconcilingListener ; private boolean fIsRubyReconcilingListener ; public RubyReconcilingStrategy ( ITextEditor editor ) { fEditor = editor ; fManager = RubyPlugin . getDefault ( ) . getWorkingCopyManager ( ) ; fDocumentProvider = RubyPlugin . getDefault ( ) . getRubyDocumentProvider ( ) ; fIsRubyReconcilingListener = fEditor instanceof IRubyReconcilingListener ; if ( fIsRubyReconcilingListener ) fRubyReconcilingListener = ( IRubyReconcilingListener ) fEditor ; } private IProblemRequestorExtension getProblemRequestorExtension ( ) { IAnnotationModel model = fDocumentProvider . getAnnotationModel ( fEditor . getEditorInput ( ) ) ; if ( model instanceof IProblemRequestorExtension ) return ( IProblemRequestorExtension ) model ; return null ; } private void reconcile ( final boolean initialReconcile ) { final RootNode [ | |
1,710 | <s> package org . oddjob . util ; import java . util . concurrent . Exchanger ; import java . util . concurrent . atomic . AtomicInteger ; import junit . framework . TestCase ; import org . apache . log4j . Logger ; public class SimpleThreadManagerTest extends TestCase { private static final Logger logger = Logger . getLogger ( SimpleThreadManagerTest . class ) ; class OurThing implements Runnable { Exchanger < Void > exchanger = new Exchanger < Void > ( ) ; boolean interrupted ; public void meet ( ) throws InterruptedException { exchanger . exchange ( null ) ; } @ Override public void run ( ) { try { meet ( ) ; meet ( ) ; } catch ( InterruptedException e ) { | |
1,711 | <s> package org . rubypeople . rdt . internal . ui . browsing ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . jface . viewers . DecoratingLabelProvider ; import org . eclipse . jface . viewers . IContentProvider ; import org . eclipse . jface . viewers . ISelection ; import org . eclipse . jface . viewers . TableViewer ; import org . eclipse . ui . IActionBars ; import org . eclipse . ui . IPageLayout ; import org . eclipse . ui . IWorkbenchActionConstants ; import org . eclipse . ui . IWorkbenchPart ; import org . eclipse . ui . part . IShowInTargetList ; import org . rubypeople . rdt . core . IMember ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . IRubyProject ; import org . rubypeople . rdt . core . IRubyScript ; import org . rubypeople . rdt . core . ISourceFolderRoot ; import org . rubypeople . rdt . core . IType ; import org . rubypeople . rdt . core . RubyCore ; import org . rubypeople . rdt . internal . ui . IRubyHelpContextIds ; import org . rubypeople . rdt . internal . ui . actions . SelectAllAction ; import org . rubypeople . rdt . internal . ui . filters . NonRubyElementFilter ; import org . rubypeople . rdt . internal . ui . viewsupport . AppearanceAwareLabelProvider ; import org . rubypeople . rdt . internal . ui . viewsupport . RubyUILabelProvider ; import org . rubypeople . rdt . ui . PreferenceConstants ; import org . rubypeople . rdt . ui . RubyElementLabels ; import org . rubypeople . rdt . ui . RubyUI ; public class TypesView extends RubyBrowsingPart { private SelectAllAction fSelectAllAction ; private boolean fLastInputWasProject ; protected RubyUILabelProvider createLabelProvider ( ) { return new AppearanceAwareLabelProvider ( AppearanceAwareLabelProvider . DEFAULT_TEXTFLAGS | RubyElementLabels . T_CATEGORY | RubyElementLabels . T_NAME_FULLY_QUALIFIED , AppearanceAwareLabelProvider . DEFAULT_IMAGEFLAGS ) ; } public Object getAdapter ( Class key ) { if ( key == IShowInTargetList . class ) { return new IShowInTargetList ( ) { public String [ ] getShowInTargetIds ( ) { return new String [ ] { RubyUI . ID_RUBY_EXPLORER , IPageLayout . ID_RES_NAV } ; } } ; } return super . getAdapter ( key ) ; } protected void addFilters ( ) { super . addFilters ( ) ; getViewer ( ) . addFilter ( new NonRubyElementFilter ( ) ) ; } protected boolean isValidInput ( Object element ) { if ( element instanceof IRubyProject || ( element instanceof ISourceFolderRoot && ( ( IRubyElement ) element ) . getElementName ( ) != ISourceFolderRoot . DEFAULT_PACKAGEROOT_PATH ) ) try { IRubyProject jProject = ( ( IRubyElement ) element ) . getRubyProject ( ) ; if ( jProject != null ) return jProject . getProject ( ) . hasNature ( RubyCore . NATURE_ID ) ; } catch ( CoreException ex ) { return false ; } return false ; } @ Override protected IContentProvider createContentProvider ( ) { return new TypesContentProvider ( this ) ; } protected boolean isValidElement ( Object element ) { if ( element instanceof IRubyScript ) return super . isValidElement ( ( ( IRubyScript ) element ) . getParent ( ) ) ; else if ( element instanceof IType ) { IType type = ( IType ) element ; return isValidElement ( type . getRubyScript ( ) ) ; } return false ; } protected IRubyElement findElementToSelect ( IRubyElement je ) { if ( je == null ) return null ; switch ( je . getElementType ( ) ) { case IRubyElement . TYPE : IType type = ( ( IType ) je ) . getDeclaringType ( ) ; if ( type == null ) type = ( IType ) je ; return getSuitableRubyElement ( type ) ; case IRubyElement . SCRIPT : return getTypeForRubyScript ( ( IRubyScript ) je ) ; case IRubyElement . IMPORT_CONTAINER : case IRubyElement . IMPORT_DECLARATION : return findElementToSelect ( je . getParent ( ) ) ; default : if ( je instanceof IMember ) return findElementToSelect ( ( ( IMember ) je ) . getDeclaringType ( ) ) ; return null ; } } protected IRubyElement findInputForRubyElement ( IRubyElement je ) { if ( je == null ) return null ; if ( je . getElementType ( ) == IRubyElement . SOURCE_FOLDER_ROOT || je . getElementType ( ) == IRubyElement . RUBY_PROJECT ) return findInputForRubyElement ( je , true ) ; else return findInputForRubyElement | |
1,712 | <s> package org . rubypeople . rdt . internal . corext . refactoring . base ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IAdaptable ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . core . runtime . NullProgressMonitor ; import org . eclipse . core . runtime . SubProgressMonitor ; import org . eclipse . core . filebuffers . FileBuffers ; import org . eclipse . core . filebuffers . ITextFileBuffer ; import org . eclipse . core . filebuffers . ITextFileBufferManager ; import org . eclipse . core . resources . IFile ; import org . eclipse . core . resources . IResource ; import org . eclipse . jface . text . IDocument ; import org . eclipse . jface . text . IDocumentExtension4 ; import org . eclipse . ltk . core . refactoring . Change ; import org . eclipse . ltk . core . refactoring . RefactoringStatus ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . refactoring . core . Messages ; import org . rubypeople . rdt . refactoring . core . Resources ; public abstract class RDTChange extends Change { private long fModificationStamp ; private boolean fReadOnly ; private static class ValidationState { private IResource fResource ; private int fKind ; private boolean fDirty ; private boolean fReadOnly ; private long fModificationStamp ; private ITextFileBuffer fTextFileBuffer ; public static final int RESOURCE = 1 ; public static final int DOCUMENT = 2 ; public ValidationState ( IResource resource ) { fResource = resource ; if ( resource instanceof IFile ) { initializeFile ( ( IFile ) resource ) ; } else { initializeResource ( resource ) ; } } public void checkDirty ( RefactoringStatus status , long stampToMatch , IProgressMonitor pm ) throws CoreException { if ( fDirty ) { if ( fKind == DOCUMENT && fTextFileBuffer != null && stampToMatch == fModificationStamp ) { fTextFileBuffer . commit ( pm , false ) ; } else { status . addFatalError ( Messages . format ( Messages . Change_is_unsaved , fResource . getFullPath ( ) . toString ( ) ) ) ; } } } public void checkDirty ( RefactoringStatus status ) { if ( fDirty ) { status . addFatalError ( Messages . format ( Messages . Change_is_unsaved , fResource . getFullPath ( ) . toString ( ) ) ) ; } } public void checkReadOnly ( RefactoringStatus status ) { if ( fReadOnly ) { status . addFatalError ( Messages . format ( Messages . Change_is_read_only , fResource . getFullPath ( ) . toString ( ) ) ) ; } } public void checkSameReadOnly ( RefactoringStatus status , boolean valueToMatch ) { if ( fReadOnly != valueToMatch ) { status . addFatalError ( Messages . format ( Messages . Change_same_read_only , fResource . getFullPath ( ) . toString ( ) ) ) ; } } public void checkModificationStamp ( RefactoringStatus status , long stampToMatch ) { if ( fKind == DOCUMENT ) { if ( stampToMatch != IDocumentExtension4 . UNKNOWN_MODIFICATION_STAMP && fModificationStamp != stampToMatch ) { status . addFatalError ( Messages . format ( Messages . Change_has_modifications , fResource . getFullPath ( ) . toString ( ) ) ) ; } } else { if ( stampToMatch != IResource . NULL_STAMP && fModificationStamp != stampToMatch ) { status . addFatalError ( Messages . format ( Messages . Change_has_modifications , fResource . getFullPath ( ) . toString ( ) ) ) ; } } } private void initializeFile ( IFile file ) { fTextFileBuffer = getBuffer ( file ) ; if ( fTextFileBuffer == null ) { initializeResource ( file ) ; } else { IDocument document = fTextFileBuffer . getDocument ( ) ; fDirty = fTextFileBuffer . isDirty ( ) ; fReadOnly = Resources . isReadOnly ( file ) ; if ( document instanceof IDocumentExtension4 ) { fKind = DOCUMENT ; fModificationStamp = ( ( IDocumentExtension4 ) document ) . getModificationStamp ( ) ; } else { fKind = RESOURCE ; fModificationStamp = file . getModificationStamp ( ) ; } } } private void initializeResource ( IResource resource ) { fKind = RESOURCE ; fDirty = false ; fReadOnly = Resources . isReadOnly ( resource ) ; fModificationStamp = resource . getModificationStamp ( ) ; } } protected static final int NONE = 0 ; protected static final int READ_ONLY = 1 << 0 ; protected static final int DIRTY = 1 << 1 ; private static final int SAVE = 1 << 2 ; protected static final int SAVE_IF_DIRTY = SAVE | DIRTY ; protected RDTChange ( ) { fModificationStamp = IResource . NULL_STAMP ; fReadOnly = false ; } public void initializeValidationData ( IProgressMonitor pm ) { IResource resource = getResource ( getModifiedElement ( ) ) ; if ( resource != null ) { fModificationStamp = getModificationStamp ( resource ) ; fReadOnly = Resources . isReadOnly ( resource ) ; } } protected final RefactoringStatus isValid ( IProgressMonitor pm , int flags ) throws CoreException { pm . beginTask ( "" , 2 ) ; try { RefactoringStatus result = new RefactoringStatus ( ) ; Object modifiedElement = getModifiedElement ( ) ; checkExistence ( result , modifiedElement ) ; if ( result . hasFatalError ( ) ) return result ; if ( flags == NONE ) return result ; IResource resource = getResource ( modifiedElement ) ; if ( resource != null ) { ValidationState state = new ValidationState ( resource ) ; state . checkModificationStamp ( result , fModificationStamp ) ; if ( result . hasFatalError ( ) ) return result ; state . checkSameReadOnly ( result , fReadOnly ) ; if ( result . hasFatalError ( ) ) return result ; if ( ( flags & READ_ONLY ) != 0 ) { state . checkReadOnly ( result ) ; if ( result . hasFatalError ( ) ) return result ; } if ( ( flags & DIRTY ) != 0 ) { if ( ( flags & SAVE ) != 0 ) { state . checkDirty ( result , fModificationStamp , new SubProgressMonitor ( pm , 1 ) ) ; } else { state . checkDirty ( result ) ; } } } return result ; } finally { pm . done ( ) ; } } protected final RefactoringStatus isValid ( int flags ) throws CoreException { return isValid ( new NullProgressMonitor ( ) , flags ) ; } protected static void checkIfModifiable ( RefactoringStatus status , | |
1,713 | <s> package org . rubypeople . rdt . internal . codeassist ; import java . util . ArrayList ; import java . util . Collection ; import java . util . Collections ; import java . util . HashSet ; import java . util . List ; import java . util . Set ; import org . eclipse . core . resources . IFile ; import org . eclipse . core . resources . ResourcesPlugin ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IPath ; import org . jruby . ast . AliasNode ; import org . jruby . ast . ArgumentNode ; import org . jruby . ast . CallNode ; import org . jruby . ast . ClassNode ; import org . jruby . ast . ClassVarAsgnNode ; import org . jruby . ast . ClassVarDeclNode ; import org . jruby . ast . ClassVarNode ; import org . jruby . ast . Colon2Node ; import org . jruby . ast . ConstDeclNode ; import org . jruby . ast . ConstNode ; import org . jruby . ast . DAsgnNode ; import org . jruby . ast . DVarNode ; import org . jruby . ast . DefnNode ; import org . jruby . ast . DefsNode ; import org . jruby . ast . FCallNode ; import org . jruby . ast . InstAsgnNode ; import org . jruby . ast . InstVarNode ; import org . jruby . ast . LocalAsgnNode ; import org . jruby . ast . LocalVarNode ; import org . jruby . ast . ModuleNode ; import org . jruby . ast . Node ; import org . jruby . ast . RootNode ; import org . jruby . ast . StrNode ; import org . jruby . ast . VCallNode ; import org . jruby . ast . types . INameNode ; import org . rubypeople . rdt . core . ILoadpathEntry ; import org . rubypeople . rdt . core . IMethod ; import org . rubypeople . rdt . core . IParent ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . IRubyScript ; import org . rubypeople . rdt . core . ISourceFolder ; import org . rubypeople . rdt . core . ISourceFolderRoot ; import org . rubypeople . rdt . core . IType ; import org . rubypeople . rdt . core . ITypeHierarchy ; import org . rubypeople . rdt . core . RubyCore ; import org . rubypeople . rdt . core . RubyModelException ; import org . rubypeople . rdt . core . codeassist . CodeResolver ; import org . rubypeople . rdt . core . codeassist . ResolveContext ; import org . rubypeople . rdt . core . search . CollectingSearchRequestor ; import org . rubypeople . rdt . core . search . IRubySearchConstants ; import org . rubypeople . rdt . core . search . IRubySearchScope ; import org . rubypeople . rdt . core . search . SearchEngine ; import org . rubypeople . rdt . core . search . SearchMatch ; import org . rubypeople . rdt . core . search . SearchParticipant ; import org . rubypeople . rdt . core . search . SearchPattern ; import org . rubypeople . rdt . internal . core . RubyScript ; import org . rubypeople . rdt . internal . core . search . BasicSearchEngine ; import org . rubypeople . rdt . internal . core . util . ASTUtil ; import org . rubypeople . rdt . internal . core . util . Util ; import org . rubypeople . rdt . internal . ti . ITypeGuess ; import org . rubypeople . rdt . internal . ti . ITypeInferrer ; import org . rubypeople . rdt . internal . ti . util . ClosestSpanningNodeLocator ; import org . rubypeople . rdt . internal . ti . util . FirstPrecursorNodeLocator ; import org . rubypeople . rdt . internal . ti . util . INodeAcceptor ; import org . rubypeople . rdt . internal . ti . util . OffsetNodeLocator ; public class RubyCodeResolver extends CodeResolver { private static final String OBJECT = "Object" ; private static final String NEW = "new" ; private static final String DEFAULT_FILE_EXTENSION = ".rb" ; private static final String LOAD = "load" ; private static final String REQUIRE = "require" ; private static final String INITIALIZE = "initialize" ; private HashSet < IType > fVisitedTypes ; @ Override public void select ( ResolveContext context ) throws RubyModelException { Node selected = OffsetNodeLocator . Instance ( ) . getNodeAtOffset ( context . getAST ( ) , context . getStartOffset ( ) ) ; if ( selected instanceof StrNode ) { resolveString ( context , selected ) ; return ; } if ( selected instanceof AliasNode ) { resolveAlias ( context , selected ) ; return ; } if ( selected instanceof Colon2Node ) { resolveColon2Node ( context , selected ) ; return ; } if ( selected instanceof DVarNode ) { resolveDynamicVar ( context , selected ) ; return ; } if ( selected instanceof ConstNode ) { resolveConstant ( context , selected ) ; return ; } if ( isLocalVarRef ( selected ) ) { resolveLocalVar ( context , selected ) ; return ; } if ( isInstanceVarRef ( selected ) ) { resolveInstanceVar ( context , selected ) ; return ; } if ( isClassVarRef ( selected ) ) { resolveClassVarRef ( context , selected ) ; return ; } if ( isDeclaration ( selected ) ) { resolveDeclaration ( context ) ; return ; } if ( isMethodCall ( selected ) ) { resolveMethodCall ( context , selected ) ; return ; } } private boolean isDeclaration ( Node selected ) { return ( selected instanceof DefnNode ) || ( selected instanceof DefsNode ) || ( selected instanceof ConstDeclNode ) || ( selected instanceof ClassNode ) || ( selected instanceof ModuleNode ) || ( selected instanceof ClassVarDeclNode ) ; } protected void resolveString ( ResolveContext context , Node selected ) throws RubyModelException { StrNode string = ( StrNode ) selected ; FCallNode fcall = ( FCallNode ) ClosestSpanningNodeLocator . Instance ( ) . findClosestSpanner ( context . getAST ( ) , string . getPosition ( ) . getStartOffset ( ) , new INodeAcceptor ( ) { public boolean doesAccept ( Node node ) { return node instanceof FCallNode ; } } ) ; if ( fcall == null ) return ; IRubyScript script = context . getScript ( ) ; if ( fcall . getName ( ) . equals ( REQUIRE ) || fcall . getName ( ) . equals ( LOAD ) ) { String value = string . getValue ( ) . toString ( ) ; if ( ! value . endsWith ( DEFAULT_FILE_EXTENSION ) ) { value += DEFAULT_FILE_EXTENSION ; } ILoadpathEntry [ ] entries = script . getRubyProject ( ) . getResolvedLoadpath ( true ) ; for ( int i = 0 ; i < entries . length ; i ++ ) { IPath path = entries [ i ] . getPath ( ) . append ( value ) ; if ( path . toFile ( ) . exists ( ) ) { IFile file = null ; if ( path . isAbsolute ( ) ) { file = ResourcesPlugin . getWorkspace ( ) . getRoot ( ) . getFileForLocation ( path ) ; } else { file = ResourcesPlugin . getWorkspace ( ) . getRoot ( ) . getFile ( path ) ; } if ( file != null ) { putResolved ( context , new IRubyElement [ ] { RubyCore . create ( file ) } ) ; return ; } ISourceFolderRoot sfRoot = script . getRubyProject ( ) . getSourceFolderRoot ( entries [ i ] . getPath ( ) . toPortableString ( ) ) ; String [ ] parts = value . split ( "[\\|/]" ) ; String [ ] minusFileName ; if ( parts . length == 1 ) { minusFileName = new String [ 0 ] ; } else { minusFileName = new String [ parts . length - 1 ] ; System . arraycopy ( parts , 0 , minusFileName , 0 , minusFileName . length ) ; } ISourceFolder folder = sfRoot . getSourceFolder ( minusFileName ) ; putResolved ( context , new IRubyElement [ ] { folder . getRubyScript ( path . lastSegment ( ) ) } ) ; return ; } } } } protected void putResolved ( ResolveContext context , IRubyElement [ ] resolved ) { if ( resolved != null && resolved . length > 0 ) context . putResolved ( resolved ) ; } protected void resolveMethodCall ( ResolveContext context , Node selected ) throws RubyModelException { String methodName = getName ( selected ) ; if ( methodName . equals ( NEW ) ) methodName = INITIALIZE ; Set < IRubyElement > possible = new HashSet < IRubyElement > ( ) ; IType [ ] types = getReceiver ( context , selected ) ; for ( int i = 0 ; i < types . length ; i ++ ) { IType type = types [ i ] ; if ( fVisitedTypes == null ) { fVisitedTypes = new HashSet < IType > ( ) ; } Collection < IMethod > methods = suggestMethods ( type ) ; fVisitedTypes . clear ( ) ; for ( IMethod method : methods ) | |
1,714 | <s> package de . fuberlin . wiwiss . d2rq . find ; import java . util . ArrayList ; import java . util . Collection ; import java . util . Collections ; import java . util . Comparator ; import java . util . HashMap ; import java . util . List ; import java . util . Map ; import com . hp . hpl . jena . datatypes . RDFDatatype ; import com . hp . hpl . jena . graph . Node ; import com . hp . hpl . jena . sparql . core . Var ; import de . fuberlin . wiwiss . d2rq . algebra . Attribute ; import de . fuberlin . wiwiss . d2rq . algebra . RelationalOperators ; import de . fuberlin . wiwiss . d2rq . algebra . TripleRelation ; import de . fuberlin . wiwiss . d2rq . expr . Expression ; import de . fuberlin . wiwiss . d2rq . nodes . NodeMaker ; import de . fuberlin . wiwiss . d2rq . nodes . NodeSetFilter ; import de . fuberlin . wiwiss . d2rq . values . BlankNodeID ; import de . fuberlin . wiwiss . d2rq . values . Pattern ; import de . fuberlin . wiwiss . d2rq . values . Translator ; public class URIMakerRule implements Comparator < TripleRelation > { private Map < NodeMaker , URIMakerIdentifier > identifierCache = new HashMap < NodeMaker , URIMakerIdentifier > ( ) ; public List < TripleRelation > sortRDFRelations ( Collection < TripleRelation > tripleRelations ) { ArrayList < TripleRelation > results = new ArrayList < TripleRelation > ( tripleRelations ) ; Collections . sort ( results , this ) ; return results ; } public URIMakerRuleChecker createRuleChecker ( Node node ) { return new URIMakerRuleChecker ( node ) ; } public int compare ( TripleRelation o1 , TripleRelation o2 ) { int priority1 = priority ( o1 ) ; int priority2 = priority ( o2 ) ; if ( priority1 > priority2 ) { return - 1 ; } if ( priority1 < priority2 ) { return 1 ; } return 0 ; } private int priority ( TripleRelation relation ) { int result = 0 ; for ( Var var : relation . variables ( ) ) { URIMakerIdentifier id = uriMakerIdentifier ( relation . nodeMaker ( var ) ) ; if ( id . isURIPattern ( ) | |
1,715 | <s> package com . asakusafw . compiler . operator . io ; import java . io . IOException ; import com . asakusafw . compiler . operator . model . MockKeyValue2 ; import com . asakusafw . runtime . io . ModelInput ; import com . asakusafw . runtime . io . RecordParser ; public final class MockKeyValue2Input implements ModelInput < MockKeyValue2 > { private final RecordParser parser ; public MockKeyValue2Input ( RecordParser parser ) { if ( parser == null ) { throw new IllegalArgumentException ( "parser" ) ; } this . parser = parser ; } @ Override public boolean readTo ( MockKeyValue2 model ) throws IOException { if ( parser . next ( | |
1,716 | <s> package com . asakusafw . runtime . io . sequencefile ; import java . io . Closeable ; import java . io . IOException ; import org . apache . hadoop . io . NullWritable ; import org . apache . hadoop . io . SequenceFile ; | |
1,717 | <s> package org . oddjob . doclet ; import junit . framework . TestCase ; public class ManualWriterTest extends TestCase { public void testIndexFileWithPackage ( ) { String result = ManualWriter . getIndexFile ( "" ) ; assertEquals ( "" , result ) ; } public void testIndexFileWithSmallNames ( ) { String result = ManualWriter . getIndexFile ( "a.b.c.X" ) ; assertEquals ( "" , result ) ; } public void testIndexFileNoPackage ( ) { String result = ManualWriter . getIndexFile ( "HelloWorld" ) ; assertEquals ( "index.html" , result ) ; } public | |
1,718 | <s> package org . rubypeople . rdt . internal . debug . ui . rubyvms ; import java . io . File ; import java . util . Iterator ; import org . eclipse . core . runtime . IPath ; import org . eclipse . core . runtime . IStatus ; import org . eclipse . core . runtime . Path ; import org . eclipse . core . runtime . Status ; import org . eclipse . jface . dialogs . IDialogSettings ; import org . eclipse . jface . viewers . ISelectionChangedListener ; import org . eclipse . jface . viewers . IStructuredSelection ; import org . eclipse . jface . viewers . SelectionChangedEvent ; import org . eclipse . jface . viewers . TreeViewer ; import org . eclipse . swt . SWT ; import org . eclipse . swt . events . SelectionEvent ; import org . eclipse . swt . events . SelectionListener ; import org . eclipse . swt . graphics . Font ; import org . eclipse . swt . layout . GridData ; import org . eclipse . swt . layout . GridLayout ; import org . eclipse . swt . widgets . Button ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Control ; import org . eclipse . swt . widgets . DirectoryDialog ; import org . eclipse . swt . widgets . Label ; import org . rubypeople . rdt . debug . ui . RdtDebugUiConstants ; import org . rubypeople . rdt . internal . debug . ui . RdtDebugUiPlugin ; import org . rubypeople . rdt . launching . IVMInstall ; import org . rubypeople . rdt . launching . IVMInstallType ; import org . rubypeople . rdt . launching . RubyRuntime ; public class VMLibraryBlock implements SelectionListener , ISelectionChangedListener { protected static final String LAST_PATH_SETTING = "" ; protected static final String DIALOG_SETTINGS_PREFIX = "" ; protected boolean fInCallback = false ; protected IVMInstall fVmInstall ; protected IVMInstallType fVmInstallType ; protected File fHome ; protected LibraryContentProvider fLibraryContentProvider ; protected AddVMDialog fDialog = null ; protected TreeViewer fLibraryViewer ; private Button fUpButton ; private Button fDownButton ; private Button fRemoveButton ; private Button fAddButton ; protected Button fDefaultButton ; public VMLibraryBlock ( AddVMDialog dialog ) { fDialog = dialog ; } public Control createControl ( Composite parent ) { Font font = parent . getFont ( ) ; Composite comp = new Composite ( parent , SWT . NONE ) ; GridLayout topLayout = new GridLayout ( ) ; topLayout . numColumns = 2 ; topLayout . marginHeight = 0 ; topLayout . marginWidth = 0 ; comp . setLayout ( topLayout ) ; GridData gd = new GridData ( GridData . FILL_BOTH ) ; comp . setLayoutData ( gd ) ; fLibraryViewer = new TreeViewer ( comp ) ; gd = new GridData ( GridData . FILL_BOTH ) ; gd . heightHint = 6 ; fLibraryViewer . getControl ( ) . setLayoutData ( gd ) ; fLibraryContentProvider = new LibraryContentProvider ( ) ; fLibraryViewer . setContentProvider ( fLibraryContentProvider ) ; fLibraryViewer . setLabelProvider ( new LibraryLabelProvider ( ) ) ; fLibraryViewer . setInput ( this ) ; fLibraryViewer . addSelectionChangedListener ( this ) ; Composite pathButtonComp = new Composite ( comp , SWT . NONE ) ; GridLayout pathButtonLayout = new GridLayout ( ) ; pathButtonLayout . marginHeight = 0 ; pathButtonLayout . marginWidth = 0 ; pathButtonComp . setLayout ( pathButtonLayout ) ; gd = new GridData ( GridData . VERTICAL_ALIGN_BEGINNING | GridData . HORIZONTAL_ALIGN_FILL ) ; pathButtonComp . setLayoutData ( gd ) ; pathButtonComp . setFont ( font ) ; fAddButton = createPushButton ( pathButtonComp , RubyVMMessages . VMLibraryBlock_7 ) ; fAddButton . addSelectionListener ( this ) ; fRemoveButton = createPushButton ( pathButtonComp , RubyVMMessages . VMLibraryBlock_6 ) ; fRemoveButton . addSelectionListener ( this ) ; fUpButton = createPushButton ( pathButtonComp , RubyVMMessages . VMLibraryBlock_4 ) ; fUpButton . addSelectionListener ( this ) ; fDownButton = createPushButton ( pathButtonComp , RubyVMMessages . VMLibraryBlock_5 ) ; fDownButton . addSelectionListener ( this ) ; fDefaultButton = createPushButton ( pathButtonComp , RubyVMMessages . VMLibraryBlock_9 ) ; fDefaultButton . addSelectionListener ( this ) ; return comp ; } public void restoreDefaultLibraries ( ) { IPath [ ] libs = null ; File installLocation = getHomeDirectory ( ) ; if ( installLocation == null ) { libs = new IPath [ 0 ] ; } else { libs = getVMInstallType ( ) . getDefaultLibraryLocations ( installLocation ) ; } fLibraryContentProvider . setLibraries ( libs ) ; update ( ) ; } protected Button createPushButton ( Composite parent , String label ) { Button button = new Button ( parent , SWT . PUSH ) ; button . setFont ( parent . getFont ( ) ) ; button . setText ( label ) ; fDialog . setButtonLayoutData ( button ) ; return button ; } protected void createVerticalSpacer ( Composite comp , int colSpan ) { Label label = new Label ( comp , SWT . NONE ) ; GridData gd = new GridData ( ) ; gd . horizontalSpan = colSpan ; label . setLayoutData ( gd ) ; } public void initializeFrom ( IVMInstall vm , IVMInstallType type ) { fVmInstall = vm ; fVmInstallType = type ; if ( vm != null ) { setHomeDirectory ( vm . getInstallLocation ( ) ) ; fLibraryContentProvider . setLibraries ( RubyRuntime . getLibraryLocations ( getVMInstall ( ) ) ) ; } update ( ) ; } public void setHomeDirectory ( File file ) { fHome = file ; } protected File getHomeDirectory ( ) { return fHome ; } public void update ( ) { updateButtons ( ) ; IStatus status = Status . OK_STATUS ; if ( fLibraryContentProvider . getLibraries ( ) . length == 0 ) { status = new Status ( IStatus . ERROR , RdtDebugUiPlugin . getUniqueIdentifier ( ) , RdtDebugUiConstants . INTERNAL_ERROR , RubyVMMessages . VMLibraryBlock_Libraries_cannot_be_empty__1 , null ) ; } LibraryStandin [ ] standins = fLibraryContentProvider . getStandins ( ) ; for ( int i = 0 ; i < standins . length ; i ++ ) { IStatus st = standins [ i ] . validate ( ) ; if ( ! st . isOK ( ) ) { status = st ; break ; } } fDialog . setSystemLibraryStatus ( status ) ; fDialog . updateStatusLine | |
1,719 | <s> package org . oddjob . util ; public class ClassLoaderSorter { public ClassLoader getTopLoader ( Class < ? > [ ] forClasses ) { ClassLoader topLoader | |
1,720 | <s> package net . sf . sveditor . core . db . index ; import java . io . File ; import java . io . FileInputStream ; import java . io . IOException ; import java . io . InputStream ; import java . util . ArrayList ; import java . util . List ; public class SVDBFSFileSystemProvider implements ISVDBFileSystemProvider { public void init ( String path ) { } public void dispose ( ) { } public void addMarker ( String path , String type , int lineno , String msg ) { } public void clearMarkers ( String path ) { } public void closeStream ( InputStream in ) { try { in . close ( ) ; } | |
1,721 | <s> package com . asakusafw . dmdl . source ; import java . io . IOException ; import java . io . InputStream ; import java . io . InputStreamReader ; import java . io . Reader ; import java . net . URI ; import java . net . URISyntaxException ; import java . net . URL ; import java . nio . charset . Charset ; import java . util . Iterator ; import java . util . List ; import java . util . NoSuchElementException ; import com . asakusafw . utils . collections . Lists ; public class DmdlSourceResource implements DmdlSourceRepository { private final List < URL > resources ; private final Charset encoding ; public DmdlSourceResource ( List < URL > sourceFiles , Charset encoding ) { if ( sourceFiles == null ) { throw new IllegalArgumentException ( | |
1,722 | <s> package com . asakusafw . compiler . flow . testing . external ; import com . asakusafw . compiler . flow . testing . model . Part1 ; import com . asakusafw . compiler . testing . TemporaryOutputDescription ; public class Part1MockExporterDescription extends TemporaryOutputDescription { @ Override public Class < ? > getModelType ( ) { return Part1 . class ; } | |
1,723 | <s> package com . pogofish . jadt . samples . comments . data ; import java . util . * ; public abstract class CommentStyle1 { private CommentStyle1 ( ) { } public static final CommentStyle1 _Foo ( int arg1 , int arg2 ) { return new Foo ( arg1 , arg2 ) ; } private static final CommentStyle1 _Bar = new Bar ( ) ; public static final CommentStyle1 _Bar ( ) { return _Bar ; } public static interface MatchBlock < ResultType > { ResultType _case ( Foo x ) ; ResultType _case ( Bar x ) ; } public static abstract class MatchBlockWithDefault < ResultType > implements MatchBlock < ResultType > { @ Override public ResultType _case ( Foo x ) { return _default ( x ) ; } @ Override public | |
1,724 | <s> package org . oddjob . jobs ; import java . io . ByteArrayOutputStream ; import java . util . Arrays ; import junit . framework . TestCase ; import org . oddjob . Oddjob ; import org . oddjob . OddjobLookup ; import org . oddjob . arooa . reflect . BeanView ; import org . oddjob . arooa . standard . StandardArooaSession ; import org . oddjob . arooa . xml . XMLConfiguration ; public class BeanReportTest extends TestCase { public static class Fruit { private String type ; private String variety ; private String colour ; private double size ; public String getType ( ) { return type ; } public void setType ( String type ) { this . type = type ; } public String getVariety ( ) { return variety ; } public void setVariety ( String variety ) { this . variety = variety ; } public String getColour ( ) { return colour ; } public void setColour ( String colour ) { this . colour = colour ; } public double getSize ( ) { return size ; } public void setSize ( double size ) { this . size = size ; } } private class OurView implements BeanView { @ Override public String titleFor ( String property ) { if ( "colour" . equals ( property ) ) { return "The Colour" ; } return property ; } @ Override public String [ ] getProperties ( ) { return new String [ ] { "colour" , "size" , "type" , "variety" } ; } } String EOL = System . getProperty ( "" ) ; private Object [ ] createFruit ( ) { Fruit fruit1 = new Fruit ( ) ; fruit1 . setType ( "Apple" ) ; fruit1 . setVariety ( "Cox" ) ; fruit1 . setColour ( "" ) ; fruit1 . setSize ( 7.6 ) ; Fruit fruit2 = new Fruit ( ) ; fruit2 . setType ( "Orange" ) ; fruit2 . setVariety ( "Jaffa" ) ; fruit2 . setColour ( "Orange" ) ; fruit2 . setSize ( 9.245 ) ; return new Object [ ] { fruit1 , fruit2 } ; } public void testFruitReport ( ) { ByteArrayOutputStream out = new ByteArrayOutputStream ( ) ; Object [ ] values = createFruit ( ) ; BeanReportJob test = new BeanReportJob ( ) ; test . setOutput ( out ) ; test . setArooaSession ( new StandardArooaSession ( ) ) ; test . setBeans ( Arrays . asList | |
1,725 | <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 . IndexedDesignProperty ; 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 . FieldGroup ; import org . oddjob . arooa . design . screem . Form ; import org . oddjob . arooa . design . screem . StandardForm ; import org . oddjob . arooa . design . screem . TabGroup ; import org . oddjob . arooa . parsing . ArooaContext ; import org . oddjob . arooa . parsing . ArooaElement ; import org . oddjob . sql . SQLJob ; public class SqlDC implements DesignFactory { public DesignInstance createDesign ( ArooaElement element , ArooaContext parentContext ) { return new SqlDesign ( element , parentContext ) ; } } class SqlDesign extends BaseDC { private final SimpleDesignProperty connection ; private final SimpleDesignProperty input ; private final IndexedDesignProperty parameters ; private final SimpleTextAttribute autocommit ; private final SimpleTextAttribute callable ; private final SimpleTextAttribute escapeProcessing ; private final SimpleTextAttribute onError ; private final SimpleDesignProperty results ; private final SimpleTextAttribute expandProperties ; private final SimpleTextAttribute encoding ; private final SimpleTextAttribute delimiter ; private final SimpleTextAttribute delimiterType ; private final SimpleTextAttribute keepFormat ; public SqlDesign ( ArooaElement element , | |
1,726 | <s> package org . rubypeople . rdt . internal . ui . viewsupport ; import org . eclipse . core . resources . IProject ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . runtime . IPath ; import org . eclipse . ui . model . IWorkbenchAdapter ; import org . rubypeople . rdt . core . IField ; import org . rubypeople . rdt . core . ILoadpathContainer ; import org . rubypeople . rdt . core . ILoadpathEntry ; import org . rubypeople . rdt . core . ILocalVariable ; import org . rubypeople . rdt . core . IMember ; import org . rubypeople . rdt . core . IMethod ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . IRubyProject ; import org . rubypeople . rdt . core . IRubyScript ; import org . rubypeople . rdt . core . ISourceFolder ; import org . rubypeople . rdt . core . ISourceFolderRoot ; import org . rubypeople . rdt . core . IType ; import org . rubypeople . rdt . core . LoadpathContainerInitializer ; import org . rubypeople . rdt . core . RubyCore ; import org . rubypeople . rdt . core . RubyModelException ; import org . rubypeople . rdt . internal . core . util . Messages ; import org . rubypeople . rdt . internal . corext . util . RubyModelUtil ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; import org . rubypeople . rdt . internal . ui . RubyUIMessages ; import org . rubypeople . rdt . internal . ui . packageview . LoadPathContainer ; import org . rubypeople . rdt . internal . ui . viewsupport . ColoredString . Style ; import org . rubypeople . rdt . launching . RubyRuntime ; import org . rubypeople . rdt . ui . RubyElementLabels ; public class ColoredRubyElementLabels { public static final Style QUALIFIER_STYLE = new Style ( ColoredViewersManager . QUALIFIER_COLOR_NAME ) ; public static final Style COUNTER_STYLE = new Style ( ColoredViewersManager . COUNTER_COLOR_NAME ) ; public static final Style DECORATIONS_STYLE = new Style ( ColoredViewersManager . DECORATIONS_COLOR_NAME ) ; private static final Style APPENDED_TYPE_STYLE = DECORATIONS_STYLE ; public final static long COLORIZE = 1L << 55 ; private final static long QUALIFIER_FLAGS = RubyElementLabels . P_COMPRESSED | RubyElementLabels . USE_RESOLVED ; private static final boolean getFlag ( long flags , long flag ) { return ( flags & flag ) != 0 ; } public static ColoredString getTextLabel ( Object obj , long flags ) { if ( obj instanceof IRubyElement ) { return getElementLabel ( ( IRubyElement ) obj , flags ) ; } else if ( obj instanceof IResource ) { return new ColoredString ( ( ( IResource ) obj ) . getName ( ) ) ; } else if ( obj instanceof LoadPathContainer ) { LoadPathContainer container = ( LoadPathContainer ) obj ; return getContainerEntryLabel ( container . getLoadpathEntry ( ) . getPath ( ) , container . getRubyProject ( ) ) ; } return new ColoredString ( RubyElementLabels . getTextLabel ( obj , flags ) ) ; } public static ColoredString getElementLabel ( IRubyElement element , long flags ) { ColoredString result = new ColoredString ( ) ; getElementLabel ( element , flags , result ) ; return result ; } public static void getElementLabel ( IRubyElement element , long flags , ColoredString result ) { int type = element . getElementType ( ) ; ISourceFolderRoot root = null ; if ( type != IRubyElement . RUBY_MODEL && type != IRubyElement . RUBY_PROJECT && type != IRubyElement . SOURCE_FOLDER_ROOT ) root = RubyModelUtil . getSourceFolderRoot ( element ) ; if ( root != null && getFlag ( flags , RubyElementLabels . PREPEND_ROOT_PATH ) ) { getSourceFolderRootLabel ( root , RubyElementLabels . ROOT_QUALIFIED , result ) ; result . append ( RubyElementLabels . CONCAT_STRING ) ; } switch ( type ) { case IRubyElement . METHOD : getMethodLabel ( ( IMethod ) element , flags , result ) ; break ; case IRubyElement . FIELD : getFieldLabel ( ( IField ) element , flags , result ) ; break ; case IRubyElement . LOCAL_VARIABLE : getLocalVariableLabel ( ( ILocalVariable ) element , flags , result ) ; break ; case IRubyElement . TYPE : getTypeLabel ( ( IType ) element , flags , result ) ; break ; case IRubyElement . SCRIPT : getCompilationUnitLabel ( ( IRubyScript ) element , flags , result ) ; break ; case IRubyElement . SOURCE_FOLDER : getSourceFolderLabel ( ( ISourceFolder ) element , flags , result ) ; break ; case IRubyElement . SOURCE_FOLDER_ROOT : getSourceFolderRootLabel ( ( ISourceFolderRoot ) element , flags , result ) ; break ; case IRubyElement . IMPORT_CONTAINER : case IRubyElement . IMPORT_DECLARATION : getDeclarationLabel ( element , flags , result ) ; break ; case IRubyElement . RUBY_PROJECT : case IRubyElement . RUBY_MODEL : result . append ( element . getElementName ( ) ) ; break ; default : result . append ( element . getElementName ( ) ) ; } if ( root != null && getFlag ( flags , RubyElementLabels . APPEND_ROOT_PATH ) ) { int offset = result . length ( ) ; result . append ( RubyElementLabels . CONCAT_STRING ) ; getSourceFolderRootLabel ( root , RubyElementLabels . ROOT_QUALIFIED , result ) ; if ( getFlag ( flags , COLORIZE ) ) { result . colorize ( offset , result . length ( ) - offset , QUALIFIER_STYLE ) ; } } } public static void getMethodLabel ( IMethod method | |
1,727 | <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 . ModelInput ; import com . asakusafw . runtime . io . RecordParser ; public final class Part2Input implements ModelInput < Part2 > { private final RecordParser parser ; public Part2Input ( RecordParser parser ) { if ( parser == null ) { throw new IllegalArgumentException ( "parser" ) ; } this . parser = parser ; } @ Override public boolean readTo ( Part2 model ) throws IOException { if ( parser . next ( ) | |
1,728 | <s> package org . oddjob . persist ; import java . io . File ; import java . io . IOException ; import java . io . ObjectOutputStream ; import java . io . Serializable ; import java . lang . reflect . InvocationHandler ; import java . lang . reflect . InvocationTargetException ; import java . lang . reflect . Method ; import java . lang . reflect . Proxy ; import java . net . URL ; import java . net . URLClassLoader ; import junit . framework . TestCase ; import org . oddjob . OurDirs ; import org . oddjob . io . BufferType ; import org . oddjob . oddballs . BuildOddballs ; public class OddjobObjectInputStreamTest extends TestCase { @ Override protected void setUp ( ) throws Exception { new BuildOddballs ( ) . run ( ) ; } public void testNonSystemClassLoaderDeserialisation ( ) throws IOException , InstantiationException , IllegalAccessException , ClassNotFoundException { OurDirs dirs = new OurDirs ( ) ; File file = new File ( dirs . base ( ) , "" ) ; URL [ ] urls = { file . toURI ( ) . toURL ( ) } ; URLClassLoader test = new URLClassLoader ( urls ) ; Class < ? > appleClass = Class . forName ( "fruit.Apple" , true , test ) ; Object apple = appleClass . newInstance ( ) ; BufferType buffer = new BufferType ( ) ; buffer . configured ( ) ; ObjectOutputStream oo = new ObjectOutputStream ( buffer . toOutputStream ( ) ) ; oo . writeObject ( apple ) ; OddjobObjectInputStream oi = new OddjobObjectInputStream ( buffer . toInputStream ( ) , test ) ; Object copy = oi . readObject ( ) ; assertEquals ( appleClass , copy . getClass ( ) ) ; } private static class OurHandler implements InvocationHandler , Serializable { private static final long serialVersionUID = 2009092300L ; String methodName ; public Object invoke ( Object proxy , Method method , Object [ ] args ) throws Throwable { methodName = method . getName ( ) ; return null ; } } public void testNonSystemClassLoaderProxyDeserialisation ( ) throws IOException , InstantiationException , IllegalAccessException , ClassNotFoundException , SecurityException , NoSuchMethodException , IllegalArgumentException , InvocationTargetException { OurDirs dirs = new OurDirs ( ) ; File file = new File ( dirs . base ( ) , "" ) ; URL [ ] urls = { file . toURI ( ) . toURL ( ) } ; URLClassLoader test = new URLClassLoader ( urls ) ; Class < ? > appleClass = Class . forName ( "fruit.Fruit" , true , test ) ; Object | |
1,729 | <s> package com . asakusafw . runtime . testing ; import java . util . ArrayList ; import java . util . List ; import com . asakusafw . runtime . core . Result ; public class MockResult < T > implements Result < T > { private List < T > results = new ArrayList < T > ( ) ; public static < T > MockResult < T > create ( ) { return new MockResult < T > ( ) ; } @ Override public void add ( T result ) { T blessed = bless ( result | |
1,730 | <s> package org . oddjob . schedules ; import java . util . Date ; import java . util . TimeZone ; import org . apache . log4j . Logger ; import org . oddjob . arooa . ArooaValue ; import org . oddjob . arooa . convert . ConversionProvider ; import org . oddjob . arooa . convert . ConversionRegistry ; import org . oddjob . arooa . convert . Convertlet ; import org . oddjob . arooa . convert . ConvertletException ; import org . oddjob . arooa . life . ArooaLifeAware ; import org . oddjob . arooa . utils . DateHelper ; public class ScheduleType implements ArooaValue , ArooaLifeAware { private static final Logger logger = Logger | |
1,731 | <s> package org . oddjob . logging . cache ; import java . util . HashMap ; import java . util . Map ; public class SimpleCounter { private Map < Object , Integer > counter = new HashMap < Object , Integer > ( ) ; public void add ( Object key ) { add ( key , null ) ; } | |
1,732 | <s> package com . asakusafw . runtime . directio ; import java . text . MessageFormat ; import java . util . ArrayList ; import java . util . BitSet ; import java . util . Collections ; import java . util . List ; public class FilePattern implements ResourcePattern { private static final int CHAR_ESCAPE = '\\' ; private static final int CHAR_SEPARATOR = '/' ; private static final int CHAR_ASTERISK = '*' ; private static final int CHAR_BAR = '|' ; private static final int CHAR_DOLLER = '$' ; private static final int CHAR_QUESTION = '?' ; private static final int CHAR_NUMBER = '#' ; private static final int CHAR_OPEN_BRACE = '{' ; private static final int CHAR_CLOSE_BRACE = '}' ; private static final int CHAR_OPEN_BRACKET = '[' ; private static final int CHAR_CLOSE_BRACKET = ']' ; private static final int CHAR_EOF = - 1 ; private static final int CHAR_ALPHABET = - 2 ; static final BitSet CHARMAP_META ; static { BitSet set = new BitSet ( ) ; set . set ( 0 , 0x20 ) ; set . set ( CHAR_ESCAPE ) ; set . set ( CHAR_SEPARATOR ) ; set . set ( CHAR_ASTERISK ) ; set . set ( CHAR_BAR ) ; set . set ( CHAR_DOLLER ) ; set . set ( CHAR_QUESTION ) ; set . set ( CHAR_NUMBER ) ; set . set ( CHAR_OPEN_BRACE ) ; set . set ( CHAR_CLOSE_BRACE ) ; set . set ( CHAR_OPEN_BRACKET ) ; set . set ( CHAR_CLOSE_BRACKET ) ; CHARMAP_META = set ; } private final List < Segment > segments ; private final String patternString ; FilePattern ( List < Segment > segments , String patternString ) { assert segments != null ; assert patternString != null ; assert segments . isEmpty ( ) == false ; this . segments = Collections . unmodifiableList ( segments ) ; this . patternString = patternString ; } public boolean containsVariables ( ) { for ( Segment segment : segments ) { for ( PatternElement element : segment . getElements ( ) ) { if ( element . getKind ( ) == PatternElementKind . VARIABLE ) { return true ; } } } return false ; } public List < Segment > getSegments ( ) { return segments ; } public String getPatternString ( ) { return patternString ; } @ Override public String toString ( ) { return patternString ; } public static FilePattern compile ( String patternString ) { if ( patternString == null ) { throw new IllegalArgumentException ( "" ) ; } if ( patternString . isEmpty ( ) ) { throw new IllegalArgumentException ( "" ) ; } List < Segment > segments = compileSegments ( patternString ) ; return new FilePattern ( segments , patternString ) ; } private static List < Segment > compileSegments ( String patternString ) { assert patternString != null ; Cursor cursor = new Cursor ( patternString . toCharArray ( ) ) ; List < Segment > segments = new ArrayList < Segment > ( ) ; cursor . skipWhile ( CHAR_SEPARATOR ) ; while ( cursor . get ( 0 ) != CHAR_EOF ) { Segment segment = consumeSegment ( cursor ) ; segments . add ( segment ) ; } return segments ; } private static Segment consumeSegment ( Cursor cursor ) { assert cursor != null ; int first = cursor . get ( 0 ) ; assert first != CHAR_SEPARATOR && first != CHAR_EOF : cursor ; if ( first == CHAR_ASTERISK && cursor . get ( 1 ) == CHAR_ASTERISK && ( cursor . get ( 2 ) == CHAR_SEPARATOR || cursor . get ( 2 ) == CHAR_EOF ) ) { cursor . skipWhile ( CHAR_ASTERISK ) ; cursor . skipWhile ( CHAR_SEPARATOR ) ; return Segment . TRAVERSE ; } List < PatternElement > elements = consumeElements ( cursor ) ; return new Segment ( elements ) ; } private static List < PatternElement > consumeElements ( Cursor cursor ) { assert cursor != null ; ArrayList < PatternElement > results = new ArrayList < PatternElement > ( ) ; LOOP : while ( true ) { int c = cursor . get ( 0 ) ; switch ( c ) { case CHAR_EOF : break LOOP ; case CHAR_SEPARATOR : cursor . skipWhile ( CHAR_SEPARATOR ) ; break LOOP ; case CHAR_ASTERISK : if ( cursor . get ( 1 ) == CHAR_ASTERISK ) { throw new IllegalArgumentException ( MessageFormat . format ( "" , cursor , cursor . getOffset ( ) ) ) ; } cursor . skip ( ) ; results . add ( SingletonPatternElement . WILDCARD ) ; break ; case CHAR_OPEN_BRACE : results . add ( new Selection ( cursor . consumeSelection ( ) ) ) ; break ; case CHAR_DOLLER : results . add ( new Variable ( cursor . consumeVariable ( ) ) ) ; break ; case CHAR_ALPHABET : results . add ( new Token ( cursor . consumeToken ( ) ) ) ; break ; default : throw new IllegalArgumentException ( MessageFormat . format ( "" , cursor , cursor . getOffset ( ) , ( char ) c ) ) ; } } return results ; } private static class Cursor { private final char [ ] cbuf ; private int cursor ; Cursor ( char [ ] cbuf ) { assert cbuf != null ; this . cbuf = cbuf ; this . cursor = 0 ; } @ Override public String toString ( ) { StringBuilder buf = new StringBuilder ( ) ; for ( int i = 0 , n = cursor ; i < n ; i ++ ) { buf . append ( cbuf [ i ] ) ; } buf . append ( " >> " ) ; for ( int i = cursor , n = cbuf . length ; i < n ; i ++ ) { buf . append ( cbuf [ i ] ) ; } return buf . toString ( ) ; } int getOffset ( ) { return cursor ; } int get ( int offset ) { if ( cursor + offset >= cbuf . length ) { return CHAR_EOF ; } char c = cbuf [ cursor + offset ] ; if ( CHARMAP_META . get ( c ) ) { return c ; } return CHAR_ALPHABET ; } void skip ( ) { cursor = Math . min ( cbuf . length , cursor + 1 ) ; } void skipWhile ( int kind ) { while ( true ) { int result = get ( 0 ) ; if ( result == CHAR_EOF || result != kind ) { break ; } skip ( ) ; } } String consumeToken ( ) { StringBuilder buf = new StringBuilder ( ) ; while ( true ) { int | |
1,733 | <s> package org . rubypeople . rdt . internal . ui . wizards . buildpaths ; import java . util . List ; import org . eclipse . jface . viewers . StructuredSelection ; import org . eclipse . swt . SWT ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Control ; import org . rubypeople . rdt . core . IRubyProject ; import org . rubypeople . rdt . internal . ui . util . PixelConverter ; import org . rubypeople . rdt . internal . ui . wizards . dialogfields . DialogField ; import org . rubypeople . rdt . internal . ui . wizards . dialogfields . LayoutUtil ; import org . rubypeople . rdt . internal . ui . wizards . dialogfields . ListDialogField ; public class LoadpathOrderingWorkbookPage extends BuildPathBasePage { private ListDialogField fLoadPathList ; public LoadpathOrderingWorkbookPage ( ListDialogField loadPathList ) { fLoadPathList = loadPathList ; } public Control getControl ( Composite parent ) { PixelConverter converter = new PixelConverter ( parent ) ; Composite composite = new Composite ( parent , SWT . NONE ) ; composite . setFont ( parent . getFont ( ) ) ; | |
1,734 | <s> package org . oddjob . persist ; import java . io . Serializable ; import java . lang . reflect . InvocationHandler ; import java . lang . reflect . Method ; import java . lang . reflect . Proxy ; import java . util . ArrayList ; import java . util . List ; import java . util . Map ; import javax . swing . ImageIcon ; import org . oddjob . Describeable ; import org . oddjob . Iconic ; import org . oddjob . Stateful ; import org . oddjob . Structural ; import org . oddjob . arooa . ArooaSession ; import org . oddjob . describe . UniversalDescriber ; import org . oddjob . images . IconEvent ; import org . oddjob . images . IconListener ; import org . oddjob . state . StateEvent ; import org . oddjob . state . StateListener ; import org . oddjob . structural . StructuralEvent ; import org . oddjob . structural . StructuralListener ; public class SilhouetteFactory { public Object create ( Object subject , ArooaSession session ) { String name = subject . toString ( ) ; Map < String , String > description = new UniversalDescriber ( session ) . describe ( subject ) ; List < Class < ? > > interfaces = new ArrayList < Class < ? > > ( ) ; interfaces . add ( Describeable . class ) ; StateEvent lastJobStateEvent = null ; if ( subject instanceof Stateful ) { Stateful stateful = ( Stateful ) subject ; lastJobStateEvent = stateful . lastStateEvent ( ) ; interfaces . add ( Stateful . class ) ; } Object [ ] children = null ; if ( subject instanceof Structural && session != null ) { Structural structural = ( Structural ) subject ; ChildCatcher childCatcher = new ChildCatcher ( session ) ; structural . addStructuralListener ( childCatcher ) ; structural . removeStructuralListener ( childCatcher ) ; children = childCatcher . getChildren ( ) ; interfaces . add ( Structural . class ) ; } IconInfo iconInfo = null ; if ( subject instanceof Iconic ) { Iconic iconic = ( Iconic ) subject ; IconCapture capture = new IconCapture ( ) ; iconic . addIconListener ( capture ) ; iconic . removeIconListener ( capture ) ; iconInfo = capture . getIconInfo ( ) ; interfaces . add ( Iconic . class ) ; } Silhouette silhouette = new Silhouette ( name , description ) ; Object proxy = Proxy . newProxyInstance ( this . getClass ( ) . getClassLoader ( ) , interfaces . toArray ( new Class [ interfaces . size ( ) ] ) , silhouette ) ; if ( lastJobStateEvent != null ) { silhouette . setLastJobStateEvent ( new StateEvent ( ( Stateful ) proxy , lastJobStateEvent . getState ( ) , lastJobStateEvent . getTime ( ) , lastJobStateEvent . getException ( ) ) ) ; } if ( children != null ) { StructuralEvent [ ] structuralEvents = new StructuralEvent [ children . length ] ; for ( int i = 0 ; i < structuralEvents . length ; ++ i ) { StructuralEvent event = new StructuralEvent ( ( Structural ) proxy , children [ i ] , i ) ; structuralEvents [ i ] = event ; } silhouette . setChildren ( structuralEvents ) ; } if ( iconInfo != null ) { silhouette . setIconInfo ( new IconEvent ( ( Iconic ) proxy , iconInfo . getIconId ( ) ) , iconInfo . getIcon ( ) ) ; } return proxy ; } } class Silhouette implements InvocationHandler , Serializable , Describeable , Structural , Stateful , Iconic { private static final long serialVersionUID = 2010040900L ; private final Map < String , String > description ; private final String name ; private StructuralEvent [ ] structuralEvents ; private StateEvent lastJobStateEvent ; private IconEvent iconEvent ; private ImageIcon iconTip ; Silhouette ( String name , Map < String , String > description ) { this . name = name ; this . description = description ; } void setChildren ( StructuralEvent [ ] children ) { this . structuralEvents = children ; } void setLastJobStateEvent ( StateEvent lastJobStateEvent ) { this . lastJobStateEvent = lastJobStateEvent ; } void setIconInfo ( IconEvent iconEvent , ImageIcon iconTip ) { this . iconEvent = iconEvent ; this . iconTip = iconTip ; } @ Override public Object invoke ( Object proxy , Method method , Object [ ] args ) throws Throwable { Method ourMethod = getClass ( ) . getMethod ( method . getName ( ) , method . getParameterTypes ( ) ) ; return ourMethod . invoke ( this , args ) ; } @ Override public Map < String , String > describe ( ) { return description ; } @ Override public void addStateListener ( StateListener listener ) { listener . jobStateChange ( lastJobStateEvent ) ; } @ Override public void removeStateListener ( StateListener listener ) { } @ Override public StateEvent lastStateEvent ( ) { return lastJobStateEvent ; } @ Override public void addStructuralListener ( StructuralListener listener ) { for ( int i = 0 ; i < structuralEvents . length ; ++ i ) { listener . childAdded ( structuralEvents [ i ] ) ; } } @ Override public void removeStructuralListener ( StructuralListener listener ) { } @ Override public void addIconListener ( IconListener listener ) { listener . iconEvent ( iconEvent ) ; } @ Override public void removeIconListener ( IconListener listener ) { } @ Override public ImageIcon iconForId ( String id ) { return iconTip ; } @ Override public String toString ( ) { return name ; } public boolean equals ( Object other ) { if ( ! | |
1,735 | <s> package $ { package } . operator ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . util . ArrayList ; import java . util . List ; import org . junit . Test ; import $ { package } . modelgen . dmdl . model . ItemInfo ; import $ { package } . modelgen . dmdl . model . SalesDetail ; import com . asakusafw . runtime . value . Date ; import com . asakusafw . runtime . value . DateTime ; public class CategorySummaryOperatorTest { @ Test public void selectAvailableItem ( ) { List < ItemInfo > candidates = new ArrayList < ItemInfo > ( ) ; candidates . add ( item ( "A" , 1 , 10 ) ) ; candidates . add ( item ( "B" , 11 , 20 ) ) ; candidates . add ( item ( "C" , 21 , 30 ) ) ; CategorySummaryOperator operator = new CategorySummaryOperatorImpl ( ) ; ItemInfo item1 = operator . selectAvailableItem ( candidates , sales ( 1 ) ) ; ItemInfo item5 = operator . selectAvailableItem ( candidates , sales ( 5 ) ) ; ItemInfo item10 = operator . selectAvailableItem ( candidates , sales ( 10 ) ) ; ItemInfo item15 = operator . selectAvailableItem ( candidates , sales ( 11 ) ) ; ItemInfo item20 = operator . selectAvailableItem ( candidates , sales ( 20 ) ) ; ItemInfo item30 = operator . selectAvailableItem ( candidates , sales ( 30 ) ) ; ItemInfo item31 = operator . selectAvailableItem ( candidates , sales ( 31 ) ) ; assertThat ( item1 . getCategoryCodeAsString ( ) , is ( "A" ) ) ; assertThat ( item5 . getCategoryCodeAsString ( ) , is ( "A" ) | |
1,736 | <s> package org . oddjob . script ; import java . sql . Date ; import java . util . Calendar ; public class GreetingService { public String greeting ( Date date ) { Calendar cal = Calendar . getInstance ( ) ; cal | |
1,737 | <s> package fi . koku . services . utility . authorizationinfo . v1 . model ; public class OrgUnit { private String id ; private String name ; private String serviceArea ; public OrgUnit ( String id ) { this . id = id ; } public OrgUnit ( String id , String name ) { this . id = id ; this . name = name ; } public OrgUnit ( String id , String name , String serviceArea ) { this . id = id ; this . name = name ; this . serviceArea = serviceArea ; } public String getId ( ) { return id ; } public void setId ( String id ) { this . id = id ; } public String getName ( ) { return name ; } public void setName ( String name ) { this . name = name ; } public String getServiceArea ( ) { return serviceArea ; } public void setServiceArea ( String serviceArea ) { this . serviceArea = serviceArea ; } @ Override public int hashCode ( ) { final int prime = 31 ; int result = 1 ; result = prime * result + ( ( id == null ) ? 0 : id . hashCode ( ) ) ; return result ; } @ Override public boolean equals ( Object obj ) { if ( this == obj ) return true ; | |
1,738 | <s> package org . rubypeople . rdt . internal . ui . preferences . formatter ; import org . eclipse . core . runtime . IStatus ; import org . eclipse . jface . dialogs . IDialogConstants ; import org . eclipse . jface . dialogs . StatusDialog ; 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 . layout . GridLayout ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Control ; import org . eclipse . swt . widgets . Label ; import org . eclipse . swt . widgets . Shell ; import org . eclipse . swt . widgets . Text ; import org . rubypeople . rdt . internal . ui . dialogs . StatusInfo ; import org . rubypeople . rdt . internal . ui . preferences . formatter . ProfileManager . Profile ; import org . rubypeople . rdt . internal . ui . preferences . formatter . ProfileManager . SharedProfile ; public class RenameProfileDialog extends StatusDialog { private Label fNameLabel ; private | |
1,739 | <s> package net . sf . sveditor . ui . editor . actions ; import java . lang . reflect . InvocationTargetException ; import java . util . ResourceBundle ; import net . sf . sveditor . core . db . ISVDBItemBase ; import net . sf . sveditor . core . db . SVDBClassDecl ; import net . sf . sveditor . core . db . SVDBItemType ; import net . sf . sveditor . core . db . SVDBModuleDecl ; import net . sf . sveditor . core . db . SVDBPackageDecl ; import net . sf . sveditor . core . diagrams . ClassDiagModelFactory ; import net . sf . sveditor . core . diagrams . DiagModel ; import net . sf . sveditor . core . diagrams . IDiagModelFactory ; import net . sf . sveditor . core . diagrams . ModuleDiagModelFactory ; import net . sf . sveditor . core . diagrams . PackageClassDiagModelFactory ; import net . sf . sveditor . ui . SVUiPlugin ; import net . sf . sveditor . ui . editor . SVEditor ; import net . sf . sveditor . ui . views . diagram . SVDiagramView ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . jface . operation . IRunnableWithProgress ; import org . eclipse . ui . IViewPart ; import org . eclipse . ui . IWorkbench ; import org . eclipse . ui . IWorkbenchPage ; import org . eclipse . ui . PlatformUI ; import org . eclipse . ui . texteditor . TextEditorAction ; public class OpenDiagForSelectionAction extends TextEditorAction { private IWorkbench fWorkbench ; private SVEditor fEditor ; public OpenDiagForSelectionAction ( ResourceBundle bundle , SVEditor editor ) { super ( bundle , "" , editor ) ; fEditor = editor ; fWorkbench = PlatformUI . getWorkbench ( ) . getActiveWorkbenchWindow ( ) . getWorkbench ( ) ; } @ Override public void run ( ) { try { fWorkbench . getProgressService ( ) . run ( false , false , fOpenDiagForSelection ) ; } catch ( InvocationTargetException e ) { } catch ( InterruptedException e ) { } } private IRunnableWithProgress fOpenDiagForSelection = new IRunnableWithProgress ( ) { public void run ( IProgressMonitor monitor ) throws InvocationTargetException , InterruptedException { monitor . beginTask ( "" , 2 ) ; monitor . worked ( 1 ) ; ISVDBItemBase itemBase = SelectionConverter . getElementAtOffset ( fEditor ) ; if ( itemBase != null && ( itemBase . getType ( ) == SVDBItemType . ClassDecl || itemBase . getType ( ) == SVDBItemType . PackageDecl || itemBase . getType ( ) == SVDBItemType . ModuleDecl ) ) { try { IWorkbench workbench = PlatformUI . getWorkbench ( ) ; IWorkbenchPage page = workbench | |
1,740 | <s> package com . asakusafw . thundergate . runtime . cache ; import java . io . Closeable ; import java . io . IOException ; import java . net . URI ; import java . text . MessageFormat ; import java . util . Properties ; import org . apache . hadoop . conf . Configuration ; import org . apache . hadoop . fs . FSDataInputStream ; import org . apache . hadoop . fs . FSDataOutputStream ; import org . apache . hadoop . fs . FileSystem ; import org . apache . hadoop . fs . Path ; import com . asakusafw . runtime . stage . output . TemporaryOutputFormat ; public class CacheStorage implements Closeable { public static final String HEAD_DIRECTORY_NAME = "HEAD" ; public static final String PATCH_DIRECTORY_NAME = "PATCH" ; public static final String TEMP_DIRECTORY_NAME = ".cachetmp" ; public static final String META_FILE_NAME = "" ; public static final String CONTENT_FILE_PREFIX = TemporaryOutputFormat . DEFAULT_FILE_NAME + "-" ; public static final String CONTENT_FILE_GLOB = CONTENT_FILE_PREFIX + "*" ; private final FileSystem fs ; private final Path cacheDir ; public CacheStorage ( Configuration configuration , URI cacheDir ) throws IOException { if ( configuration == null ) { throw new IllegalArgumentException ( "" ) ; } if ( cacheDir == null ) { throw new IllegalArgumentException ( "" ) ; } this . cacheDir = new Path ( cacheDir ) ; this . fs = this . cacheDir . getFileSystem ( configuration ) ; } public FileSystem getFileSystem ( ) { return fs ; } public Configuration getConfiguration ( ) { return fs . getConf ( ) ; } public void deleteHead ( ) throws IOException { fs . delete ( getHeadDirectory ( ) , true ) ; } public void deletePatch ( ) throws IOException { fs . delete ( getPatchDirectory ( ) , true ) ; } public CacheInfo getHeadCacheInfo ( ) throws IOException { return getCacheInfo ( getHeadProperties ( ) ) ; } public CacheInfo getPatchCacheInfo ( ) throws IOException { return getCacheInfo ( getPatchProperties ( ) ) ; } private CacheInfo getCacheInfo ( Path path ) throws IOException { assert path != null ; if ( fs . exists ( path ) == false ) { return null ; } Properties properties = new Properties ( ) ; FSDataInputStream in = fs . open ( path ) ; try { properties . load ( in ) ; } finally { in . close ( ) ; } try { return CacheInfo . loadFrom ( properties ) ; } catch ( IllegalArgumentException e ) { throw new IOException ( MessageFormat . format ( "" , path ) , e ) ; } } public void putHeadCacheInfo ( CacheInfo info ) throws IOException { if ( info == null ) { throw new IllegalArgumentException ( "" ) ; } putCacheInfo ( info , | |
1,741 | <s> package org . rubypeople . rdt . internal . core . parser . warnings ; import java . util . ArrayList ; import java . util . HashSet ; import java . util . List ; import java . util . Set ; import org . jruby . ast . ClassNode ; import org . jruby . ast . ConstDeclNode ; import org . jruby . ast . ModuleNode ; import org . rubypeople . rdt . core . RubyCore ; import org . rubypeople . rdt . core . parser . warnings . RubyLintVisitor ; import org . rubypeople | |
1,742 | <s> package com . asakusafw . bulkloader . common ; import static org . junit . Assert . * ; import java . io . File ; import java . sql . Connection ; import java . util . ArrayList ; import java . util . Arrays ; import java . util . List ; import org . junit . After ; import org . junit . AfterClass ; import org . junit . Before ; import org . junit . BeforeClass ; import org . junit . Ignore ; import org . junit . Test ; import com . asakusafw . bulkloader . bean . ExportTempTableBean ; import com . asakusafw . bulkloader . bean . ExporterBean ; import com . asakusafw . bulkloader . testutil . UnitTestUtil ; import com . asakusafw . testtools . TestUtils ; public class DBAccessUtilTest { private static String targetName = "target1" ; private static List < String > propertys = Arrays . asList ( new String [ ] { "" } ) ; private static String jobflowId = "JOB_FLOW01" ; private static String executionId = "" ; @ BeforeClass public static void setUpBeforeClass ( ) throws Exception { UnitTestUtil . setUpBeforeClass ( ) ; UnitTestUtil . setUpEnv ( ) ; BulkLoaderInitializer . initDBServer ( jobflowId , executionId , propertys , targetName ) ; UnitTestUtil . setUpDB ( ) ; } @ AfterClass public static void tearDownAfterClass ( ) throws Exception { UnitTestUtil . tearDownDB ( ) ; UnitTestUtil . tearDownAfterClass ( ) ; } @ Before public void setUp ( ) throws Exception { BulkLoaderInitializer . initDBServer ( jobflowId , executionId , propertys , targetName ) ; UnitTestUtil . startUp ( ) ; } @ After public void tearDown ( ) throws Exception { UnitTestUtil . tearDown ( ) ; } @ Test public void createRecordLockTableNameTest01 ( ) throws Exception { String name = DBAccessUtil . createRecordLockTableName ( "table" ) ; assertEquals ( "table_RL" , name ) ; } @ Test public void selectJobFlowSidTest01 ( ) throws Exception { File testDataDir = new File ( "" ) ; TestUtils util = new TestUtils ( testDataDir ) ; util . storeToDatabase ( false ) ; String jobFlowSid = DBAccessUtil . selectJobFlowSid ( "" ) ; assertEquals ( "2" , jobFlowSid ) ; } @ Test public void selectJobFlowSidTest02 ( ) throws Exception { File testDataDir = new File ( "" ) ; TestUtils util = new TestUtils ( testDataDir ) ; util . storeToDatabase ( false ) ; String jobFlowSid = DBAccessUtil . selectJobFlowSid ( "" ) ; assertNull ( jobFlowSid ) ; } @ Test public void selectJobFlowSidTest03 ( ) throws Exception { File testDataDir = new File ( "" ) ; TestUtils util = new TestUtils ( testDataDir ) ; util . storeToDatabase ( false ) ; String jobFlowSid = DBAccessUtil . selectJobFlowSid ( "" ) ; assertEquals ( "3" , jobFlowSid ) ; } @ Test public void getExportTempTable01 ( ) throws Exception { File testDataDir = new File ( "" ) ; TestUtils util = new TestUtils ( testDataDir ) ; util . storeToDatabase ( false ) ; List < ExportTempTableBean > bean = DBAccessUtil . getExportTempTable ( "99" ) ; assertEquals ( 2 , bean . size ( ) ) ; assertEquals ( "99" , bean . get ( 0 ) . getJobflowSid ( ) ) ; assertEquals ( "Table1" , bean . get ( 0 ) . getExportTableName ( ) ) ; assertEquals ( "Temp_1" , bean . get ( 0 ) . getTemporaryTableName ( ) ) ; assertEquals ( "Temp_1_DF" , bean . get ( 0 ) . getDuplicateFlagTableName ( ) ) ; assertEquals ( null , bean . get ( 0 ) . getTempTableStatus ( ) ) ; assertEquals ( "99" , bean . get ( 1 ) . getJobflowSid ( ) ) ; assertEquals ( "Table2" , bean . get ( 1 ) . getExportTableName ( ) ) ; assertEquals ( "Temp_4" , bean . get ( 1 ) . getTemporaryTableName ( ) ) ; assertEquals ( "Temp_4_DF" , bean . get ( 1 ) . getDuplicateFlagTableName ( ) ) ; assertEquals ( ExportTempTableStatus . find ( "1" ) , bean . get ( 1 ) . getTempTableStatus ( ) ) ; } @ Test public void getExportTempTable02 ( ) throws Exception { File testDataDir = new File ( "" ) ; TestUtils util = new TestUtils ( testDataDir ) ; util . storeToDatabase ( false ) ; List < ExportTempTableBean > bean = DBAccessUtil . getExportTempTable ( "999" ) ; assertEquals ( 0 , bean . size ( ) ) ; } @ Test public void delSystemColumn01 ( ) throws Exception { List < String > list = new ArrayList < String > ( ) ; list . add ( "SID" ) ; list . add ( "VERSION_NO" ) ; list . add ( "RGST_DATE" ) ; list . add ( "UPDT_DATE" ) ; list . add ( "TEMP_SID" ) ; list . add ( "" ) ; list . add ( "aaa" ) ; List < String > result = DBAccessUtil . delSystemColumn ( list ) ; assertEquals ( 3 , result . size ( ) ) ; assertEquals ( "TEMP_SID" , result . get ( 0 ) ) ; assertEquals ( "" , result . get ( 1 ) ) ; assertEquals ( "aaa" , result . get ( 2 ) ) ; } @ Test public void delSystemColumn02 ( ) throws Exception { List < String > list = new ArrayList < String > ( ) ; list . add ( "RGST_DATE" ) ; list . add ( "UPDT_DATE" ) ; list . add ( "TEMP_SID" ) ; list . add ( "" ) ; list . add ( "aaa" ) ; List < String > result = DBAccessUtil . delSystemColumn ( list ) ; assertEquals ( 3 , result . size ( ) ) ; assertEquals ( "TEMP_SID" , result . get ( 0 ) ) ; assertEquals ( "" , result . get ( 1 ) ) ; assertEquals ( "aaa" , result . get ( 2 ) ) ; } @ Test public void delErrorSystemColumn01 ( ) throws Exception { List < String > list = new ArrayList < String > ( ) ; list . add ( "SID" ) ; list . add ( "VERSION_NO" ) ; list . add ( "RGST_DATE" ) ; list . add ( "UPDT_DATE" ) ; list . add ( "TEMP_SID" ) ; list . add ( "" ) ; list . add ( "SID" ) ; list . add ( "SID" ) ; list . add ( "aaa" ) ; list . add ( "ERR_CODE" ) ; List < String > result = DBAccessUtil . delErrorSystemColumn ( list , "ERR_CODE" ) ; assertEquals ( 3 , result . size ( ) ) ; assertEquals ( "TEMP_SID" , result . get ( 0 ) ) ; assertEquals ( "" , result . get ( 1 ) ) ; assertEquals ( "aaa" , result . get ( 2 ) ) ; } @ Test public void joinColumnArray01 ( ) throws Exception { | |
1,743 | <s> package net . sf . sveditor . ui . editor . actions ; import java . util . ResourceBundle ; import net . sf . sveditor . core . db . ISVDBItemBase ; import net . sf . sveditor . core . db . index . SVDBDeclCacheItem ; import net . sf . sveditor . ui . SVEditorUtil ; import net . sf . sveditor . ui . dialog . types . SVOpenTypeDialog ; import | |
1,744 | <s> package net . sf . sveditor . core . tests . content_assist ; import net . sf . sveditor . core . content_assist . AbstractCompletionProcessor ; import net . sf . sveditor . core . db . SVDBFile ; import net . sf . sveditor . core . db . index . ISVDBIndexIterator ; import net . sf . sveditor . core . log . LogFactory ; import net . sf . sveditor . core . log . LogHandle ; public class TestCompletionProcessor extends AbstractCompletionProcessor { private SVDBFile fSVDBFile ; private ISVDBIndexIterator fIndexIterator ; public TestCompletionProcessor ( LogHandle log , SVDBFile file , ISVDBIndexIterator iterator ) { fSVDBFile | |
1,745 | <s> package org . rubypeople . rdt . refactoring . core . movemethod ; import org . eclipse . osgi . util . NLS ; public class Messages extends NLS { private static final String BUNDLE_NAME = "" ; public static String MethodMover_An ; public static String MethodMover_DuToNameConflicts ; public static String MethodMover_ForField ; public static String MethodMover_IsChangedFrom ; public static String MethodMover_NameWillBeChangedTo ; public static String MethodMover_TheVisibilityOfMethod ; public static String MethodMover_TheVisibilityOfTheMovingMethod ; public static | |
1,746 | <s> package net . sf . sveditor . core . db . index ; import net | |
1,747 | <s> package com . asakusafw . dmdl . thundergate . view . model ; public class Name { public final String token ; public Name ( String token ) { if ( token == null ) { throw new IllegalArgumentException ( "" ) ; } this . token = token ; } public Name ( Name qualifier , Name rest ) { if ( qualifier == null ) { throw new IllegalArgumentException ( "" ) ; } if ( rest == null ) { throw new IllegalArgumentException ( "" ) ; } this . token = qualifier . token + "." + rest . token ; } public Name getLastSegment ( ) { int last = token . lastIndexOf ( '.' ) ; if ( last >= 0 ) { return new Name ( token . substring ( last + 1 ) ) ; } return this ; } @ Override public int hashCode ( ) { final int prime = 31 ; int result = 1 ; result = prime * result + token . | |
1,748 | <s> package org . rubypeople . rdt . internal . ui . text . ruby ; import org . eclipse . core . runtime . IProgressMonitor ; public interface IProblemRequestorExtension { void setProgressMonitor ( IProgressMonitor monitor ) ; void setIsActive ( boolean isActive ) ; | |
1,749 | <s> package com . asakusafw . compiler . flow . processor . flow ; import com . asakusafw . compiler . flow . processor . MasterJoinUpdateFlowProcessor ; import com . asakusafw . compiler . flow . processor . operator . MasterJoinUpdateFlowFactory ; import com . asakusafw . compiler . flow . processor . operator . MasterJoinUpdateFlowFactory . Selection ; import com . asakusafw . compiler . flow . testing . external . Ex1MockExporterDescription ; import com . asakusafw . compiler . flow . testing . external . Ex1MockImporterDescription ; import com . asakusafw . compiler . flow . testing . external . Ex2MockImporterDescription ; import com . asakusafw . compiler . flow . testing . model . Ex1 ; | |
1,750 | <s> package br . com . caelum . vraptor . dash . hibernate ; import java . io . IOException ; import java . text . NumberFormat ; import java . util . ArrayList ; import java . util . Arrays ; import java . util . HashMap ; import java . util . List ; import java . util . Map ; import net . sf . ehcache . CacheManager ; import net . vidageek . mirror . dsl . Mirror ; import org . hibernate . Session ; import org . hibernate . stat . EntityStatistics ; import org . hibernate . stat . QueryStatistics ; import org . hibernate . stat . Statistics ; import br . com . caelum . vraptor . Get ; import br . com . caelum . vraptor . Path ; import br . com . caelum . vraptor . Resource ; import br . com . caelum . vraptor . Result ; import br . com . caelum . vraptor . dash . hibernate . stats . CacheStatsWrapper ; import br . com . caelum . vraptor . dash . hibernate . stats . CollectionStatsWrapper ; import br . com . caelum . vraptor . dash . hibernate . stats . EntityCacheStatsWrapper ; import br . com . caelum . vraptor . dash . hibernate . stats . EntityStatsWrapper ; import br . com . caelum . vraptor . dash . hibernate . stats . QueryStatsWrapper ; import br . com . caelum . vraptor . dash . runtime . RuntimeStatisticsCollector ; import br . com . caelum . vraptor . dash . statistics . Collectors ; import br . com . caelum . vraptor . freemarker . FreemarkerView ; import br . com . caelum . vraptor . freemarker . Template ; import br . com . caelum . vraptor . view . HttpResult ; import com . mchange . v2 . c3p0 . mbean . C3P0PooledDataSource ; @ Resource public class AuditController { private static final String CONTROL_PANEL = "" ; private final Session session ; private final HibernateAuditAwareUser user ; private final Result result ; public AuditController ( Session session , HibernateAuditAwareUser user , Result result ) { this . session = session ; this . user = user ; this . result = result ; } @ Path ( "" ) @ Get public void controlPanel ( ) { if ( ! user . canSeeHibernateAudits ( ) ) { result . use ( HttpResult . class ) . sendError ( 401 ) ; return ; } NumberFormat decimalFormat = NumberFormat . getNumberInstance ( ) ; decimalFormat . setGroupingUsed ( true ) ; Statistics statistics = session . getSessionFactory ( ) . getStatistics ( ) ; Runtime runtime = Runtime . getRuntime ( ) ; Collectors collectors = new Collectors ( Arrays . asList ( new HibernateStatisticsCollector ( statistics ) , new RuntimeStatisticsCollector ( runtime ) ) ) ; collectStatistics ( collectors ) ; C3P0PooledDataSource c3p0PooledDataSource = new C3P0PooledDataSource ( ) ; result . include ( "maxPoolSize" , c3p0PooledDataSource . | |
1,751 | <s> package net . sf . sveditor . core . db . search ; import net . sf . sveditor . core . db . | |
1,752 | <s> package com . asakusafw . testdriver . core ; import java . lang . reflect . Type ; import java . text . MessageFormat ; import java . util . List ; import com . asakusafw . runtime . util . TypeUtil ; import com . asakusafw . vocabulary . external . ImporterDescription ; public abstract class BaseImporterPreparator < T extends ImporterDescription > implements ImporterPreparator < T > { @ SuppressWarnings ( "unchecked" ) @ Override public | |
1,753 | <s> package net . sf . sveditor . core . db . expr ; import net . sf . sveditor . core . db . SVDBItemType ; public class SVDBSequenceRepetitionExpr extends SVDBExpr { public String fRepType ; public SVDBExpr fExpr ; public SVDBSequenceRepetitionExpr ( ) { super ( SVDBItemType | |
1,754 | <s> package org . rubypeople . rdt . core ; import org . rubypeople . rdt . core | |
1,755 | <s> package com . sun . tools . hat . internal . lang ; import java . util . Map ; import | |
1,756 | <s> package org . rubypeople . rdt . internal . core . parser ; import java . util . Iterator ; import java . util . List ; import org . jruby . ast . AliasNode ; import org . jruby . ast . AndNode ; import org . jruby . ast . ArgsCatNode ; import org . jruby . ast . ArgsNode ; import org . jruby . ast . ArgsPushNode ; import org . jruby . ast . ArrayNode ; import org . jruby . ast . AttrAssignNode ; import org . jruby . ast . BackRefNode ; import org . jruby . ast . BeginNode ; import org . jruby . ast . BignumNode ; import org . jruby . ast . BlockArgNode ; import org . jruby . ast . BlockNode ; import org . jruby . ast . BlockPassNode ; import org . jruby . ast . BreakNode ; import org . jruby . ast . CallNode ; import org . jruby . ast . CaseNode ; import org . jruby . ast . ClassNode ; import org . jruby . ast . ClassVarAsgnNode ; import org . jruby . ast . ClassVarDeclNode ; import org . jruby . ast . ClassVarNode ; import org . jruby . ast . Colon2Node ; import org . jruby . ast . Colon3Node ; import org . jruby . ast . ConstDeclNode ; import org . jruby . ast . ConstNode ; import org . jruby . ast . DAsgnNode ; import org . jruby . ast . DRegexpNode ; import org . jruby . ast . DStrNode ; import org . jruby . ast . DSymbolNode ; import org . jruby . ast . DVarNode ; import org . jruby . ast . DXStrNode ; import org . jruby . ast . DefinedNode ; import org . jruby . ast . DefnNode ; import org . jruby . ast . DefsNode ; import org . jruby . ast . DotNode ; import org . jruby . ast . EnsureNode ; import org . jruby . ast . EvStrNode ; import org . jruby . ast . FCallNode ; import org . jruby . ast . FalseNode ; import org . jruby . ast . FixnumNode ; import org . jruby . ast . FlipNode ; import org . jruby . ast . FloatNode ; import org . jruby . ast . ForNode ; import org . jruby . ast . GlobalAsgnNode ; import org . jruby . ast . GlobalVarNode ; import org . jruby . ast . HashNode ; import org . jruby . ast . IArgumentNode ; import org . jruby . ast . IfNode ; import org . jruby . ast . InstAsgnNode ; import org . jruby . ast . InstVarNode ; import org . jruby . ast . IterNode ; import org . jruby . ast . LocalAsgnNode ; import org . jruby . ast . LocalVarNode ; import org . jruby . ast . Match2Node ; import org . jruby . ast . Match3Node ; import org . jruby . ast . MatchNode ; import org . jruby . ast . ModuleNode ; import org . jruby . ast . MultipleAsgnNode ; import org . jruby . ast . NewlineNode ; import org . jruby . ast . NextNode ; import org . jruby . ast . NilImplicitNode ; import org . jruby . ast . NilNode ; import org . jruby . ast . Node ; import org . jruby . ast . NotNode ; import org . jruby . ast . NthRefNode ; import org . jruby . ast . OpAsgnAndNode ; import org . jruby . ast . OpAsgnNode ; import org . jruby . ast . OpAsgnOrNode ; import org . jruby . ast . OpElementAsgnNode ; import org . jruby . ast . OrNode ; import org . jruby . ast . PostExeNode ; import org . jruby . ast . RedoNode ; import org . jruby . ast . RegexpNode ; import org . jruby . ast . RescueBodyNode ; import org . jruby . ast . RescueNode ; import org . jruby . ast . RetryNode ; import org . jruby . ast . ReturnNode ; import org . jruby . ast . RootNode ; import org . jruby . ast . SClassNode ; import org . jruby . ast . SValueNode ; import org . jruby . ast . SelfNode ; import org . jruby . ast . SplatNode ; import org . jruby . ast . StrNode ; import org . jruby . ast . SuperNode ; import org . jruby . ast . SymbolNode ; import org . jruby . ast . ToAryNode ; import org . jruby . ast . TrueNode ; import org . jruby . ast . UndefNode ; import org . jruby . ast . UntilNode ; import org . jruby . ast . VAliasNode ; import org . jruby . ast . VCallNode ; import org . jruby . ast . WhenNode ; import org . jruby . ast . WhileNode ; import org . jruby . ast . XStrNode ; import org . jruby . ast . YieldNode ; import org . jruby . ast . ZArrayNode ; import org . jruby . ast . ZSuperNode ; import org . rubypeople . rdt . core . parser . AbstractVisitor ; import org . rubypeople . rdt . internal . core . util . ASTUtil ; public class InOrderVisitor extends AbstractVisitor { public Object visitAliasNode ( AliasNode iVisited ) { handleNode ( iVisited ) ; return null ; } public Object visitAndNode ( AndNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getFirstNode ( ) ) ; acceptNode ( iVisited . getSecondNode ( ) ) ; return null ; } public Object visitArgsNode ( ArgsNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getBlock ( ) ) ; if ( iVisited . getOptArgs ( ) != null ) { visitIter ( iVisited . getOptArgs ( ) . childNodes ( ) . iterator ( ) ) ; } return null ; } public Object visitArgsCatNode ( ArgsCatNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getFirstNode ( ) ) ; acceptNode ( iVisited . getSecondNode ( ) ) ; return null ; } public Object visitArrayNode ( ArrayNode iVisited ) { handleNode ( iVisited ) ; visitIter ( iVisited . childNodes ( ) . iterator ( ) ) ; return null ; } private Object visitIter ( Iterator < Node > iterator ) { while ( iterator . hasNext ( ) ) { acceptNode ( iterator . next ( ) ) ; } return null ; } public Object visitBackRefNode ( BackRefNode iVisited ) { handleNode ( iVisited ) ; return null ; } public Object visitBeginNode ( BeginNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getBodyNode ( ) ) ; return null ; } public Object visitBignumNode ( BignumNode iVisited ) { handleNode ( iVisited ) ; return null ; } public Object visitBlockArgNode ( BlockArgNode iVisited ) { handleNode ( iVisited ) ; return null ; } public Object visitBlockNode ( BlockNode iVisited ) { handleNode ( iVisited ) ; visitIter ( iVisited . childNodes ( ) . iterator ( ) ) ; return null ; } public Object visitBlockPassNode ( BlockPassNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getArgsNode ( ) ) ; acceptNode ( iVisited . getBodyNode ( ) ) ; return null ; } public Object visitBreakNode ( BreakNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getValueNode ( ) ) ; return null ; } public Object visitConstDeclNode ( ConstDeclNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getValueNode ( ) ) ; return null ; } public Object visitClassVarAsgnNode ( ClassVarAsgnNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getValueNode ( ) ) ; return null ; } public Object visitClassVarDeclNode ( ClassVarDeclNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getValueNode ( ) ) ; return null ; } public Object visitClassVarNode ( ClassVarNode iVisited ) { handleNode ( iVisited ) ; return null ; } public Object visitCallNode ( CallNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getReceiverNode ( ) ) ; acceptNode ( iVisited . getArgsNode ( ) ) ; acceptNode ( iVisited . getIterNode ( ) ) ; return null ; } public Object visitCaseNode ( CaseNode iVisited ) { handleNode ( iVisited ) ; visitIter ( iVisited . childNodes ( ) . iterator ( ) ) ; return null ; } public Object visitClassNode ( ClassNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getSuperNode ( ) ) ; acceptNode ( iVisited . getBodyNode ( ) ) ; return null ; } public Object visitColon2Node ( Colon2Node iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getLeftNode ( ) ) ; return null ; } public Object visitColon3Node ( Colon3Node iVisited ) { handleNode ( iVisited ) ; return null ; } public Object visitConstNode ( ConstNode iVisited ) { handleNode ( iVisited ) ; return null ; } public Object visitDAsgnNode ( DAsgnNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getValueNode ( ) ) ; return null ; } public Object visitDRegxNode ( DRegexpNode iVisited ) { handleNode ( iVisited ) ; visitIter ( iVisited . childNodes ( ) . iterator ( ) ) ; return null ; } public Object visitDStrNode ( DStrNode iVisited ) { handleNode ( iVisited ) ; visitIter ( iVisited . childNodes ( ) . iterator ( ) ) ; return null ; } public Object visitDSymbolNode ( DSymbolNode iVisited ) { handleNode ( iVisited ) ; visitIter ( iVisited . childNodes ( ) . iterator ( ) ) ; return null ; } public Object visitDVarNode ( DVarNode iVisited ) { handleNode ( iVisited ) ; return null ; } public Object visitDXStrNode ( DXStrNode iVisited ) { handleNode ( iVisited ) ; visitIter ( iVisited . childNodes ( ) . iterator ( ) ) ; return null ; } public Object visitDefinedNode ( DefinedNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getExpressionNode ( ) ) ; return null ; } public Object visitDefnNode ( DefnNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getArgsNode ( ) ) ; acceptNode ( iVisited . getBodyNode ( ) ) ; return null ; } public Object visitDefsNode ( DefsNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getReceiverNode ( ) ) ; acceptNode ( iVisited . getArgsNode ( ) ) ; acceptNode ( iVisited . getBodyNode ( ) ) ; return null ; } public Object visitDotNode ( DotNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getBeginNode ( ) ) ; acceptNode ( iVisited . getEndNode ( ) ) ; return null ; } public Object visitEnsureNode ( EnsureNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getEnsureNode ( ) ) ; acceptNode ( iVisited . getBodyNode ( ) ) ; return null ; } public Object visitEvStrNode ( EvStrNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getBody ( ) ) ; return null ; } public Object visitFCallNode ( FCallNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getArgsNode ( ) ) ; acceptNode ( iVisited . getIterNode ( ) ) ; return null ; } public Object visitFalseNode ( FalseNode iVisited ) { handleNode ( iVisited ) ; return null ; } public Object visitFixnumNode ( FixnumNode iVisited ) { handleNode ( iVisited ) ; return null ; } public Object visitFlipNode ( FlipNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getBeginNode ( ) ) ; acceptNode ( iVisited . getEndNode ( ) ) ; return null ; } public Object visitFloatNode ( FloatNode iVisited ) { handleNode ( iVisited ) ; return null ; } public Object visitForNode ( ForNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getVarNode ( ) ) ; acceptNode ( iVisited . getIterNode ( ) ) ; acceptNode ( iVisited . getBodyNode ( ) ) ; return null ; } public Object visitGlobalAsgnNode ( GlobalAsgnNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getValueNode ( ) ) ; return null ; } public Object visitGlobalVarNode ( GlobalVarNode iVisited ) { handleNode ( iVisited ) ; return null ; } public Object visitHashNode ( HashNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getListNode ( ) ) ; return null ; } public Object visitInstAsgnNode ( InstAsgnNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getValueNode ( ) ) ; return null ; } public Object visitInstVarNode ( InstVarNode iVisited ) { handleNode ( iVisited ) ; return null ; } public Object visitIfNode ( IfNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getCondition ( ) ) ; acceptNode ( iVisited . getThenBody ( ) ) ; acceptNode ( iVisited . getElseBody ( ) ) ; return null ; } public Object visitIterNode ( IterNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getVarNode ( ) ) ; acceptNode ( iVisited . getBodyNode ( ) ) ; return null ; } public Object visitLocalAsgnNode ( LocalAsgnNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getValueNode ( ) ) ; return null ; } public Object visitLocalVarNode ( LocalVarNode iVisited ) { handleNode ( iVisited ) ; return null ; } public Object visitMultipleAsgnNode ( MultipleAsgnNode iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getHeadNode ( ) ) ; acceptNode ( iVisited . getArgsNode ( ) ) ; acceptNode ( iVisited . getValueNode ( ) ) ; return null ; } public Object visitMatch2Node ( Match2Node iVisited ) { handleNode ( iVisited ) ; acceptNode ( iVisited . getReceiverNode ( ) ) ; acceptNode ( iVisited . getValueNode ( ) ) ; return null ; } public Object visitMatch3Node ( Match3Node iVisited ) { handleNode ( iVisited ) ; acceptNode ( | |
1,757 | <s> package com . team1160 . scouting . frontend . elements ; import java . awt . event . ActionEvent ; import java . awt . event . ActionListener ; import javax . swing . JButton ; import com . team1160 . scouting . frontend . resourcePackets . CardLayoutPacket ; public class JumpButton extends JButton implements ActionListener { private static final long serialVersionUID = 3520384163398358578L ; CardLayoutPacket layout ; String slideName ; public JumpButton ( CardLayoutPacket layout , String text , String slideName ) | |
1,758 | <s> package com . asakusafw . modelgen . view . model ; import java . text . MessageFormat ; import com . asakusafw . modelgen . model . Aggregator ; public class Select { public final Name name ; public final Aggregator aggregator ; public final Name alias ; public Select ( Name name , Aggregator aggregator , Name alias ) { if ( name == null ) { throw new IllegalArgumentException ( "" ) ; } if ( aggregator == null ) { throw new IllegalArgumentException ( "" ) ; } if ( alias == null ) { throw new IllegalArgumentException | |
1,759 | <s> package com . asakusafw . yaess . basic ; import java . io . IOException ; import java . text . MessageFormat ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import com . asakusafw . yaess . core . ExecutionContext ; import com . asakusafw . yaess . core . ExecutionMonitor ; import com . asakusafw . yaess . core . PhaseMonitor ; public class LoggingExecutionMonitor extends PhaseMonitor { static final Logger LOG = LoggerFactory . getLogger ( LoggingExecutionMonitor . class ) ; private final String label ; private final double stepUnit ; private double totalTaskSize ; private double workedTaskSize ; private int workedStep = 0 ; private boolean opened ; private boolean closed ; public LoggingExecutionMonitor ( ExecutionContext context , double stepUnit ) { if ( context == null ) { throw new IllegalArgumentException ( "" ) ; } this . label = MessageFormat . format ( "" , context . getBatchId ( ) , context . getFlowId ( ) , context . getExecutionId ( ) , context . getPhase ( ) ) ; if ( stepUnit <= 0 ) { this . stepUnit = Double . MAX_VALUE ; } else { this . stepUnit = Math . max ( stepUnit , 0.01 ) - 0.0000000000001 ; } } @ Override public synchronized void open ( double taskSize ) { if ( opened ) { throw new IllegalStateException ( MessageFormat . format ( "" , label ) ) ; } opened = true ; this . totalTaskSize = taskSize ; LOG . info ( MessageFormat . format ( "" , label ) ) ; } @ Override public synchronized void progressed ( double deltaSize ) { set ( workedTaskSize + deltaSize ) ; } @ Override public synchronized void setProgress ( double workedSize ) { set ( workedSize ) ; } @ Override protected void onJobMonitorOpened ( String jobId ) { if ( jobId == null ) { throw new IllegalArgumentException ( "" ) ; } LOG . info ( MessageFormat . format ( "" , label , jobId ) ) ; } @ Override protected void onJobMonitorClosed ( String jobId ) { if ( jobId == null ) { throw new IllegalArgumentException ( "" ) ; } LOG . info ( MessageFormat . format ( "" , label , jobId ) ) ; } @ Override public void reportJobStatus ( String jobId , JobStatus status , Throwable cause ) throws IOException { if ( jobId == null ) | |
1,760 | <s> package net . bioclipse . opentox . prefs ; import org . eclipse . jface . dialogs . IDialogConstants ; import org . eclipse . jface . dialogs . MessageDialog ; import org . eclipse . jface . dialogs . TitleAreaDialog ; import org . eclipse . swt . SWT ; 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 . Shell ; import org . eclipse . swt . widgets . Text ; import org . eclipse . ui . PlatformUI ; import org . eclipse . swt . layout . GridLayout ; public class ServicesEditDialog extends TitleAreaDialog { private String [ ] serviceInfo = new String [ 3 ] ; private Text txtName ; private Text txtService ; private Text txtServiceSparql ; private String name ; private String service ; private String serviceSparql ; public ServicesEditDialog ( Shell parentShell ) { this ( parentShell , "" , "" , "" ) ; } public ServicesEditDialog ( Shell shell , String name , String service , String serviceSparql ) { super ( shell ) ; this . name = name ; this . service = service ; this . serviceSparql = serviceSparql ; } protected Control createDialogArea ( Composite parent ) { setTitle ( "" ) ; setMessage ( "" ) ; Composite area = ( Composite ) | |
1,761 | <s> package org . oddjob . doclet ; import java . io . File ; import org . oddjob . Oddjob ; import org . oddjob . arooa . ArooaDescriptor ; import org . oddjob . arooa . ArooaType ; import org . oddjob . arooa . beandocs . SessionArooaDocFactory ; import org . oddjob . arooa . beandocs . WriteableArooaDoc ; import org . oddjob . arooa . convert . convertlets . FileConvertlets ; import org . oddjob . arooa . deploy . ClassPathDescriptorFactory ; import org . oddjob . arooa . deploy . LinkedDescriptor ; import org . oddjob . arooa . standard . BaseArooaDescriptor ; import org . oddjob . arooa . standard . StandardArooaSession ; import org . oddjob . util . URLClassLoaderType ; import com . sun . javadoc . ClassDoc ; import com . sun . javadoc . DocErrorReporter ; import com . sun . javadoc . RootDoc ; public class ManualDoclet { private final JobsAndTypes jats ; private final Archiver archiver ; public ManualDoclet ( String classPath , String descriptorResource ) { SessionArooaDocFactory docsFactory ; ClassPathDescriptorFactory factory = new ClassPathDescriptorFactory ( ) ; if ( descriptorResource != null ) { factory . setResource ( descriptorResource ) ; } if ( classPath == null ) { ArooaDescriptor descriptor = factory . createDescriptor ( getClass ( ) . getClassLoader ( ) ) ; docsFactory = new SessionArooaDocFactory ( new StandardArooaSession ( descriptor ) ) ; } else { File [ ] files = new FileConvertlets ( ) . pathToFiles ( classPath ) ; URLClassLoaderType classLoaderType = new URLClassLoaderType ( ) ; classLoaderType . setFiles ( files ) ; classLoaderType . setParent ( getClass ( ) . getClassLoader ( ) ) ; factory . setExcludeParent ( true ) ; ClassLoader classLoader = classLoaderType . toValue ( ) ; ArooaDescriptor thisDescriptor = factory . createDescriptor ( classLoader ) ; if ( thisDescriptor == null ) { throw new NullPointerException ( "" + classPath ) ; } ArooaDescriptor descriptor = new LinkedDescriptor ( thisDescriptor , new BaseArooaDescriptor ( classLoader ) ) ; docsFactory = new SessionArooaDocFactory ( new StandardArooaSession ( ) , descriptor ) ; } WriteableArooaDoc jobs = docsFactory . createBeanDocs ( ArooaType . COMPONENT ) ; WriteableArooaDoc types = docsFactory . createBeanDocs ( ArooaType . VALUE ) ; this . jats = new JobsAndTypes ( jobs , types ) ; this . archiver = new Archiver ( jats ) ; } JobsAndTypes jobsAndTypes ( ) { return jats ; } void process ( ClassDoc cd ) { archiver . archive ( cd ) ; } void process ( RootDoc rootDoc , String destination , String title ) { ClassDoc [ ] cd = rootDoc . classes ( ) ; System . out . println ( "" + cd . length + " classes." ) ; for ( int i = 0 ; i < cd . length ; ++ i ) { process ( cd [ i ] ) ; } ManualWriter w = new ManualWriter ( destination , title ) ; w . createManual ( archiver ) ; } public static boolean start ( RootDoc rootDoc ) { System . out . println ( "" ) ; ClassLoader loader = ManualDoclet . class . getClassLoader ( ) ; System . out . println ( "" ) ; for ( ClassLoader next = loader ; next != null ; next = next . getParent ( ) ) { System . out . println ( " " + next ) ; } Oddjob test = new Oddjob ( ) ; System . out . println ( test ) ; Options options = readOptions ( rootDoc . options ( ) ) ; ManualDoclet md = new ManualDoclet ( options . getDescriptorPath ( ) , options . getResource ( ) ) ; md . process ( rootDoc , options . getDestination ( ) , options . getTitle ( ) ) ; return true ; } private static Options readOptions ( String [ ] [ ] options ) { Options result = new Options ( ) ; for ( int i = 0 ; i < options . length ; i ++ ) { String [ ] opt = options [ i ] ; if ( opt [ 0 ] . equals ( "-d" ) ) { result . setDestination ( opt [ 1 ] ) ; } else if ( opt [ 0 ] . equals ( "-dp" ) ) { result . setDescriptorPath ( opt [ 1 ] ) ; } else if ( opt [ 0 ] . equals ( "-dr" ) ) { result . setResource ( opt [ 1 ] ) ; } else if ( opt [ 0 ] . equals ( "-t" ) ) { result . setTitle ( opt [ 1 ] ) ; } } return result ; } public static int optionLength ( String option ) { if ( option . equals ( | |
1,762 | <s> package org . rubypeople . rdt . refactoring . tests . core . inlinemethod ; import org . rubypeople . rdt . refactoring . core . inlinemethod . RenameDuplicatedVariables ; import org . rubypeople . rdt . refactoring . documentprovider . IDocumentProvider ; import org . rubypeople . rdt . refactoring . tests . core . MultipleDocumentsInOneProvider ; public class TC_RenameDuplicatedVariables extends FinderTestsBase { public void testRenameVarious ( ) { rename ( 1 , new String [ ] { "number" , "string" , "array" | |
1,763 | <s> package org . rubypeople . rdt . launching ; import org . eclipse . core . runtime . CoreException ; | |
1,764 | <s> package net . sf . sveditor . core . db . refs ; import java . util . List ; public class SVDBTypeRefMatcher implements ISVDBRefMatcher { public void find_matches | |
1,765 | <s> package org . rubypeople . rdt . internal . ui . wizards . buildpaths ; import org . eclipse . core . runtime . IPath ; import org . eclipse . jface . util . Assert ; public class CPVariableElement { private String fName ; private IPath [ ] fPath ; private boolean fIsReserved ; public CPVariableElement ( String name , IPath [ ] path , boolean reserved ) { Assert . isNotNull ( name ) ; Assert . isNotNull ( path ) ; fName = name ; fPath = path ; fIsReserved = reserved ; } public IPath [ ] getPath ( ) { return fPath ; } public void setPath ( IPath [ ] path ) { | |
1,766 | <s> package org . rubypeople . rdt . internal . ui . callhierarchy ; import org . eclipse . jface . action . Action ; import org . eclipse . jface . action . ActionContributionItem ; import org . eclipse . jface . action . IMenuCreator ; import org . eclipse . swt . SWT ; import org . eclipse . swt . widgets . Control ; import org . eclipse . swt . widgets . Menu ; import org . eclipse . swt . widgets . MenuItem ; import org . eclipse . ui . PlatformUI ; import org . rubypeople . rdt . core . IMethod ; import org . rubypeople . rdt . internal . ui . IRubyHelpContextIds ; import org . rubypeople . rdt . internal . ui . RubyPluginImages ; class HistoryDropDownAction extends Action implements IMenuCreator { private static class ClearHistoryAction extends Action { private CallHierarchyViewPart fView ; public ClearHistoryAction ( CallHierarchyViewPart view ) { super ( CallHierarchyMessages . HistoryDropDownAction_clearhistory_label ) ; fView = view ; } public void run ( ) { fView . setHistoryEntries ( new IMethod [ 0 ] ) ; fView . setMethod ( null ) ; } } public static final int RESULTS_IN_DROP_DOWN = 10 ; private CallHierarchyViewPart fView ; private Menu fMenu ; public HistoryDropDownAction ( CallHierarchyViewPart view ) { fView = view ; fMenu = null ; setToolTipText ( CallHierarchyMessages . HistoryDropDownAction_tooltip ) ; RubyPluginImages . setLocalImageDescriptors ( this , "" ) ; PlatformUI . getWorkbench ( ) . getHelpSystem ( ) . setHelp ( this , IRubyHelpContextIds . CALL_HIERARCHY_HISTORY_DROP_DOWN_ACTION ) ; setMenuCreator ( this ) ; } public Menu getMenu ( Menu parent ) { return null ; } public Menu getMenu ( Control parent ) { if ( fMenu != null ) { fMenu . dispose ( ) ; } fMenu = new Menu ( parent ) ; IMethod [ ] elements = fView . getHistoryEntries ( ) ; addEntries ( fMenu , elements ) ; new MenuItem ( fMenu , SWT . SEPARATOR ) ; addActionToMenu ( fMenu , new HistoryListAction ( fView ) ) ; addActionToMenu ( | |
1,767 | <s> package com . asakusafw . dmdl . util ; import java . io . IOException ; import java . io . Reader ; import java . net . URI ; import java . text . MessageFormat ; import java . util . ServiceLoader ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import com . asakusafw . dmdl . Diagnostic ; import com . asakusafw . dmdl . analyzer . DmdlAnalyzer ; import com . asakusafw . dmdl . analyzer . DmdlSemanticException ; import com . asakusafw . dmdl . model . AstModelDefinition ; import com . asakusafw . dmdl . model . AstScript ; import com . asakusafw . dmdl . parser . DmdlParser ; import com . asakusafw . dmdl . parser . DmdlSyntaxException ; import com . asakusafw . dmdl . semantics . DmdlSemantics ; import com . asakusafw . dmdl . source . DmdlSourceRepository ; import com . asakusafw . dmdl . source . DmdlSourceRepository . Cursor ; import com . asakusafw . dmdl . spi . AttributeDriver ; import com . asakusafw . dmdl . spi . TypeDriver ; public class AnalyzeTask { static final Logger LOG = LoggerFactory . getLogger ( AnalyzeTask . class ) ; private final String processName ; private final ClassLoader serviceClassLoader ; public AnalyzeTask ( String processName , ClassLoader serviceClassLoader ) { if ( processName == null ) { throw new IllegalArgumentException ( "" ) ; } if ( serviceClassLoader == null ) { throw new IllegalArgumentException ( "" ) ; } this . processName = processName ; this . serviceClassLoader = serviceClassLoader ; } public DmdlSemantics process ( DmdlSourceRepository | |
1,768 | <s> package org . rubypeople . rdt . refactoring . core . inlinemethod ; import org . rubypeople . rdt . | |
1,769 | <s> package com . asakusafw . windgate . core . process ; import java . io . IOException ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import com . asakusafw . runtime . core . context . RuntimeContext ; import com . asakusafw . runtime . core . context . SimulationSupport ; import com . asakusafw . windgate . core . ProcessScript ; import com . asakusafw . windgate . core . WindGateCoreLogger ; import com . asakusafw . windgate . core . WindGateLogger ; import com . asakusafw . windgate . core . resource . DrainDriver ; import com . asakusafw . windgate . core . resource . DriverFactory ; import com . asakusafw . windgate . core . resource . SourceDriver ; @ SimulationSupport public class BasicProcessProvider extends ProcessProvider { static final WindGateLogger WGLOG = new WindGateCoreLogger ( BasicProcessProvider . class ) ; static final Logger LOG = LoggerFactory . getLogger ( BasicProcessProvider . class ) ; @ Override protected void configure ( ProcessProfile profile ) { return ; } @ Override public < T > void execute ( DriverFactory drivers , ProcessScript < T > script ) throws IOException { WGLOG . info ( "I05000" , script . getName ( ) , script . getSourceScript ( ) . getResourceName ( ) , script . getDrainScript ( ) . getResourceName ( ) ) ; long start = System . currentTimeMillis ( ) ; long count = 0 ; try { IOException exception = null ; SourceDriver < T > source = null ; DrainDriver < T > drain = null ; try { LOG . debug ( "" , script . getSourceScript ( ) . getResourceName ( ) , | |
1,770 | <s> package org . oddjob . logging . cache ; import java . util . HashMap ; import java . util . HashSet ; import java . util . Map ; import java . util . Set ; import org . apache . log4j . Logger ; import org . oddjob . logging . ArchiveNameResolver ; import org . oddjob . logging . LogArchiver ; import org . oddjob . logging . LogEvent ; import org . oddjob . logging . LogLevel ; import org . oddjob . logging . LogListener ; public class PollingLogArchiver implements LogArchiver { private static final Logger logger = Logger . getLogger ( PollingLogArchiver . class ) ; private final LogArchiverCache cache ; private final Map < Object , String > components = new HashMap < Object , String > ( ) ; private final Map < String , Long > lastMessageNumbers = new HashMap < String , Long > ( ) ; private SimpleCounter listenerCounter = new SimpleCounter ( ) ; private final LogEventSource source ; private final ArchiveNameResolver resolver ; public PollingLogArchiver ( ArchiveNameResolver resolver , LogEventSource source ) { this ( LogArchiver . MAX_HISTORY , resolver , source ) ; } public PollingLogArchiver ( int history , ArchiveNameResolver resolver , LogEventSource source ) { this . source = source ; this . resolver = resolver ; this . cache = new LazyArchiverCache ( history , resolver ) ; } public void addLogListener ( LogListener l , Object component , LogLevel level , long last , int max ) { String archive = resolver . resolveName ( component ) ; logger . debug ( "" + archive + "]" ) ; if ( archive == null ) { l . logEvent ( LogArchiver . NO_LOG_AVAILABLE ) ; return ; } synchronized ( components ) { components . put ( component , archive ) ; listenerCounter . add ( component ) ; cache . addLogListener ( l , component , level , last , max ) ; poll ( ) ; } } public void removeLogListener ( LogListener l , final Object component ) { synchronized ( components ) { final String archiveName = ( String ) components . get ( component ) ; if ( archiveName == null ) { return ; } cache . removeLogListener ( l , component ) ; listenerCounter . remove ( component , new Runnable ( ) { public void run ( ) { components . remove ( component ) ; } } ) ; } } public void poll ( ) { synchronized ( components ) { Set < Object > polled = new HashSet < Object > ( ) ; Set < Map . Entry < Object , String > > copy = new HashSet < Map . Entry < | |
1,771 | <s> package org . rubypeople . rdt . refactoring . core . rename ; import org . rubypeople . rdt . refactoring . core . IRefactoringConditionChecker ; import org . rubypeople . rdt . refactoring . core . IRefactoringConfig ; import org . rubypeople . rdt . refactoring . core . RefactoringConditionChecker ; import org . rubypeople . rdt . refactoring . core . renameclass . RenameClassConditionChecker ; import org . rubypeople . rdt . refactoring . core . renameclass . RenameClassConfig ; import org . rubypeople . rdt . refactoring . core . renamefield . RenameFieldConditionChecker ; import org . rubypeople . rdt . refactoring . core . renamefield . RenameFieldConfig ; import org . rubypeople . rdt . refactoring . core . renamelocal . RenameLocalConditionChecker ; import org . rubypeople . rdt . refactoring . core . renamelocal . RenameLocalConfig ; import org . rubypeople . rdt . refactoring . core . renamemethod . RenameMethodConditionChecker ; import org . rubypeople . rdt . refactoring . core . renamemethod . RenameMethodConfig ; import org . rubypeople . rdt . refactoring . core . renamemodule . RenameModuleConditionChecker ; import org . rubypeople . rdt . refactoring . core . renamemodule . RenameModuleConfig ; import org . rubypeople | |
1,772 | <s> package com . asakusafw . dmdl . java . emitter ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . math . BigDecimal ; import org . apache . hadoop . io . Text ; import org . hamcrest . Matcher ; import org . junit . Test ; import com . asakusafw . dmdl . java . GeneratorTesterRoot ; import com . asakusafw . runtime . value . Date ; import com . asakusafw . runtime . value . DateTime ; import com . asakusafw . runtime . value . IntOption ; public class ConcreteModelEmitterTest extends GeneratorTesterRoot { @ Test public void simple ( ) { ModelLoader loader = generate ( ) ; ModelWrapper object = loader . newModel ( "Simple" ) ; object . set ( "value" , 100 ) ; assertThat ( object . get ( "value" ) , eq ( 100 ) ) ; assertThat ( object . getOption ( "value" ) , eq ( new IntOption | |
1,773 | <s> package org . oddjob . schedules ; public class CalendarUnit { private final int field ; private final int value ; public CalendarUnit ( int field , int value ) { this . field = field ; this . value = value ; } public int getField ( ) { return field ; } | |
1,774 | <s> package net . sf . sveditor . core . db . stmt ; import net . sf . sveditor . core . db . ISVDBItemBase ; import net . sf . sveditor . core . db . SVDBChildItem ; import net . sf . sveditor . core . db . SVDBItemType ; public class SVDBStmt extends SVDBChildItem { protected SVDBStmt ( SVDBItemType type ) { super ( type ) ; } @ Override public void init ( ISVDBItemBase other ) { super . init ( other ) ; } @ Override public boolean equals ( Object obj ) { | |
1,775 | <s> package org . rubypeople . rdt . internal . ui . util ; import java . util . List ; import org . eclipse . jface . viewers . ISelection ; import org . eclipse . jface . viewers . IStructuredSelection ; public class SelectionUtil { public static List toList ( ISelection selection ) { | |
1,776 | <s> package jtwitter ; import java . io . IOException ; import java . io . InputStream ; import java . io . StringReader ; import java . net . MalformedURLException ; import java . text . ParseException ; import java . util . HashMap ; import javax . xml . parsers . DocumentBuilder ; import javax . xml . parsers . DocumentBuilderFactory ; import javax . xml . parsers . ParserConfigurationException ; import org . w3c . dom . Document ; import org . w3c . dom . NodeList ; import org . xml . sax . SAXException ; import org . xml . sax . InputSource ; public class TwitterResponse { private static final String TOP_LEVEL_NODE_NAME = "status" ; private static final String USER_NODE_NAME = "user" ; private static final String TEXT_NODE_NAME = "#text" ; DocumentBuilder builder ; NodeList nodes ; HashMap < Integer , TwitterEntry > entries = new HashMap < Integer , TwitterEntry > ( ) ; public TwitterResponse ( ) throws SAXException , IOException , ParserConfigurationException { builder = DocumentBuilderFactory . newInstance ( ) . newDocumentBuilder ( ) ; } public TwitterResponse parse ( InputStream xmlStream ) throws SAXException , IOException , ParseException , MalformedURLException { Document d = builder . parse ( xmlStream ) ; nodes = d . getElementsByTagName ( TOP_LEVEL_NODE_NAME ) ; readEntries ( ) ; return this ; } public TwitterResponse parse ( String xmlString ) throws SAXException , IOException , ParseException , MalformedURLException { Document d = builder . parse ( new InputSource ( new StringReader ( xmlString ) ) ) ; nodes = d . getElementsByTagName ( TOP_LEVEL_NODE_NAME ) ; readEntries ( ) ; return this ; } public int getNumberOfItems ( ) { return entries . size ( ) ; } public TwitterEntry getItemAt ( int index ) { return entries . get ( index ) ; } private void readEntries ( ) throws ParseException , MalformedURLException { for ( int i = 0 ; i < nodes . getLength ( ) ; i ++ ) { entries . put ( i , readEntry ( i ) ) ; } } private TwitterEntry readEntry ( int index ) throws ParseException , MalformedURLException { TwitterEntry entry = new TwitterEntry ( ) ; NodeList nd = nodes . item ( index ) . getChildNodes ( ) ; for ( int i = 0 ; i < nd . getLength ( ) ; i ++ ) { if ( ! nd . item ( i ) . getNodeName ( ) . equals ( TEXT_NODE_NAME ) ) { if ( | |
1,777 | <s> package org . rubypeople . rdt . internal . ui . preferences ; import java . io . IOException ; import java . net . URL ; import java . text . MessageFormat ; import org . eclipse . core . runtime . FileLocator ; import org . eclipse . core . runtime . Preferences ; import org . eclipse . jface . preference . BooleanFieldEditor ; import org . eclipse . jface . preference . FieldEditorPreferencePage ; import org . eclipse . swt . SWT ; import org . eclipse . swt . graphics . Font ; import org . eclipse . swt . graphics . FontData ; import org . | |
1,778 | <s> package org . rubypeople . rdt . refactoring . ui . pages . extractmethod ; import java . util . Observable ; import org . eclipse . swt . events . ModifyEvent ; import org . eclipse . swt . events . ModifyListener ; import org . eclipse . swt . widgets . Text ; import org . rubypeople . rdt . refactoring . core . extractmethod . MethodExtractor ; import org . rubypeople . rdt . refactoring . util . NameValidator ; public class MethodNameListener extends Observable implements ModifyListener { private final MethodExtractor extractor ; private final IValidationController validationController ; public MethodNameListener ( MethodExtractor extractor , IValidationController validationController ) { this . extractor = extractor ; this . validationController = validationController ; } public void modifyText ( ModifyEvent e ) { String name = ( ( Text ) e . widget ) . getText ( ) ; | |
1,779 | <s> package com . pogofish . jadt . samples . whathow . data ; public abstract class OptionalInt { private OptionalInt ( ) { } public static final OptionalInt _Some ( int value ) { return new Some ( value ) ; } private static final OptionalInt _None = new None ( ) ; public static final OptionalInt _None ( ) { return _None ; } public static interface MatchBlock < ResultType > { ResultType _case ( Some x ) ; ResultType _case ( None x ) ; } public static abstract class MatchBlockWithDefault < ResultType > implements MatchBlock < ResultType > { @ Override public ResultType _case ( Some x ) { return _default ( x ) ; } @ Override public ResultType _case ( None x ) { return _default ( x ) ; } protected abstract ResultType _default ( OptionalInt x ) ; } public static interface SwitchBlock { void _case ( Some x ) ; void _case ( None x ) ; } public static abstract class SwitchBlockWithDefault implements SwitchBlock { @ Override public void _case ( Some x ) { _default ( x ) ; } @ Override public void _case ( None x ) { _default ( x ) ; } protected abstract void _default ( OptionalInt x ) ; } public static final class Some extends OptionalInt { public int value ; public Some ( int value ) { this . value = value ; } @ Override public < ResultType > ResultType match ( MatchBlock < ResultType > matchBlock ) { return matchBlock . _case ( this ) ; } @ Override public void _switch ( SwitchBlock switchBlock ) { switchBlock . _case ( this ) ; } @ Override public int hashCode ( ) { final int prime = 31 ; int result = 1 ; result = prime * result + value ; return result ; } @ Override public boolean equals ( Object obj ) { if ( this == obj ) return true ; if ( obj == null ) return false ; if ( getClass ( ) != obj . getClass ( ) ) return false ; Some other = ( Some ) obj ; if ( value != other . value ) return false ; return true ; } @ Override public String toString ( ) { return "" + value + ")" ; } } public static final class None extends OptionalInt { public None ( ) { } @ Override public < ResultType > ResultType match ( MatchBlock < ResultType > matchBlock ) { return matchBlock . _case ( this | |
1,780 | <s> package com . mcbans . firestar . mcbans . callBacks ; import com . mcbans . firestar . mcbans . BukkitInterface ; import com . mcbans . firestar . mcbans . log . LogLevels ; import com . mcbans . firestar . mcbans . request . JsonHandler ; import org . bukkit . ChatColor ; import org . bukkit . entity . Player ; import java . util . HashMap ; public class MainCallBack implements Runnable { private final BukkitInterface MCBans ; public long last_req = 0 ; public MainCallBack ( BukkitInterface p ) { MCBans = p ; } @ Override public void run ( ) { int callBackInterval = ( ( 60 * 1000 ) * MCBans . Settings . getInteger ( "" ) ) ; if ( callBackInterval < ( ( 60 * | |
1,781 | <s> package org . oddjob . scheduling ; 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 . | |
1,782 | <s> package org . rubypeople . rdt . refactoring . core . inlinemethod ; import org . jruby . ast . MethodDefNode ; import org . rubypeople . rdt . refactoring . documentprovider . DocumentProvider ; import org . rubypeople . | |
1,783 | <s> package com . devtty . gat . controller ; import com . devtty . gat . data . MemberRepository ; import com . devtty . gat . model . Member ; import javax . annotation . PostConstruct ; import javax . enterprise . event . Event ; import javax . enterprise . inject . Model ; import javax . enterprise . inject . Produces ; import javax . inject . Inject ; import javax . inject . Named ; import javax . persistence . EntityManager ; import javax . transaction . UserTransaction ; import org . slf4j . Logger ; @ Model public class MemberRegistration { @ Inject private Logger log ; @ Inject @ MemberRepository private EntityManager em ; @ Inject private UserTransaction utx ; @ Inject | |
1,784 | <s> package org . rubypeople . rdt . internal . core ; import org . eclipse . core . resources . IMarkerDelta ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . resources . IResourceChangeEvent ; import org . eclipse . core . resources . IResourceDelta ; import org . rubypeople . eclipse . shams . resources . ShamProject ; public class ShamResourceChangeEvent implements IResourceChangeEvent { public static ShamResourceChangeEvent forClose ( ShamProject project ) { return new ShamResourceChangeEvent ( PRE_CLOSE , project ) ; } public static ShamResourceChangeEvent forDelete ( ShamProject project ) { return new ShamResourceChangeEvent ( PRE_DELETE , project ) ; } private final int type ; private final IResourceDelta delta ; private final IResource resource ; public ShamResourceChangeEvent ( int type , IResourceDelta delta ) { this . type = type ; this . delta = delta ; this . resource = null ; } public ShamResourceChangeEvent ( int type , IResource resource ) { this . type = | |
1,785 | <s> package org . rubypeople . rdt . internal . ui ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IStatus ; public | |
1,786 | <s> package org . rubypeople . rdt . refactoring . action ; import org . rubypeople . rdt . refactoring . core . | |
1,787 | <s> package com . asakusafw . runtime . value ; import java . io . DataInput ; import java . io . DataOutput ; import java . io . IOException ; import java . text . MessageFormat ; import com . asakusafw . runtime . io . util . WritableRawComparable ; public final class DateOption extends ValueOption < DateOption > { private final Date entity = new Date ( ) ; public DateOption ( ) { super ( ) ; } public DateOption ( Date valueOrNull ) { super ( ) ; if ( valueOrNull != null ) { this . entity . setElapsedDays ( valueOrNull . getElapsedDays ( ) ) ; this . nullValue = false ; } } public Date get ( ) { if ( nullValue ) { throw new NullPointerException ( ) ; } return entity ; } public Date or ( Date alternate ) { if ( nullValue ) { return alternate ; } return get ( ) ; } public int or ( int alternate ) { if ( nullValue ) { return alternate ; } return get ( ) . getElapsedDays ( ) ; } @ Deprecated public DateOption modify ( Date newValue ) { if ( newValue == null ) { this . nullValue = true ; } else { this . nullValue = false ; this . entity . setElapsedDays ( newValue . getElapsedDays ( ) ) ; } return this ; } @ Deprecated public DateOption modify ( int newValue ) { this . nullValue = false ; this . entity . setElapsedDays ( newValue ) ; return this ; } @ Override @ Deprecated public void copyFrom ( DateOption optionOrNull ) { if ( this == optionOrNull ) { return ; } else if ( optionOrNull == null || optionOrNull . nullValue ) { this . nullValue = true ; } else { modify ( optionOrNull . entity ) ; } } @ Override public int hashCode ( ) { final int prime = 31 ; if ( isNull ( ) ) { return 1 ; } int result = 1 ; result = prime * result + entity . hashCode ( ) ; return result ; } @ Override public boolean equals ( Object obj ) { if ( this == obj ) { return true ; } if ( obj == null ) { return false ; } if ( getClass ( ) != obj . getClass ( ) ) { return false ; } DateOption other = ( DateOption ) obj ; if ( nullValue != other . nullValue ) { return false ; } if ( nullValue == false && entity . equals ( other . entity ) == false ) { return false ; } return true ; } public boolean has ( Date other ) { if ( isNull ( ) ) { return other == null ; } return entity . equals ( other ) ; } @ Override public int compareTo ( WritableRawComparable o ) { DateOption other = ( DateOption ) o ; if ( nullValue | other . nullValue ) { if ( nullValue & other . nullValue ) { return 0 ; } return nullValue ? - 1 : + 1 ; } return entity . compareTo ( other . entity ) ; } @ Override public String toString ( ) { if ( isNull ( ) ) { return String . valueOf ( ( Object ) null ) ; } else { return get ( ) . toString ( ) ; } } @ Override public void write ( DataOutput out ) throws IOException { if ( isNull | |
1,788 | <s> package com . asakusafw . runtime . io . util ; import java . io . DataInput ; import java . io . DataOutput ; import java . io . IOException ; public final class NullWritableRawComparable implements WritableRawComparable { public static final NullWritableRawComparable INSTANCE = new NullWritableRawComparable ( ) ; @ Override public void write ( DataOutput out ) throws IOException { return ; } @ Override public void readFields ( DataInput in ) throws IOException { return ; } @ Override public int compareTo ( WritableRawComparable o ) { if ( o instanceof NullWritableRawComparable ) { return 0 ; } throw new IllegalArgumentException ( ) ; } @ Override public int getSizeInBytes ( byte [ ] buf , int offset ) throws IOException { return 0 ; } @ Override public int compareInBytes ( byte [ ] b1 , int o1 , byte [ ] b2 , int o2 ) throws IOException { return 0 ; } @ Override public int hashCode | |
1,789 | <s> package org . rubypeople . rdt . refactoring . tests . core . generateconstructor ; import org . rubypeople . rdt . refactoring . core . generateconstructor . ConstructorsGenerator ; import org . rubypeople . rdt . refactoring . documentprovider . StringDocumentProvider ; import org . rubypeople . rdt . refactoring . tests . TreeProviderTester ; public class TC_ConstructorGeneratorTreeTest extends TreeProviderTester { private final static String TEST_DOCUMENT_SIMPLE = "" + "class Xn" + "" + " def a(a)n" + " @a = an" + " @b = an" + " endn" + "end" ; private final static String TEST_DOCUMENT_NO_ATTRS = "class Xn" + " def a(a)n" + " endn" + "end" ; private final static String TEST_DOCUMENT_ALL_ATTR_DEFINITION = "class Xn" + " attr :an" + "" + " @c = 1n" + " @bn" + " endn" + "end" ; private final static String TEST_DOCUMENT_SCLASS_NODE = "x = \"a\"n" + "class <<xn" + " attr :an" + "" + " @c = 1n" + " @bn" + " endn" + "end" ; public void testSimpleDocument ( ) { addContent ( new String [ ] { "X" , "a" } ) ; addContent ( new String [ ] { "X" , "b" } ) ; validate ( new ConstructorsGenerator ( new StringDocumentProvider ( "" , TEST_DOCUMENT_SIMPLE ) ) ) ; } public void testDocumentNoAttrs ( ) { addContent ( new String [ ] { "X" } ) ; validate ( new ConstructorsGenerator ( new StringDocumentProvider ( "" , TEST_DOCUMENT_NO_ATTRS ) ) ) ; } public void testAllAttrTypes ( ) { addContent ( new String [ ] { "X" , "a" } ) ; addContent ( new String [ ] { "X" , "b" } ) ; addContent ( new String [ ] { "X" , "c" } ) ; | |
1,790 | <s> package com . asakusafw . dmdl . analyzer . driver ; import java . util . Map ; import com . asakusafw . dmdl . Diagnostic ; import com . asakusafw . dmdl . Diagnostic . Level ; import com . asakusafw . dmdl . model . AstAttribute ; import com . asakusafw . dmdl . model . AstAttributeElement ; import com . asakusafw . dmdl . model . AstName ; import com . asakusafw . dmdl . semantics . DmdlSemantics ; import com . asakusafw . dmdl . semantics . ModelDeclaration ; import com . asakusafw . dmdl . semantics . trait . NamespaceTrait ; import com . asakusafw . dmdl . spi . ModelAttributeDriver ; import com . asakusafw . dmdl . util . AttributeUtil ; public class NamespaceDriver extends ModelAttributeDriver { public static final String TARGET_NAME = "namespace" ; public static final String ELEMENT_NAME = "value" ; @ Override public String getTargetName ( ) { return TARGET_NAME ; } @ Override public void process ( DmdlSemantics environment , ModelDeclaration declaration , AstAttribute attribute ) { AstName name = getName ( environment , attribute ) ; if ( name != null ) { declaration . | |
1,791 | <s> package org . rubypeople . rdt . internal . core . util ; public final class HashtableOfArrayToObject implements Cloneable { public Object [ ] [ ] keyTable ; public Object [ ] valueTable ; public int elementSize ; int threshold ; public HashtableOfArrayToObject ( ) { this ( 13 ) ; } public HashtableOfArrayToObject ( int size ) { this . elementSize = 0 ; this . threshold = size ; int extraRoom = ( int ) ( size * 1.75f ) ; if ( this . threshold == extraRoom ) extraRoom ++ ; this . keyTable = new Object [ extraRoom ] [ ] ; this . valueTable = new Object [ extraRoom ] ; } public Object clone ( ) throws CloneNotSupportedException { HashtableOfArrayToObject result = ( HashtableOfArrayToObject ) super . clone ( ) ; result . elementSize = this . elementSize ; result . threshold = this . threshold ; int length = this . keyTable . length ; result . keyTable = new Object [ length ] [ ] ; System . arraycopy ( this . keyTable , 0 , result . keyTable , 0 , length ) ; length = this . valueTable . length ; result . valueTable = new Object [ length ] ; System . arraycopy ( this . valueTable , 0 , result . valueTable , 0 , length ) ; return result ; } public boolean containsKey ( Object [ ] key ) { int length = this . keyTable . length ; int index = hashCode ( key ) % length ; int keyLength = key . length ; Object [ ] currentKey ; while ( ( currentKey = this . keyTable [ index ] ) != null ) { if ( currentKey . length == keyLength && Util . equalArraysOrNull ( currentKey , key ) ) return true ; if ( ++ index == length ) { index = 0 ; } } return false ; } public Object get ( Object [ ] key ) { int length = this . keyTable . length ; int index = hashCode ( key ) % length ; int keyLength = key . length ; Object [ ] currentKey ; while ( ( currentKey = this . keyTable [ index ] ) != null ) { if ( currentKey . length == keyLength && Util . equalArraysOrNull ( currentKey , key ) ) return this . valueTable [ index ] ; if ( ++ index == length ) { index = 0 ; } } return null ; } public Object [ ] getKey ( Object [ ] key , int keyLength ) { int length = this . keyTable . length ; int index = hashCode ( key , keyLength ) % length ; Object [ ] currentKey ; while ( ( currentKey = this . keyTable [ index ] ) != null ) { if ( currentKey . length == keyLength && Util . equalArrays ( currentKey , key , keyLength ) ) return currentKey ; if ( ++ index == length ) { index = 0 ; } } return null ; } private int hashCode ( Object [ ] element ) { return hashCode ( element , element . length ) ; } private int hashCode ( Object [ ] element , int length ) { int hash = 0 ; for ( int i = length - 1 ; i >= 0 ; i -- ) hash = Util . combineHashCodes ( hash , element [ i ] . hashCode ( ) ) ; return hash & 0x7FFFFFFF ; } public Object put ( Object [ ] key , Object value ) { int length = | |
1,792 | <s> package com . asakusafw . dmdl ; import java . text . MessageFormat ; import com . asakusafw . dmdl . model . AstNode ; public class Diagnostic { public final Diagnostic . Level level ; public final String message ; public final Region region ; public Diagnostic ( Diagnostic . | |
1,793 | <s> package org . oddjob . monitor . actions ; import java . beans . PropertyChangeListener ; import javax . swing . KeyStroke ; import org . oddjob . monitor . context . ExplorerContext ; public class MockExplorerAction implements ExplorerAction { @ Override public String getName ( ) { throw new RuntimeException ( "" + getClass ( ) ) ; } @ Override public String getGroup ( ) { throw new RuntimeException ( "" + getClass ( ) ) ; } @ Override public Integer getMnemonicKey ( ) { throw new RuntimeException ( "" + getClass ( ) ) ; } @ Override public KeyStroke getAcceleratorKey ( ) { throw new RuntimeException ( "" + getClass ( ) ) ; } @ Override public void setSelectedContext ( ExplorerContext eContext ) { throw new RuntimeException ( "" + getClass ( ) ) ; } @ Override public void addPropertyChangeListener ( PropertyChangeListener listener ) { throw new RuntimeException ( "" + getClass ( ) ) ; } @ Override public void removePropertyChangeListener ( PropertyChangeListener listener ) { throw new RuntimeException ( "" + getClass ( ) ) ; } @ | |
1,794 | <s> package mc . now . util ; import java . io . File ; import java . io . FileInputStream ; import java . net . URI ; import java . net . URL ; import java . util . Properties ; import org . apache . commons . io . FilenameUtils ; import org . apache . log4j . Logger ; public class InstallerConfig { private static final Logger LOGGER = Logger . getLogger ( InstallerConfig . class ) ; private static enum OS { Mac , Linux , Windows ; } private static final String installerDir ; private static final Properties properties ; public static final OS currentOS ; private static String mcFolder = null ; static { String osname = System . getProperty ( "os.name" ) . toLowerCase ( ) ; if ( osname . startsWith ( "mac" ) ) { currentOS = OS . Mac ; } else if ( osname . startsWith ( "linux" ) ) { currentOS = OS . Linux ; } else if ( osname . startsWith ( "win" ) ) { currentOS = OS . Windows ; } else { throw new RuntimeException ( "Unknown OS: " + osname ) ; } switch ( currentOS ) { case Mac : mcFolder = System . getProperty ( "user.home" ) + "" ; break ; case Linux : mcFolder = System . getProperty ( "user.home" ) + "/.minecraft/" ; break ; case Windows : mcFolder = System . getenv ( "APPDATA" ) + "\\.minecraft\\" ; break ; } properties = new Properties ( ) ; try { URL url = InstallerConfig . class . getProtectionDomain ( ) . getCodeSource ( ) . getLocation ( ) ; File f = new File ( new URI ( url . toString ( ) ) ) ; File dir = f . getParentFile ( ) ; installerDir = dir . getPath ( ) ; properties . load ( new FileInputStream ( FilenameUtils . concat ( installerDir , "" ) ) ) ; } catch | |
1,795 | <s> package net . bioclipse . opentox . ui . handlers ; import net . bioclipse . opentox . ui . wizards . CreateDatasetWizard ; import org . eclipse . core . commands . AbstractHandler ; import org . eclipse . core . commands . ExecutionEvent ; import org . eclipse . core . commands . ExecutionException ; import org . eclipse . core . commands . IHandler ; import org . eclipse . core . commands . IHandlerListener ; import org . eclipse . core . resources . IFile ; import org . eclipse . core . resources . IResource ; import org . eclipse . jface . viewers . ISelection ; import org . eclipse . jface . viewers . IStructuredSelection ; import org . eclipse . jface . wizard . WizardDialog ; import org . eclipse . ui . PlatformUI ; import org . eclipse . ui . handlers . HandlerUtil ; public class CreateDatasetHandler extends AbstractHandler { @ Override public Object execute ( ExecutionEvent event ) throws ExecutionException { ISelection sel = HandlerUtil . getCurrentSelection ( event ) ; if ( sel . isEmpty ( ) ) return null ; if ( ! ( sel instanceof IStructuredSelection ) ) return null ; Object obj = ( ( IStructuredSelection ) sel ) . getFirstElement ( ) ; if ( ! ( obj instanceof IFile ) ) return null ; IFile file = ( IFile ) obj ; | |
1,796 | <s> package com . asakusafw . dmdl . model ; import com . asakusafw . dmdl . Region ; public class AstReferenceType extends AbstractAstNode implements AstType { private final Region region ; public final AstSimpleName name ; public AstReferenceType ( Region region , AstSimpleName name ) { if ( name == null ) { throw new IllegalArgumentException ( "" ) ; } this . region = region ; this . name = name ; } @ Override public Region getRegion ( ) { return region ; } @ Override public < C , R > R accept ( C context , Visitor < C , R > visitor ) { if ( visitor == null ) { throw new IllegalArgumentException ( "" ) ; } R result = visitor . visitReferenceType ( context , this ) ; return result ; } @ Override public int hashCode ( ) { final int prime = 31 ; int result = 1 ; result = prime * result + name . hashCode ( ) ; | |
1,797 | <s> package org . oddjob . monitor . action ; import javax . swing . KeyStroke ; import org . oddjob . Forceable ; import org . oddjob . monitor . Standards ; import org . oddjob . monitor . context . ExplorerContext ; import org . oddjob . monitor . model . JobAction ; import org . oddjob . util . ThreadManager ; public class ForceAction extends JobAction { private Forceable job = null ; private ThreadManager threadManager ; public String getName ( ) { return "Force" ; } public String getGroup ( ) { return JOB_GROUP ; } public Integer getMnemonicKey ( ) { | |
1,798 | <s> package com . pogofish . jadt . maven ; import java . io . File ; import org . apache . maven . plugin . AbstractMojo ; import org . apache . maven . plugin . MojoExecutionException ; import org . apache . maven . project . MavenProject ; import com . pogofish . jadt . JADT ; public class JADTMojo extends AbstractMojo { JADT jadt = JADT . standardConfigDriver ( ) ; File srcPath = new File ( "" ) ; File destDir = new File ( "" ) ; MavenProject project = null ; @ Override public void execute ( ) throws MojoExecutionException { try { project . addCompileSourceRoot ( destDir . getCanonicalPath ( ) ) ; jadt . parseAndEmit ( srcPath . getCanonicalPath ( | |
1,799 | <s> package com . pogofish . jadt . printer ; import java . util . List ; import com . pogofish . jadt . ast . Annotation ; import com . pogofish . jadt . ast . AnnotationElement ; import com . pogofish . jadt . ast . AnnotationElement . ElementValue ; import com . pogofish . jadt . ast . AnnotationElement . ElementValuePairs ; import com . pogofish . jadt . ast . AnnotationKeyValue ; import com . pogofish . jadt . ast . AnnotationValue ; import com . pogofish . jadt . ast . AnnotationValue . AnnotationValueAnnotation ; import com . pogofish . jadt . ast . AnnotationValue . AnnotationValueArray ; import com . pogofish . jadt . ast . AnnotationValue . AnnotationValueExpression ; import com . pogofish . jadt . ast . Arg ; import com . pogofish . jadt . ast . ArgModifier ; import com . pogofish . jadt . ast . ArgModifier . Final ; import com . pogofish . jadt . ast . ArgModifier . Transient ; import com . pogofish . jadt . ast . ArgModifier . Volatile ; import com . pogofish . jadt . ast . BlockToken ; import com . pogofish . jadt . ast . BlockToken . BlockEOL ; import com . pogofish . jadt . ast . BlockToken . BlockWhiteSpace ; import com . pogofish . jadt . ast . BlockToken . BlockWord ; import com . pogofish . jadt . ast . Constructor ; import com . pogofish . jadt . ast . DataType ; import com . pogofish . jadt . ast . Doc ; import com . pogofish . jadt . ast . Expression ; import com . pogofish . jadt . ast . Expression . ClassReference ; import com . pogofish . jadt . ast . Expression . LiteralExpression ; import com . pogofish . jadt . ast . Expression . NestedExpression ; import com . pogofish . jadt . ast . Expression . TernaryExpression ; import com . pogofish . jadt . ast . Expression . VariableExpression ; import com . pogofish . jadt . ast . Imprt ; import com . pogofish . jadt . ast . JDTagSection ; import com . pogofish . jadt . ast . JDToken ; import com . pogofish . jadt . ast . Literal ; import com . pogofish . jadt . ast . JDToken . JDAsterisk ; import com . pogofish . jadt . ast . JDToken . JDEOL ; import com . pogofish . jadt . ast . JDToken . JDTag ; import com . pogofish . jadt . ast . JDToken . JDWhiteSpace ; import com . pogofish . jadt . ast . JDToken . JDWord ; import com . pogofish . jadt . ast . JavaComment ; import com . pogofish . jadt . ast . JavaComment . JavaBlockComment ; import com . pogofish . jadt . ast . JavaComment . JavaDocComment ; import com . pogofish . jadt . ast . JavaComment . JavaEOLComment ; import com . pogofish . jadt . ast . Literal . BooleanLiteral ; import com . pogofish . jadt . ast . Literal . CharLiteral ; import com . pogofish . jadt . ast . Literal . FloatingPointLiteral ; import com . pogofish . jadt . ast . Literal . IntegerLiteral ; import com . pogofish . jadt . ast . Literal . NullLiteral ; import com . pogofish . jadt . ast . Literal . StringLiteral ; import com . pogofish . jadt . ast . Optional ; import com . pogofish . jadt . ast . Optional . None ; import com . pogofish . jadt . ast . Optional . Some ; import com . pogofish . jadt . ast . PrimitiveType ; import com . pogofish . jadt . ast . PrimitiveType . BooleanType ; import com . pogofish . jadt . ast . PrimitiveType . ByteType ; import com . pogofish . jadt . ast . PrimitiveType . CharType ; import com . pogofish . jadt . ast . PrimitiveType . DoubleType ; import com . pogofish . jadt . ast . PrimitiveType . FloatType ; import com . pogofish . jadt . ast . PrimitiveType . IntType ; import com . pogofish . jadt . ast . PrimitiveType . LongType ; import com . pogofish . jadt . ast . PrimitiveType . ShortType ; import com . pogofish . jadt . ast . RefType ; import com . pogofish . jadt . ast . RefType . ArrayType ; import com . pogofish . jadt . ast . RefType . ClassType ; import com . pogofish . jadt . ast . Type ; import com . pogofish . jadt . ast . Type . Primitive ; import com . pogofish . jadt . ast . Type . Ref ; public class ASTPrinter { public static String print ( Doc doc ) { final StringBuilder builder = new StringBuilder ( doc . pkg . name . isEmpty ( ) ? "" : ( "package " + doc . pkg . name + "nn" ) ) ; if ( ! doc . imports . isEmpty ( ) ) { for ( Imprt imp : doc . imports ) { builder . append ( "import " + imp . name + "n" ) ; } builder . append ( "n" ) ; } for ( DataType dataType : doc . dataTypes ) { builder . append ( print ( dataType ) ) ; builder . append ( "n" ) ; } return builder . toString ( ) ; } public static String printComments ( String indent , List < JavaComment > comments ) { final StringBuilder builder = new StringBuilder ( ) ; for ( JavaComment comment : comments ) { builder . append ( print ( indent , comment ) ) ; builder . append ( "n" ) ; } return builder . toString ( ) ; } public static String print ( final String indent , JavaComment comment ) { return comment . match ( new JavaComment . MatchBlock < String > ( ) { @ Override public String _case ( JavaDocComment x ) { final StringBuilder builder = new StringBuilder ( indent ) ; builder . append ( x . start ) ; for ( JDToken token : x . generalSection ) { builder . append ( print ( indent , token ) ) ; } for ( JDTagSection tagSection : x . tagSections ) { for ( JDToken token : tagSection . tokens ) { builder . append ( print ( indent , token ) ) ; } } builder . append ( x . end ) ; return builder . toString ( ) ; } @ Override public String _case ( JavaBlockComment comment ) { final StringBuilder builder = new StringBuilder ( indent ) ; for ( List < BlockToken > line : comment . lines ) { for ( BlockToken token : line ) { builder . append ( token . match ( new BlockToken . MatchBlock < String > ( ) { @ Override public String _case ( BlockWord x ) { return x . word ; } @ Override public String _case ( BlockWhiteSpace x ) { return x . ws ; } @ Override public String _case ( BlockEOL x ) { return x . content + indent ; } } ) ) ; } } return builder . toString ( ) ; } @ Override public String _case ( JavaEOLComment x ) { return x . comment ; } } ) ; } public static String print ( DataType dataType ) { final StringBuilder builder = new StringBuilder ( ) ; for ( Annotation annotation : dataType . annotations ) { builder . append ( print ( annotation ) ) ; builder . append ( "n" ) ; } builder . append ( dataType . name ) ; dataType . extendedType . _switch ( new Optional . SwitchBlock < RefType > ( ) { @ Override public void _case ( Some < RefType > x ) { builder . append ( " extends " ) ; builder . append ( print ( x . value ) ) ; } @ Override public void _case ( None < RefType > x ) { } } ) ; if ( ! dataType . implementedTypes . isEmpty ( ) ) { builder . append ( " implements " ) ; boolean first = true ; for ( RefType type : dataType . implementedTypes ) { if ( first ) { first = false ; } else { builder . append ( ", " ) ; } builder . append ( print ( type ) ) ; } } builder . append ( " =n " ) ; boolean first = true ; for ( Constructor constructor : dataType . constructors ) { if ( first ) { first = false ; } else { builder . append ( "n | " ) ; } builder . append ( print ( constructor ) ) ; } return builder . toString ( ) ; } public static String print ( Constructor constructor ) { final StringBuilder builder = new StringBuilder ( constructor . name ) ; if ( ! constructor . args . isEmpty ( ) ) { builder . append ( "(" |
Subsets and Splits