tmf.xml: Move all .core and .ui packages to internal
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.analysis.xml.core / src / org / eclipse / tracecompass / internal / tmf / analysis / xml / core / model / ITmfXmlStateAttribute.java
1 /*******************************************************************************
2 * Copyright (c) 2014 École Polytechnique de Montréal
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Geneviève Bastien - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.tracecompass.internal.tmf.analysis.xml.core.model;
14
15 import org.eclipse.jdt.annotation.Nullable;
16 import org.eclipse.tracecompass.internal.tmf.analysis.xml.core.module.IXmlStateSystemContainer;
17 import org.eclipse.tracecompass.tmf.core.event.ITmfEvent;
18
19 /**
20 * Interface that describe a state attribute defined in an XML element
21 *
22 * @author Geneviève Bastien
23 */
24 public interface ITmfXmlStateAttribute {
25
26 /**
27 * This method gets the quark for this state attribute in the State System.
28 *
29 * Unless this attribute is a location, in which case the quark must exist,
30 * the quark will be added to the state system if the state system is in
31 * builder mode.
32 *
33 * @param startQuark
34 * root quark, use {@link IXmlStateSystemContainer#ROOT_QUARK} to
35 * search the full attribute tree
36 * @param scenarioInfo
37 * The active scenario details. Or <code>null</code> if there is
38 * no scenario.
39 * @return the quark described by attribute or
40 * {@link IXmlStateSystemContainer#ERROR_QUARK} if quark cannot be
41 * found
42 */
43 int getAttributeQuark(int startQuark, @Nullable TmfXmlScenarioInfo scenarioInfo);
44
45 /**
46 * This method gets the quark for this state attribute in the State System.
47 *
48 * Unless this attribute is a location, in which case the quark must exist,
49 * the quark will be added to the state system if the state system is in
50 * builder mode. This state attribute path uses runtime data queried using
51 * the current event.
52 *
53 * @param event
54 * The current event being handled
55 * @param startQuark
56 * root quark, use {@link IXmlStateSystemContainer#ROOT_QUARK} to
57 * search the full attribute tree
58 * @param scenarioInfo
59 * The active scenario details. Or <code>null</code> if there is
60 * no scenario.
61 * @return the quark described by attribute or
62 * {@link IXmlStateSystemContainer#ERROR_QUARK} if quark cannot be
63 * found
64 */
65 int getAttributeQuark(@Nullable ITmfEvent event, int startQuark, @Nullable TmfXmlScenarioInfo scenarioInfo);
66 }
This page took 0.040582 seconds and 5 git commands to generate.