blob: 70a5e11ab423029b786cf500989815992f555a88 [file] [log] [blame]
/*
* Copyright (c) 2009, 2019 Mia-Software and others.
* 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;
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.messages"; //$NON-NLS-1$
public static String PrefuseGraphContainer_BalancedTree;
public static String PrefuseGraphContainer_Clique;
public static String PrefuseGraphContainer_Data;
public static String PrefuseGraphContainer_DiamondTree;
public static String PrefuseGraphContainer_Grid;
public static String PrefuseGraphContainer_Honeycomb;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
}
}