package scheme2; /** * Copyright 2000 - Dung X. Nguyen - All rights reserved. * @dependency scheme2.IListAlgo */ public abstract class AListFW { public abstract Object getFirst(); public abstract AListFW getRest(); public abstract Object execute(IListAlgo algo, Object input); }