001/*
002 * This file is part of the Tuning Fork Visualization Platform
003 *  (http://sourceforge.net/projects/tuningforkvp)
004 *
005 * Copyright (c) 2005 - 2008 IBM Corporation.
006 * All rights reserved. This program and the accompanying materials
007 * are made available under the terms of the Eclipse Public License v1.0
008 * which accompanies this distribution, and is available at
009 * http://www.eclipse.org/legal/epl-v10.html
010 *
011 * Contributors:
012 *     IBM Corporation - initial API and implementation
013 */
014
015package com.ibm.tuningfork.tracegen.types;
016
017public class EventTypeSpaceVersion {
018
019    public final String name;
020    public final int version;
021
022    public EventTypeSpaceVersion(String n, int v) {
023        name = n;
024        version = v;
025    }
026
027    @Override
028    public String toString() {
029        return name + "(v " + version + ")";
030    }
031}