-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Adam Wisniewski <[email protected]>
- Loading branch information
Adam Wisniewski
authored and
Adam Wisniewski
committed
Oct 3, 2023
1 parent
fe956b1
commit e407c69
Showing
15 changed files
with
646 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
....tools.eclipse.ui/src/io/openliberty/tools/eclipse/debug/LibertySourceLookupDirector.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package io.openliberty.tools.eclipse.debug; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
import org.eclipse.debug.core.sourcelookup.AbstractSourceLookupDirector; | ||
import org.eclipse.debug.core.sourcelookup.ISourceLookupParticipant; | ||
import org.eclipse.jdt.launching.sourcelookup.containers.JavaSourceLookupParticipant; | ||
|
||
public class LibertySourceLookupDirector extends AbstractSourceLookupDirector { | ||
|
||
@Override | ||
public void initializeParticipants() { | ||
final List<ISourceLookupParticipant> participants = new ArrayList<>(); | ||
|
||
participants.add(new JavaSourceLookupParticipant()); | ||
|
||
addParticipants(participants.toArray(new ISourceLookupParticipant[participants.size()])); | ||
} | ||
} |
Oops, something went wrong.