123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- /*
- * Copyright (C) 2004-2015 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
- {
- private int _id;
- private final int _icon;
- private final String _name;
- private final String _descr;
- private final String _acronym;
- private final List<MacroCmd> _commands;
-
- /**
- * Constructor for macros.
- * @param id the macro ID
- * @param icon the icon ID
- * @param name the macro name
- * @param descr the macro description
- * @param acronym the macro acronym
- * @param list the macro command list
- */
- public Macro(int id, int icon, String name, String descr, String acronym, List<MacroCmd> list)
- {
- _id = id;
- _icon = icon;
- _name = name;
- _descr = descr;
- _acronym = acronym;
- _commands = list;
- }
-
- /**
- * Gets the marco ID.
- * @returns the marco ID
- */
- @Override
- public int getId()
- {
- return _id;
- }
-
- /**
- * Sets the marco ID.
- * @param id the marco ID
- */
- public void setId(int id)
- {
- _id = id;
- }
-
- /**
- * Gets the macro icon ID.
- * @return the icon
- */
- public int getIcon()
- {
- return _icon;
- }
-
- /**
- * Gets the macro name.
- * @return the name
- */
- @Override
- public String getName()
- {
- return _name;
- }
-
- /**
- * Gets the macro description.
- * @return the description
- */
- public String getDescr()
- {
- return _descr;
- }
-
- /**
- * Gets the macro acronym.
- * @return the acronym
- */
- public String getAcronym()
- {
- return _acronym;
- }
-
- /**
- * Gets the macro command list.
- * @return the macro command list
- */
- public List<MacroCmd> getCommands()
- {
- return _commands;
- }
- }
|