tracefw/tracecompiler/src/com.nokia.tracecompiler/src/com/nokia/tracecompiler/decodeplugins/dictionary/encoder/Dictionary.java
changeset 56 aa2539c91954
parent 54 a151135b0cf9
child 60 e54443a6878c
child 62 1c2bb2fc7c87
--- a/tracefw/tracecompiler/src/com.nokia.tracecompiler/src/com/nokia/tracecompiler/decodeplugins/dictionary/encoder/Dictionary.java	Wed Sep 29 17:45:35 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,101 +0,0 @@
-/*
-* Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies). 
-* All rights reserved.
-* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
-* which accompanies this distribution, and is available
-* at the URL "http://www.eclipse.org/legal/epl-v10.html".
-*
-* Initial Contributors:
-* Nokia Corporation - initial contribution.
-*
-* Contributors:
-*
-* Description:
-*
-* Dictionary tag
-*
-*/
-package com.nokia.tracecompiler.decodeplugins.dictionary.encoder;
-
-/**
- * Dictionary tag
- * 
- */
-public class Dictionary {
-
-	/**
-	 * Writes start of the XML file and starts <tracedictionary> structure
-	 */
-	public static void startDictionary() {
-		TagWriter.write(TagWriter.XML_START, TagWriter.INDENT_0);
-		TagWriter.write(TagWriter.DICTIONARY_START, TagWriter.INDENT_0);
-	}
-
-	/**
-	 * Writes </tracedictionary>
-	 */
-	public static void endDictionary() {
-		TagWriter.write(TagWriter.DICTIONARY_END, TagWriter.INDENT_0);
-		TagWriter.close();
-	}
-
-	/**
-	 * Starts <component id="", name="" prefix="" suffix=""> structure
-	 * 
-	 * @param id
-	 *            unique component id within dictionary
-	 * @param name
-	 *            name of the component
-	 * @param prefix
-	 *            optional prefix for the component
-	 * @param suffix
-	 *            optional suffix for the component
-	 */
-	public static void startComponent(int id, String name, String prefix,
-			String suffix) {
-		TraceComponent.startComponent(id, name, prefix, suffix);
-
-	}
-
-	/**
-	 * Writes </component>
-	 */
-	public static void endComponent() {
-		TraceComponent.endComponent();
-	}
-
-	/**
-	 * Starts <metadata> structure
-	 */
-	public static void startMetaData() {
-		TagWriter.write(TagWriter.METADATA_START, TagWriter.INDENT_1);
-	}
-
-	/**
-	 * Writes user defined tags <mytagXXX>value</mytagXXX>
-	 * 
-	 * @param name
-	 *            tag
-	 * @param value
-	 *            value of the tag
-	 */
-	public static void writeMetaData(String name, String value) {
-		StringBuffer sb = new StringBuffer();
-		sb.append(TagWriter.START_TAG_OPEN);
-		sb.append(name);
-		sb.append(TagWriter.TAG_CLOSE);
-		sb.append(XMLDataFilter.changeData(value));
-		sb.append(TagWriter.END_TAG_OPEN);
-		sb.append(name);
-		sb.append(TagWriter.TAG_CLOSE);
-		TagWriter.write(sb.toString(), TagWriter.INDENT_2);
-	}
-
-	/**
-	 * Writes </metadata>
-	 */
-	public static void endMetaData() {
-		TagWriter.write(TagWriter.METADATA_END, TagWriter.INDENT_1);
-	}
-}
\ No newline at end of file