01: /*******************************************************************************
02: * Copyright (c) 2005 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.pde.internal.build.tasks;
11:
12: import org.eclipse.osgi.util.NLS;
13:
14: public class TaskMessages extends NLS {
15: private static final String BUNDLE_NAME = "org.eclipse.pde.internal.build.tasks.messages";//$NON-NLS-1$
16:
17: public static String error_creatingFeature;
18: public static String error_readingDirectory;
19: public static String error_missingElement;
20: public static String error_missingDirectoryEntry;
21: public static String error_runningRetrieve;
22:
23: static {
24: // load message values from bundle file
25: NLS.initializeMessages(BUNDLE_NAME, TaskMessages.class);
26: }
27: }
|