blob: 1ed867e9b2f633b3ac20a56c49583d7051bf4ae0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 2015 Ericsson, Ecole Polytechnique de Montreal and others
*
* 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
*
* Contributors:
* Ansgar Radermacher - support for model URI
* Patrick Tasse - context strings
*******************************************************************************/
package org.eclipse.tracecompass.tmf.ctf.core;
import org.eclipse.core.runtime.QualifiedName;
/**
* Set of constants used by the CTF adaptor classes
*
* @noimplement This interface is not intended to be implemented by clients.
*/
@SuppressWarnings("nls")
public interface CtfConstants {
/*
* Context strings
*/
/** Prefix for context information stored as CtfTmfEventfield */
String CONTEXT_FIELD_PREFIX = "context.";
/** Key for ip field */
String IP_KEY = "_ip";
/*
* Custom attributes names (key within hash table)
*/
/** Model URI for traces related to EMF models */
String MODEL_URI_KEY = "model.emf.uri";
/**
* The host persistent property for the live session.
*/
QualifiedName LIVE_HOST = new QualifiedName("org.eclipse.linuxtools.tmf.ctf.core", "live.host"); //$NON-NLS-1$//$NON-NLS-2$
/**
* The port persistent property for the live session.
*/
QualifiedName LIVE_PORT = new QualifiedName("org.eclipse.linuxtools.tmf.ctf.core", "live.port"); //$NON-NLS-1$//$NON-NLS-2$
/**
* The live session name persistent property.
*/
QualifiedName LIVE_SESSION_NAME = new QualifiedName("org.eclipse.linuxtools.tmf.ctf.core", "live.session.name"); //$NON-NLS-1$//$NON-NLS-2$;
}