Package net.sf.l2j.gameserver.model.actor.knownlist

Examples of net.sf.l2j.gameserver.model.actor.knownlist.NullKnownList


   * @param itemId : int designating the ID of the item
   */
  public L2ItemInstance(int objectId, int itemId)
  {
    super(objectId);
    super.setKnownList(new NullKnownList(this));
    _itemId = itemId;
    _item = ItemTable.getInstance().getTemplate(itemId);
    if (_itemId == 0 || _item == null)
      throw new IllegalArgumentException();
    _count = 1;
View Full Code Here


   * @param item : L2Item containing informations of the item
   */
  public L2ItemInstance(int objectId, L2Item item)
  {
    super(objectId);
    super.setKnownList(new NullKnownList(this));
    _itemId = item.getItemId();
    _item = item;
    if (_itemId == 0 || _item == null)
      throw new IllegalArgumentException();
    _count = 1;
View Full Code Here

     * @param objectId
     */
    public L2StaticObjectInstance(int objectId)
    {
        super(objectId);
        setKnownList(new NullKnownList(this));
    }
View Full Code Here

TOP

Related Classes of net.sf.l2j.gameserver.model.actor.knownlist.NullKnownList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.