trace/traceviewer/com.nokia.trace.dictionary/src/com/nokia/trace/dictionary/model/handlers/TypeDefHandler.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  * TypeDef handler
       
    17  *
       
    18  */
       
    19 package com.nokia.trace.dictionary.model.handlers;
       
    20 
       
    21 import org.xml.sax.Attributes;
       
    22 
       
    23 import com.nokia.trace.dictionary.model.DictionaryContentHandler;
       
    24 import com.nokia.trace.dictionary.model.DictionaryDecodeModel;
       
    25 
       
    26 /**
       
    27  * TypeDef handler
       
    28  * 
       
    29  */
       
    30 final class TypeDefHandler extends BaseHandler {
       
    31 
       
    32 	/**
       
    33 	 * Tag name this handler handles
       
    34 	 */
       
    35 	private static final String TYPEDEF_TAG = "typedef"; //$NON-NLS-1$
       
    36 
       
    37 	/**
       
    38 	 * Constructor
       
    39 	 * 
       
    40 	 * @param model
       
    41 	 *            the model
       
    42 	 */
       
    43 	TypeDefHandler(DictionaryDecodeModel model) {
       
    44 		super(model, TYPEDEF_TAG);
       
    45 	}
       
    46 
       
    47 	/*
       
    48 	 * (non-Javadoc)
       
    49 	 * 
       
    50 	 * @see com.nokia.trace.dictionary.model.handlers.DictionaryHandler#
       
    51 	 * processElement(org.xml.sax.Attributes)
       
    52 	 */
       
    53 	@Override
       
    54 	public void processStartElement(Attributes atts,
       
    55 			DictionaryContentHandler handler) {
       
    56 		// Do nothing
       
    57 	}
       
    58 
       
    59 }