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

spoon.examples.stack.src.Stack Maven / Gradle / Ivy

The newest version!
package spoon.examples.stack.src;

import java.util.List;
import java.util.Vector;

import spoon.examples.stack.annotation.Bound;

@Bound(max = 5)
public class Stack {

	List elements = new Vector();

	public void push(T element) {
		elements.add(0, element);
	}

	public T pop() {
		return elements.remove(0);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy