123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- /*
- * $Header: WorldObjectMap.java, 22/07/2005 14:15:11 luisantonioa Exp $
- *
- * $Author: luisantonioa $
- * $Date: 22/07/2005 14:15:11 $
- * $Revision: 1 $
- * $Log: WorldObjectMap.java,v $
- * Revision 1 22/07/2005 14:15:11 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 WorldObjectMap<T extends L2Object> extends L2ObjectMap<T>
- {
- Map<Integer, T> _objectMap = new FastMap<Integer, T>().shared();
- /* (non-Javadoc)
- * @see com.l2jserver.util.L2ObjectMap#size()
- */
- @Override
- public int size()
- {
- return _objectMap.size();
- }
- /* (non-Javadoc)
- * @see com.l2jserver.util.L2ObjectMap#isEmpty()
- */
- @Override
- public boolean isEmpty()
- {
- return _objectMap.isEmpty();
- }
- /* (non-Javadoc)
- * @see com.l2jserver.util.L2ObjectMap#clear()
- */
- @Override
- public void clear()
- {
- _objectMap.clear();
- }
- /* (non-Javadoc)
- * @see com.l2jserver.util.L2ObjectMap#put(T)
- */
- @Override
- public void put(T obj)
- {
- if (obj != null)
- _objectMap.put(obj.getObjectId(), obj);
- }
- /* (non-Javadoc)
- * @see com.l2jserver.util.L2ObjectMap#remove(T)
- */
- @Override
- public void remove(T obj)
- {
- if (obj != null)
- _objectMap.remove(obj.getObjectId());
- }
- /* (non-Javadoc)
- * @see com.l2jserver.util.L2ObjectMap#get(int)
- */
- @Override
- public T get(int id)
- {
- return _objectMap.get(id);
- }
- /* (non-Javadoc)
- * @see com.l2jserver.util.L2ObjectMap#contains(T)
- */
- @Override
- public boolean contains(T obj)
- {
- if (obj == null)
- return false;
- return _objectMap.get(obj.getObjectId()) != null;
- }
- /* (non-Javadoc)
- * @see com.l2jserver.util.L2ObjectMap#iterator()
- */
- @Override
- public Iterator<T> iterator()
- {
- return _objectMap.values().iterator();
- }
- }
|