package rac; /** * Visitor on a RAC. * Since a RAC is a mutable data structure, we require an exact match for * the data type (IRAContainer, not IRAContainer). * @author Mathias Ricken - Copyright 2008 - All rights reserved. */ public interface IRACVisitor { public R emptyCase(IRAContainer host, P... inp); public R nonEmptyCase(IRAContainer host, P... inp); }