mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 18:26:01 +02:00
Small UI improvement
This commit is contained in:
parent
c9ee950352
commit
8fc63d723e
3 changed files with 6 additions and 0 deletions
|
@ -50,6 +50,10 @@ public class ImplementMethodInputPage extends UserInputWizardPage{
|
||||||
|
|
||||||
|
|
||||||
public void createControl(Composite parent) {
|
public void createControl(Composite parent) {
|
||||||
|
|
||||||
|
setTitle(Messages.ImplementMethodInputPage_PageTitle);
|
||||||
|
setMessage(Messages.ImplementMethodInputPage_Header);
|
||||||
|
|
||||||
Composite comp = new Composite(parent, SWT.NONE );
|
Composite comp = new Composite(parent, SWT.NONE );
|
||||||
comp.setLayout(new FillLayout());
|
comp.setLayout(new FillLayout());
|
||||||
createTree(comp);
|
createTree(comp);
|
||||||
|
|
|
@ -28,6 +28,7 @@ public final class Messages extends NLS {
|
||||||
public static String ImplementMethodRefactoringPage_GeneratingPreview;
|
public static String ImplementMethodRefactoringPage_GeneratingPreview;
|
||||||
public static String ImplementMethodRefactoring_NoMethodSelected;
|
public static String ImplementMethodRefactoring_NoMethodSelected;
|
||||||
public static String ImplementMethodRefactoring_MethodHasImpl;
|
public static String ImplementMethodRefactoring_MethodHasImpl;
|
||||||
|
public static String ImplementMethodInputPage_Header;
|
||||||
|
|
||||||
static {
|
static {
|
||||||
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
|
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
# IBM Corporation
|
# IBM Corporation
|
||||||
###############################################################################
|
###############################################################################
|
||||||
ParameterNamesInputPage_Title=Implement Method
|
ParameterNamesInputPage_Title=Implement Method
|
||||||
|
ImplementMethodInputPage_Header=Select Methods to implement:
|
||||||
ParameterNamesInputPage_CompleteMissingMails=Please complete the missing variable names:
|
ParameterNamesInputPage_CompleteMissingMails=Please complete the missing variable names:
|
||||||
ImplementMethodInputPage_PageTitle=Implement Method
|
ImplementMethodInputPage_PageTitle=Implement Method
|
||||||
ImplementMethodRefactoring_MethodDefinition=Method Definition
|
ImplementMethodRefactoring_MethodDefinition=Method Definition
|
||||||
|
|
Loading…
Add table
Reference in a new issue