| author | Rainer Pielmann | 2012-02-08 10:28:19 (EST) |
|---|---|---|
| committer | Stephan Born | 2012-04-24 04:33:03 (EDT) |
| commit | 27c6c7cbbfdb7846dd21982d388da4c83dbd4f74 (patch) (side-by-side diff) | |
| tree | c35e1e8b8cc7faf274ca706ea5eee3352fb70076 | |
| parent | 6e024396aac0abe628ca1f66db02c3c2994e3cd8 (diff) | |
| download | org.eclipse.stardust.ide-27c6c7cbbfdb7846dd21982d388da4c83dbd4f74.zip org.eclipse.stardust.ide-27c6c7cbbfdb7846dd21982d388da4c83dbd4f74.tar.gz org.eclipse.stardust.ide-27c6c7cbbfdb7846dd21982d388da4c83dbd4f74.tar.bz2 | |
Jira-ID: CRNT-23200 Stardust: Rename NL Plugins to new name pattern (org.eclipse.stardust.modeling.transformation - fixed messages)
git-svn-id: http://emeafrazerg/svn/ipp/product/trunk/stardust/ide@53578 8100b5e0-4d52-466c-ae9c-bdeccbdeaf6b
3 files changed, 0 insertions, 168 deletions
diff --git a/modeling/org.eclipse.stardust.modeling.transformation/src/org/eclipse/stardust/modeling/transformation/messaging/modeling/application/Messages.java b/modeling/org.eclipse.stardust.modeling.transformation/src/org/eclipse/stardust/modeling/transformation/messaging/modeling/application/Messages.java deleted file mode 100644 index 2bebf04..0000000 --- a/modeling/org.eclipse.stardust.modeling.transformation/src/org/eclipse/stardust/modeling/transformation/messaging/modeling/application/Messages.java +++ b/dev/null @@ -1,118 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2011 SunGard CSA LLC and others. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html - * - * Contributors: - * SunGard CSA LLC - initial API and implementation and/or initial documentation - *******************************************************************************/ -package org.eclipse.stardust.modeling.transformation.messaging.modeling.application; - -import org.eclipse.osgi.util.NLS; - -public class Messages extends NLS -{ - private static final String BUNDLE_NAME = "org.eclipse.stardust.modeling.data.structured.messages"; //$NON-NLS-1$ - - public static String ComplexTypePropertyPage_DeleteButtonLabel; - - public static String ComplexTypePropertyPage_DuplicateFieldErrorMessage; - - public static String ComplexTypePropertyPage_DuplicateTypeErrorMesage; - - public static String ComplexTypePropertyPage_InvalidFieldIdentifierErrorMessage; - - public static String ComplexTypePropertyPage_InvalidTypeIdentifierErrorMessage; - - public static String ComplexTypePropertyPage_MaxOccurs1Label; - - public static String ComplexTypePropertyPage_MaxOccursColumnLabel; - - public static String ComplexTypePropertyPage_MaxOccursUnboundedLabel; - - public static String ComplexTypePropertyPage_MoveDownButtonLabel; - - public static String ComplexTypePropertyPage_MoveUpButtonLabel; - - public static String ComplexTypePropertyPage_NameColumnLabel; - - public static String ComplexTypePropertyPage_NewFieldLabel; - - public static String ComplexTypePropertyPage_NoNameErrorMessage; - - public static String ComplexTypePropertyPage_TypeColumnLabel; - - public static String ComplexTypePropertyPage_TypeNameLabel; - - public static String DataStructPropertyPage_declaredTypesLabel; - - public static String DataStructPropertyPage_DetailsLabel; - - public static String DataValidator_NoActualType; - - public static String DataValidator_NoDeclaredTypeId; - - public static String DataValidator_NoLocation; - - public static String DataValidator_NoMatchingTypeDeclarationId; - - public static String DataValidator_NoSchema; - - public static String DataValidator_NoTypeDeclarations; - - public static String DataValidator_NoTypeDefinition; - - public static String DataValidator_NoTypeName; - - public static String DataValidator_TypeNotFound; - - public static String DataValidator_UnsupportedDataType; - - public static String DataValidator_UnsupportedNamespace; - - public static String GlobalDataPropertyPage_CopyButtonLabel; - - public static String GlobalDataPropertyPage_CopyOfPrefix; - - public static String GlobalDataPropertyPage_DeleteButtonLabel; - - public static String GlobalDataPropertyPage_EnumerationBaseName; - - public static String GlobalDataPropertyPage_MaxOccursColumnLabel; - - public static String GlobalDataPropertyPage_NameColumnLabel; - - public static String GlobalDataPropertyPage_NewEnumButtonLabel; - - public static String GlobalDataPropertyPage_NewTypeButtonLabel; - - public static String GlobalDataPropertyPage_StructuredTypeBaseName; - - public static String GlobalDataPropertyPage_TypeColumnLabel; - - public static String SimpleTypePropertyPage_DuplicateTypeErrorMessage; - - public static String SimpleTypePropertyPage_DuplicateValueErrorMessage; - - public static String SimpleTypePropertyPage_EmptyValueErrorMessage; - - public static String SimpleTypePropertyPage_EnumerationNameLabel; - - public static String SimpleTypePropertyPage_InvalidIdentifierErrorMessage; - - public static String SimpleTypePropertyPage_NewValueLabel; - - public static String SimpleTypePropertyPage_NoNameErrorMessage; - - public static String SimpleTypePropertyPage_ValuesColumnLabel; - static - { - // initialize resource bundle - NLS.initializeMessages(BUNDLE_NAME, Messages.class); - } - - private Messages() - {} -} diff --git a/modeling/org.eclipse.stardust.modeling.transformation/src/org/eclipse/stardust/modeling/transformation/modeling/externalwebapp/spi/context/Messages.java b/modeling/org.eclipse.stardust.modeling.transformation/src/org/eclipse/stardust/modeling/transformation/modeling/externalwebapp/spi/context/Messages.java deleted file mode 100644 index cf939fb..0000000 --- a/modeling/org.eclipse.stardust.modeling.transformation/src/org/eclipse/stardust/modeling/transformation/modeling/externalwebapp/spi/context/Messages.java +++ b/dev/null @@ -1,38 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2011 SunGard CSA LLC and others. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html - * - * Contributors: - * SunGard CSA LLC - initial API and implementation and/or initial documentation - *******************************************************************************/ -package org.eclipse.stardust.modeling.transformation.modeling.externalwebapp.spi.context; - -import java.util.MissingResourceException; -import java.util.ResourceBundle; - -public class Messages -{ - private static final String BUNDLE_NAME = "org.eclipse.stardust.modeling.transformation.modeling.externalwebapp.spi.context.messages"; //$NON-NLS-1$ - - private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle - .getBundle(BUNDLE_NAME); - - private Messages() - {} - - public static String getString(String key) - { - // TODO Auto-generated method stub - try - { - return RESOURCE_BUNDLE.getString(key); - } - catch (MissingResourceException e) - { - return '!' + key + '!'; - } - } -} diff --git a/modeling/org.eclipse.stardust.modeling.transformation/src/org/eclipse/stardust/modeling/transformation/modeling/externalwebapp/spi/context/messages.properties b/modeling/org.eclipse.stardust.modeling.transformation/src/org/eclipse/stardust/modeling/transformation/modeling/externalwebapp/spi/context/messages.properties deleted file mode 100644 index fbba19c..0000000 --- a/modeling/org.eclipse.stardust.modeling.transformation/src/org/eclipse/stardust/modeling/transformation/modeling/externalwebapp/spi/context/messages.properties +++ b/dev/null @@ -1,12 +0,0 @@ -############################################################################### -# Copyright (c) 2011 SunGard CSA LLC and others. -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Eclipse Public License v1.0 -# which accompanies this distribution, and is available at -# http://www.eclipse.org/legal/epl-v10.html -# -# Contributors: -# SunGard CSA LLC - initial API and implementation and/or initial documentation -############################################################################### -ExtWebAppContextPropertyPage.URL=URL: -MSG_ExtWebApp_No_url=Unspecified URL for External Web Application context. |

