Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 939b0d5a6fa0cac89c242f64f00d99227bf8c169 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.eclipse.wst.ws.parser;

import org.eclipse.osgi.util.NLS;

public class PluginMessages extends NLS
{
  private static final String BUNDLE_NAME = "org.eclipse.wst.ws.parser.plugin"; //$NON-NLS-1$
  
  static
  {
    NLS.initializeMessages(BUNDLE_NAME, PluginMessages.class);
  }

  public static String PUBLICUDDIREGISTRYTYPE_NAME_SAP;
  public static String PUBLICUDDIREGISTRYTYPE_NAME_SAP_TEST;
  public static String PUBLICUDDIREGISTRYTYPE_NAME_XMETHODS;
  public static String PUBLICUDDIREGISTRYTYPE_NAME_NTTCOMM;
}

Back to the top