Skip to content
Snippets Groups Projects
TableauStd.java 399 B
Newer Older
package p4a;

public class TableauStd implements Structure {
	
	private Object[] tableau;

	@Override
	public void ajout(Object element, int position) {
		// TODO Auto-generated method stub
		
	}

	@Override
	public void suppression(int position) {
		// TODO Auto-generated method stub
		
	}

	@Override
	public Object acces(int position) {
		// TODO Auto-generated method stub
		return null;
	}

}