trace/traceviewer/com.nokia.traceviewer/src/com/nokia/traceviewer/engine/TraceViewerPropertyViewInterface.java
changeset 11 5b9d4d8641ce
equal deleted inserted replaced
10:ed1c9f64298a 11:5b9d4d8641ce
       
     1 /*
       
     2  * Copyright (c) 2007-2010 Nokia Corporation and/or its subsidiary(-ies). 
       
     3  * All rights reserved.
       
     4  * This component and the accompanying materials are made available
       
     5  * under the terms of "Eclipse Public License v1.0"
       
     6  * which accompanies this distribution, and is available
       
     7  * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8  *
       
     9  * Initial Contributors:
       
    10  * Nokia Corporation - initial contribution.
       
    11  *
       
    12  * Contributors:
       
    13  *
       
    14  * Description:
       
    15  *
       
    16  * Interface implemented by the property view of Trace Viewer
       
    17  *
       
    18  */
       
    19 package com.nokia.traceviewer.engine;
       
    20 
       
    21 /**
       
    22  * Interface implemented by the property view of TraceViewer
       
    23  */
       
    24 public interface TraceViewerPropertyViewInterface extends
       
    25 		TraceViewerViewInterface {
       
    26 
       
    27 	/**
       
    28 	 * Updates property tables
       
    29 	 */
       
    30 	public void updatePropertyTables();
       
    31 
       
    32 	/**
       
    33 	 * Updated trace comments
       
    34 	 */
       
    35 	public void updateTraceComments();
       
    36 
       
    37 	/**
       
    38 	 * Creates new propertytable items
       
    39 	 */
       
    40 	public void createNewPropertyTableItems();
       
    41 
       
    42 	/**
       
    43 	 * Sets linecount table changed
       
    44 	 */
       
    45 	public void setLineCountTableChanged();
       
    46 
       
    47 	/**
       
    48 	 * Sets variable tracing table changed
       
    49 	 */
       
    50 	public void setVariableTracingTableChanged();
       
    51 
       
    52 	/**
       
    53 	 * Gets selected variableTable indices
       
    54 	 * 
       
    55 	 * @return indices of selected variable items
       
    56 	 */
       
    57 	public int[] getSelectedVariableIndices();
       
    58 }