blob: 9d7a02869d25c8d478c75c418dd57e39e7559dde [file] [log] [blame]
//------------------------------------------------------------------------------
// Copyright (c) 2005, 2006 IBM Corporation 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:
// IBM Corporation - initial implementation
//------------------------------------------------------------------------------
package org.eclipse.epf.search;
import org.eclipse.osgi.util.NLS;
/**
* The Search resources.
*
* @author Kelvin Low
* @since 1.0
*/
public final class SearchResources extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.epf.search.Resources"; //$NON-NLS-1$
private SearchResources() {
// Do not instantiate.
}
public static String indexConfigFilesTask_name;
static {
NLS.initializeMessages(BUNDLE_NAME, SearchResources.class);
}
}