mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 02:06:01 +02:00
Renamed messages.properties to Messages.properties.
This commit is contained in:
parent
3128381403
commit
badab3650e
4 changed files with 13 additions and 20 deletions
|
@ -1,5 +1,5 @@
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2008, 2009 Institute for Software, HSR Hochschule fuer Technik
|
* Copyright (c) 2008, 2011 Institute for Software, HSR Hochschule fuer Technik
|
||||||
* Rapperswil, University of applied sciences and others
|
* Rapperswil, University of applied sciences and others
|
||||||
* All rights reserved. This program and the accompanying materials
|
* All rights reserved. This program and the accompanying materials
|
||||||
* are made available under the terms of the Eclipse Public License v1.0
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
|
@ -7,20 +7,13 @@
|
||||||
* http://www.eclipse.org/legal/epl-v10.html
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Institute for Software - initial API and implementation
|
* Institute for Software - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.cdt.internal.ui.refactoring.gettersandsetters;
|
package org.eclipse.cdt.internal.ui.refactoring.gettersandsetters;
|
||||||
|
|
||||||
import org.eclipse.osgi.util.NLS;
|
import org.eclipse.osgi.util.NLS;
|
||||||
|
|
||||||
public final class Messages extends NLS {
|
public final class Messages extends NLS {
|
||||||
|
|
||||||
private static final String BUNDLE_NAME = "org.eclipse.cdt.internal.ui.refactoring.gettersandsetters.messages";//$NON-NLS-1$
|
|
||||||
|
|
||||||
private Messages() {
|
|
||||||
// Do not instantiate
|
|
||||||
}
|
|
||||||
|
|
||||||
public static String GenerateGettersAndSettersInputPage_DeselectAll;
|
public static String GenerateGettersAndSettersInputPage_DeselectAll;
|
||||||
public static String GenerateGettersAndSettersInputPage_header;
|
public static String GenerateGettersAndSettersInputPage_header;
|
||||||
public static String GenerateGettersAndSettersInputPage_PlaceImplHeader;
|
public static String GenerateGettersAndSettersInputPage_PlaceImplHeader;
|
||||||
|
@ -32,7 +25,11 @@ public final class Messages extends NLS {
|
||||||
public static String GenerateGettersAndSettersRefactoring_NoImplFile;
|
public static String GenerateGettersAndSettersRefactoring_NoImplFile;
|
||||||
public static String GettersAndSetters_Name;
|
public static String GettersAndSetters_Name;
|
||||||
|
|
||||||
|
private Messages() {
|
||||||
|
// Do not instantiate
|
||||||
|
}
|
||||||
|
|
||||||
static {
|
static {
|
||||||
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
|
NLS.initializeMessages(Messages.class.getName(), Messages.class);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,21 +6,13 @@
|
||||||
* http://www.eclipse.org/legal/epl-v10.html
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* IBM - initial API and implementation
|
* IBM - initial API and implementation
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.cdt.internal.ui.refactoring.implementmethod;
|
package org.eclipse.cdt.internal.ui.refactoring.implementmethod;
|
||||||
|
|
||||||
import org.eclipse.osgi.util.NLS;
|
import org.eclipse.osgi.util.NLS;
|
||||||
|
|
||||||
public final class Messages extends NLS {
|
public final class Messages extends NLS {
|
||||||
|
|
||||||
private static final String BUNDLE_NAME = "org.eclipse.cdt.internal.ui.refactoring.implementmethod.messages";//$NON-NLS-1$
|
|
||||||
|
|
||||||
private Messages() {
|
|
||||||
// Do not instantiate
|
|
||||||
}
|
|
||||||
|
|
||||||
public static String ParameterNamesInputPage_Title;
|
public static String ParameterNamesInputPage_Title;
|
||||||
public static String ParameterNamesInputPage_CompleteMissingMails;
|
public static String ParameterNamesInputPage_CompleteMissingMails;
|
||||||
public static String ImplementMethodInputPage_PageTitle;
|
public static String ImplementMethodInputPage_PageTitle;
|
||||||
|
@ -35,7 +27,11 @@ public final class Messages extends NLS {
|
||||||
public static String ImplementMethodRefactoringWizard_CancelingPreviewGeneration;
|
public static String ImplementMethodRefactoringWizard_CancelingPreviewGeneration;
|
||||||
public static String ImplementMethodInputPage_Header;
|
public static String ImplementMethodInputPage_Header;
|
||||||
|
|
||||||
|
private Messages() {
|
||||||
|
// Do not instantiate
|
||||||
|
}
|
||||||
|
|
||||||
static {
|
static {
|
||||||
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
|
NLS.initializeMessages(Messages.class.getName(), Messages.class);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue