|
|||||||
| Register | FAQ | The Twelve Commandments | Members List | Find the Best VPN | Today's Posts | Search |
| Getting Started Using LimeWire + WireShare Tips on getting started with LimeWire or WireShare. Also a place to seek help getting started. Includes the original LimeWire Pirate Edition thread, with the most up to date LPE installer packages on the internet including File_Girl's LPE version, and WireShare the most upgraded version of them all. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
|
#1
|
|||
|
|||
|
I built LimeWire by downloading the source code to my local Eclipse IDE. I got it to run using Eclipse, and it downloaded a few files just fine.
Now at the top of the LimeWire GUI there's a text field with a label "Search..." in gray, and immediately to its right is a green button with an icon on it that results in tip "Search P2P Network" when you put the mouse over it. The only place in the code where "Search P2P Network" is mentioned is in ".\limewire\private-components\swingui\src\main\java\org\limewire\ui\s wing\search\SearchBar.java" where it's designated as a tool tip for button <searchButton>. The only place in the code where "Search..." is mentioned is in the same file, where it is passed to constructor <PromptTextField()>, creating text field <searchField>. So I decided I wanted to see what exactly happens when I enter a search string in the <searchField> field and then click on the <searchButton> button. The listener for <searchButton> is defined as a subclass of <ActionListener> which only has one method: public void actionPerformed(ActionEvent e) { // Get search text, and add to history if non-empty. String searchText = getSearchText(); if ( !searchText.isEmpty() && SwingUiSettings.KEEP_SEARCH_HISTORY.getValue()) { SearchBar.this.searchHistory.addEntry(searchText); } } I put a breakpoint right there at the <getSearchText()> call, and the little blue circle appeared to the immediate right of that call. But I didn't get the little check mark that's supposed to go with it. I think I need that check mark there in order for the breakpoint to have any effect, don't I? Does anybody know what I have to do to get the little check mark there? Kevin S |
![]() |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Very frustrated but want it to work!(green check mark next to every song I want to download) | chzhead67 | Welcome to the Gnutella Forums and introduce yourself | 3 | January 2nd, 2009 09:10 PM |
| The GREEN Check Mark? | scottfree | Download/Upload Problems | 2 | February 26th, 2008 12:03 PM |
| Check Mark | SOFTWAREMAN | Getting Started Using LimeWire + WireShare | 1 | February 15th, 2008 11:44 AM |
| Dr Watson's postmortim debugger | scrubber | General Windows Support | 5 | June 17th, 2007 01:45 AM |
| green check mark | Skat64er | Open Discussion topics | 1 | August 12th, 2005 08:51 PM |