blob: 93b164e59db1854cb934b32d2dbf7a2146963141 [file] [log] [blame]
/*
* Copyright (c) 2009 Mia-Software.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Gabriel Barbier (Mia-Software) - initial API and implementation
*/
package org.eclipse.modisco.infra.prefuse.examples.graphview;
import org.eclipse.osgi.util.NLS;
/**
* @author GBarbier
* @deprecated Will be removed,
* cf. https://bugs.eclipse.org/bugs/show_bug.cgi?id=470701
*/
@Deprecated
public class Messages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.modisco.infra.prefuse.examples.graphview.messages"; //$NON-NLS-1$
public static String GraphViewUtils_BalancedTree;
public static String GraphViewUtils_Clique;
public static String GraphViewUtils_Data;
public static String GraphViewUtils_DiamondTree;
public static String GraphViewUtils_Grid;
public static String GraphViewUtils_Honeycomb;
public static String GraphViewUtils_JFrameTitle;
public static String OpenGraphAction_Cancel;
public static String OpenGraphAction_ChooseFieldToUseForNodeLabels;
public static String OpenGraphAction_ChooseLabelField;
public static String OpenGraphAction_OK;
public static String OpenGraphAction_OpenFile;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
}
}