blob: 4342be3540f5e395ee25d7790e644a97a135c566 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 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:
* Chris Aniszczyk <zx@code9.com> - initial API and implementation
*******************************************************************************/
package org.eclipse.pde.internal.ua.ui.editor.toc.actions;
import org.eclipse.osgi.util.NLS;
public class TocActionMessages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.pde.internal.ua.ui.editor.toc.actions.messages"; //$NON-NLS-1$
public static String TocAddAnchorAction_anchor;
public static String TocAddLinkAction_link;
public static String TocAddTopicAction_topic;
public static String TocRemoveObjectAction_remove;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, TocActionMessages.class);
}
private TocActionMessages() {
}
}