Examples of ActiveDeactiveAction


Examples of lineage2.gameserver.model.entity.events.actions.ActiveDeactiveAction

        actions.add(a);
      }
      else if (actionElement.getName().equalsIgnoreCase("active"))
      {
        String name = actionElement.attributeValue("name");
        ActiveDeactiveAction a = new ActiveDeactiveAction(true, name);
        actions.add(a);
      }
      else if (actionElement.getName().equalsIgnoreCase("deactive"))
      {
        String name = actionElement.attributeValue("name");
        ActiveDeactiveAction a = new ActiveDeactiveAction(false, name);
        actions.add(a);
      }
      else if (actionElement.getName().equalsIgnoreCase("refresh"))
      {
        String name = actionElement.attributeValue("name");
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.