123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- /*
- * $Header: WorldObjectSet.java, 22/07/2005 14:11:29 luisantonioa Exp $
- *
- * $Author: luisantonioa $
- * $Date: 22/07/2005 14:11:29 $
- * $Revision: 1 $
- * $Log: WorldObjectSet.java,v $
- * Revision 1 22/07/2005 14:11:29 luisantonioa
- * Added copyright notice
- *
- *
- * This program is free software: you can redistribute it and/or modify it under
- * the terms of the GNU General Public License as published by the Free Software
- * Foundation, either version 3 of the License, or (at your option) any later
- * version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
- * details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package com.l2jserver.util;
- import java.util.Iterator;
- import java.util.Map;
- import com.l2jserver.gameserver.model.L2Object;
- import javolution.util.FastMap;
- /**
- * This class ...
- *
- * @version $Revision: 1.2 $ $Date: 2004/06/27 08:12:59 $
- */
- public class WorldObjectSet<T extends L2Object> extends L2ObjectSet<T>
- {
- private Map<Integer, T> _objectMap;
- public WorldObjectSet()
- {
- _objectMap = new FastMap<Integer, T>().shared();
- }
- /* (non-Javadoc)
- * @see com.l2jserver.util.L2ObjectSet#size()
- */
- @Override
- public int size()
- {
- return _objectMap.size();
- }
- /* (non-Javadoc)
- * @see com.l2jserver.util.L2ObjectSet#isEmpty()
- */
- @Override
- public boolean isEmpty()
- {
- return _objectMap.isEmpty();
- }
- /* (non-Javadoc)
- * @see com.l2jserver.util.L2ObjectSet#clear()
- */
- @Override
- public void clear()
- {
- _objectMap.clear();
- }
- /* (non-Javadoc)
- * @see com.l2jserver.util.L2ObjectSet#put(T)
- */
- @Override
- public void put(T obj)
- {
- _objectMap.put(obj.getObjectId(), obj);
- }
- /* (non-Javadoc)
- * @see com.l2jserver.util.L2ObjectSet#remove(T)
- */
- @Override
- public void remove(T obj)
- {
- _objectMap.remove(obj.getObjectId());
- }
- /* (non-Javadoc)
- * @see com.l2jserver.util.L2ObjectSet#contains(T)
- */
- @Override
- public boolean contains(T obj)
- {
- return _objectMap.containsKey(obj.getObjectId());
- }
- /* (non-Javadoc)
- * @see com.l2jserver.util.L2ObjectSet#iterator()
- */
- @Override
- public Iterator<T> iterator()
- {
- return _objectMap.values().iterator();
- }
- }
|