@Override public void initializeParticipants() { super.initializeParticipants(); // search for existing JavaSourceLookupParticipant // this is added only once after calling // org.eclipse.m2e.internal.launch.MavenLaunchDelegate.launch(ILaunchConfiguration, String, ILaunch, IProgressMonitor) // --> // org.eclipse.m2e.internal.launch.MavenLaunchExtensionsSupport.configureSourceLookup(ILaunchConfiguration, ILaunch, IProgressMonitor) for (final ISourceLookupParticipant participant : getParticipants()) { if (participant instanceof JavaSourceLookupParticipant) { return; } } addParticipants(new ISourceLookupParticipant[] { new JavaSourceLookupParticipant() }); }
@Override public void initializeParticipants() { try { ILaunchConfiguration config = this.getLaunchConfiguration(); if (config != null) { String fileName = config.getAttribute(BfLaunchConfigurationDelegate.FILE_ATTR, (String) null); this.addParticipants(new ISourceLookupParticipant[] {new BfSourceLocatorParticipant(fileName)}); } else { DbgActivator.getDefault().logWarning("No LaunchConfiguration in: " + BfSourceLookupDirector.class, null); } } catch (CoreException e) { DbgActivator.getDefault().logError("Launch configuration could not be read", e); } }
public void initializeParticipants() { ISourceLookupParticipant participant = new LookupParticipant(this); addParticipants(new ISourceLookupParticipant[] { participant } ); // Check mode post factum. checkSupportedLookupMode(); }
public void initializeParticipants( ) { addParticipants( new ISourceLookupParticipant[]{ new ScriptSourceLookupParticipant( ), new JavaSourceLookupParticipant( ) } ); }
@Override public void initializeParticipants() { // Do not use CSourceLoookupDirector if(session != null) { addParticipants( new ISourceLookupParticipant[]{ new DsfSourceLookupParticipantExtension(session) } ); } }
@Override protected DsfSourceLookupDirector createDsfSourceLocator(ILaunchConfiguration lc, DsfSession session) throws CoreException { DsfSourceLookupDirector sourceLookupDirector = createSourceLookupDirector(lc, session); sourceLookupDirector.addParticipants( new ISourceLookupParticipant[]{ new DsfSourceLookupParticipant(session) } ); return sourceLookupDirector; }
@Override public void initializeParticipants() { addParticipants(new ISourceLookupParticipant[] { new DSPSourceLookupParticipant() }); }
@Override public void initializeParticipants() { addParticipants(new ISourceLookupParticipant[] { new TeaVMSourceLookupParticipant() }); }