Examples of NullKnownList


Examples of com.l2jfrozen.gameserver.model.actor.knownlist.NullKnownList

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

Examples of com.l2jfrozen.gameserver.model.actor.knownlist.NullKnownList

    super(objectId);
   
    if(item == null)
      throw new IllegalArgumentException();
   
    super.setKnownList(new NullKnownList(this));

    _itemId = item.getItemId();
    _item = item;
    _count = 1;
    _loc = ItemLocation.VOID;
View Full Code Here

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

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

   * @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

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

     * @param objectId
     */
    public L2StaticObjectInstance(int objectId)
    {
        super(objectId);
        setKnownList(new NullKnownList(this));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.