Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

Commit

Permalink
Merge branch 'release/0.5-M6'
Browse files Browse the repository at this point in the history
  • Loading branch information
kaloyan-raev committed Mar 23, 2016
2 parents de0132d + f65fc98 commit 2d3366f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 0.5-M6

This milestone adds a field in the DDMS preference page for selecting the debug port.

* [489253](https://bugs.eclipse.org/bugs/show_bug.cgi?id=489253) Add Preference Page Entry for Selected Debug Port

## 0.5-M5

This milestone fixes the Signing and Keys view and provides it as a separate installable feature on the update site.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ public class Messages extends NLS {
public static String PreferencePage_Adbhost_value;
public static String PreferencePage_Assert;
public static String PreferencePage_Base_Local_Debugger_Port;
public static String PreferencePage_Selected_Debugger_Port;
public static String PreferencePage_Debug;
public static String PreferencePage_Error;
public static String PreferencePage_Heap_Updates_Enabled_Default;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ PreferencePage_Info=Info
PreferencePage_Logging_Level=Logging Level
PreferencePage_Open_Eclipse=Open in Eclipse
PreferencePage_Save_Disk=Save to disk
PreferencePage_Selected_Debugger_Port=Selected debug port
PreferencePage_Thread_Status_Refresh_Interval=Thread status refresh interval (seconds):
PreferencePage_Thread_Updates_Enabled_By_Default=Thread updates enabled by default
PreferencePage_Use_Adbhost=Use ADBHOST
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@ public void createFieldEditors() {
ife.setValidRange(1024, 32767);
addField(ife);

ife = new IntegerFieldEditor(PreferenceInitializer.ATTR_SELECTED_DEBUG_PORT,
Messages.PreferencePage_Selected_Debugger_Port, getFieldEditorParent());
ife.setValidRange(1024, 32767);
addField(ife);

BooleanFieldEditor bfe;

bfe = new BooleanFieldEditor(PreferenceInitializer.ATTR_DEFAULT_THREAD_UPDATE,
Expand Down

0 comments on commit 2d3366f

Please sign in to comment.