blob: 167400a4f9902f846254cf784e24c0dcae2dfd32 [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2019, 2021 Ericsson
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
**********************************************************************/
package org.eclipse.tracecompass.tmf.core.model.timegraph;
import org.eclipse.tracecompass.tmf.core.model.CoreMetadataStrings;
/**
* String constants to be used for the metadata of {@link IElementResolver}.
*
* @since 5.2
* @noimplement This interface is not intended to be implemented by clients.
*
* @deprecated use {@link CoreMetadataStrings} instead
*/
@Deprecated
public interface IMetadataStrings {
/**
* The key for the label field
*/
static final String LABEL_KEY = CoreMetadataStrings.LABEL_KEY;
/**
* The key for the entry name field
*/
static final String ENTRY_NAME_KEY = CoreMetadataStrings.ENTRY_NAME_KEY;
}