All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmlens.trace.agent.bootstrap.parallize.logicState.DecisionStack Maven / Gradle / Ivy

There is a newer version: 1.1.5
Show newest version
package com.vmlens.trace.agent.bootstrap.parallize.logicState;

import gnu.trove.list.linked.TLinkedList;

public class DecisionStack {

	private TLinkedList list = new TLinkedList();
	
	
	public boolean isEmpty() {
		
		return list.isEmpty();
	}

	
	public void push(DecisionQueue decisionNode)
	{
		list.addLast(decisionNode);
	}
	
	
	public DecisionQueue pop()
	{
		return list.removeLast();
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy