00001 /* 00002 * Copyright (c) 2000, 2020, Oracle and/or its affiliates. 00003 * 00004 * Licensed under the Universal Permissive License v 1.0 as shown at 00005 * http://oss.oracle.com/licenses/upl. 00006 */ 00007 #ifndef COH_ARRAY_LIST_HPP 00008 #define COH_ARRAY_LIST_HPP 00009 00010 #include "coherence/lang.ns" 00011 00012 #include "coherence/util/CircularArrayList.hpp" 00013 00014 COH_OPEN_NAMESPACE2(coherence,util) 00015 00016 /** 00017 * An array based implementation of coherence::util::List. 00018 * 00019 * @see CircularArrayList 00020 * 00021 * @author djl 2009.01.23 00022 */ 00023 typedef CircularArrayList ArrayList; 00024 00025 COH_CLOSE_NAMESPACE2 00026 00027 #endif // COH_ARRAY_LIST_HPP