package xsbti; import java.util.ArrayList; import java.util.Collection; import java.util.List; /** A global in-memory storage to pass information. */ public class Attic { private static List _items = new ArrayList(); /** * This is used to collect scalacOptions of metabuild. This works around the fact that * CompilationInfo.XmacroSettings is experimental. */ public static void appendItems(Collection values) { _items.addAll(values); } /** * This is used to return scalacOptions of metabuild. This works around the fact that * CompilationInfo.XmacroSettings is experimental. */ public static Collection getItems() { return _items; } }