blob: e9965ed7c21ac80877db528426795c041955b16b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004-2010 Abel Hegedus and Daniel Varro
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Abel Hegedus - initial API and implementation
*******************************************************************************/
package org.eclipse.viatra2.core.tracebased.tracetree;
import org.eclipse.viatra2.core.notification.ICoreNotificationObject;
/**
* @author Abel Hegedus
*
*/
public class AtomicTraceTreeNode extends CompositeTraceTreeNode {
// notification manager suppresses it
//boolean moreThanOneAtomic = false;
/**
* @param parent
* @param id
* @param event
*/
public AtomicTraceTreeNode(ITraceTreeNode parent, String id, ICoreNotificationObject event){//, boolean moreThanOneAtomic) {
super(parent, id, event);
//this.moreThanOneAtomic = moreThanOneAtomic;
}
/**
* @return the moreThanOneAtomic
*/
/*public boolean isMoreThanOneAtomic() {
return moreThanOneAtomic;
}*/
/**
* @param moreThanOneAtomic the moreThanOneAtomic to set
*/
/*public void setMoreThanOneAtomic(boolean moreThanOneAtomic) {
this.moreThanOneAtomic = moreThanOneAtomic;
}*/
}