12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /*
- * Copyright (C) 2004-2014 L2J Server
- *
- * This file is part of L2J Server.
- *
- * L2J Server 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.
- *
- * L2J Server 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.gameserver.model;
- import java.util.List;
- import com.l2jserver.gameserver.model.interfaces.IIdentifiable;
- import com.l2jserver.gameserver.model.interfaces.INamable;
- public class Macro implements IIdentifiable, INamable
- {
- public static final int CMD_TYPE_SKILL = 1;
- public static final int CMD_TYPE_ACTION = 3;
- public static final int CMD_TYPE_SHORTCUT = 4;
-
- private int _id;
- private final int _icon;
- private final String _name;
- private final String _descr;
- private final String _acronym;
- private final List<MacroCmd> _commands;
-
- public Macro(int id, int icon, String name, String descr, String acronym, List<MacroCmd> list)
- {
- setId(id);
- _icon = icon;
- _name = name;
- _descr = descr;
- _acronym = acronym;
- _commands = list;
- }
-
- @Override
- public int getId()
- {
- return _id;
- }
-
- public void setId(int _id)
- {
- this._id = _id;
- }
-
- public int getIcon()
- {
- return _icon;
- }
-
- @Override
- public String getName()
- {
- return _name;
- }
-
- public String getDescr()
- {
- return _descr;
- }
-
- public String getAcronym()
- {
- return _acronym;
- }
-
- public List<MacroCmd> getCommands()
- {
- return _commands;
- }
- }
|