trace/tracebuilder/com.nokia.tracebuilder.view/src/com/nokia/tracebuilder/view/ConstantTableEntryWrapper.java
changeset 10 ed1c9f64298a
equal deleted inserted replaced
9:14dc2103a631 10:ed1c9f64298a
       
     1 /*
       
     2 * Copyright (c) 2007 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 * Wrapper for a constant table
       
    17 *
       
    18 */
       
    19 package com.nokia.tracebuilder.view;
       
    20 
       
    21 import com.nokia.tracebuilder.model.TraceConstantTableEntry;
       
    22 
       
    23 /**
       
    24  * Wrapper for a constant table entry
       
    25  * 
       
    26  */
       
    27 final class ConstantTableEntryWrapper extends TraceObjectWrapper {
       
    28 
       
    29 	/**
       
    30 	 * Default constructor
       
    31 	 * 
       
    32 	 * @param entry
       
    33 	 *            the table entry
       
    34 	 * @param parent
       
    35 	 *            parent wrapper
       
    36 	 * @param updater
       
    37 	 *            the update notifier
       
    38 	 */
       
    39 	ConstantTableEntryWrapper(TraceConstantTableEntry entry,
       
    40 			WrapperBase parent, WrapperUpdater updater) {
       
    41 		super(entry, parent, updater);
       
    42 	}
       
    43 
       
    44 }