Skip to main content
summaryrefslogblamecommitdiffstats
blob: 09c8bcf0c003d7c12cd8cc152953e697f5ccc501 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                                                                                   
                                                          






                                                                                 

                                                                                                     

































































                                                                                      
/*******************************************************************************
 * Copyright (c) 2007 WSO2 Inc. 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:
 * WSO2 Inc. - initial API and implementation
 * yyyymmdd bug      Email and other contact information
 * -------- -------- -----------------------------------------------------------
 * 20070110   168762 sandakith@wso2.com - Lahiru Sandakith, Initial code to introduse the Axis2 runtime to the framework for 168762
 * 20070426   183046 sandakith@wso2.com - Lahiru Sandakith
 *******************************************************************************/
package org.eclipse.jst.ws.axis2.consumption.core.messages;

import org.eclipse.osgi.util.NLS;

public final class Axis2ConsumptionUIMessages extends NLS {

	private static final String BUNDLE_NAME = 
		"org.eclipse.jst.ws.axis2.consumption.core.messages.Axis2ConsumptionUI";//$NON-NLS-1$

	private Axis2ConsumptionUIMessages() {
		// Do not instantiate
	}

	public static String LABEL_SERVICE_NAME_CAPTION;
	public static String LABEL_GENERATE_TESTCASE_CAPTION;
	public static String LABEL_DATABINDING_CAPTION;
	public static String LABEL_PORTNAME;
	public static String LABEL_GENERATE_ALL;
	public static String LABEL_PACKEGE_NAME;
	public static String LABEL_NAMESPACE;
	public static String LABEL_PACKAGE;
	public static String LABEL_NAMESPACE_TO_PACKAGE;
	public static String LABEL_CLIENT_SIDE;
	public static String LABEL_SYNC_AND_ASYNC;
	public static String LABEL_SYNC;
	public static String LABEL_ASYNC;
	public static String LABEL_DATA_MODEL;
	
	public static String MSG_ERROR_DEFAULT;

	public static String PAGE_TITLE_WS_AXIS2_PROXY;
	public static String PAGE_DESC_WS_AXIS2_PROXY;
	


	public static String TOOLTIP_PPAE_PAGE;
	public static String BUTTON_ALL_WANTED;
	
	public static String DIR_DYNAMIC_PROJECT_WEBSERVICES;
	public static String DIR_BUILD;
	public static String DIR_SRC;
	public static String DIR_CLASSES;
	public static String DIR_RESOURCES;
	public static String DIR_AAR;
	public static String DIR_META_INF;
	public static String DIR_WEB_INF;
	public static String DIR_SERVICES;
	public static String DIR_WEBSERVICES;
	public static String DIR_WEBCONTENT;
	public static String DIR_WORKSPACE;
	public static String DIR_AXIS2;
	public static String DIR_PLUGINS;
	public static String DIR_DOT_METADATA;
	public static String DIR_DOT_PLUGINS;
	
	public static String ERROR_INVALID_FILE_READ_WRITEL;
	public static String ERROR_INVALID_WSDL_FILE_READ_WRITEL;
	public static String ERROR_CODEGEN_EXCEPTION;
	
	public static String AXIS2_RUNTIME;
	public static String AXIS2_PROJECT;
	public static String PATH_TO_AXIS2_LIBS;
	public static String USER_WORK_DIRECTORY;
	public static String SPLIT_WORKSPACE;
	public static String WEB_INF_LIB;
	public static String CODEGEN_RESULTS;
	
	public static String DATA_BINDING_ADB;
	public static String DATA_BINDING_NONE;
	
	static {
		NLS.initializeMessages(BUNDLE_NAME, Axis2ConsumptionUIMessages.class);
	}
}

Back to the top