TODO cleanups in QuestEvent

This commit is contained in:
slapshot5
2011-12-24 17:35:48 +00:00
parent 6733401054
commit 6d6543e895

View File

@@ -130,70 +130,70 @@ public class QuestEvent {
/** /**
* Sets the event type. * Sets the event type.
* *
* @param eventType * @param eventType0
* the eventType to set * the eventType to set
*/ */
public void setEventType(final String eventType) { public void setEventType(final String eventType0) {
this.eventType = eventType; // TODO: Add 0 to parameter's name. this.eventType = eventType0;
} }
/** /**
* Sets the name. * Sets the name.
* *
* @param name * @param name0
* the name to set * the name to set
*/ */
public void setName(final String name) { public void setName(final String name0) {
this.name = name; // TODO: Add 0 to parameter's name. this.name = name0;
} }
/** /**
* Sets the title. * Sets the title.
* *
* @param title * @param title0
* the title to set * the title to set
*/ */
public void setTitle(final String title) { public void setTitle(final String title0) {
this.title = title; // TODO: Add 0 to parameter's name. this.title = title0;
} }
/** /**
* Sets the difficulty. * Sets the difficulty.
* *
* @param difficulty * @param difficulty0
* the difficulty to set * the difficulty to set
*/ */
public void setDifficulty(final String difficulty) { public void setDifficulty(final String difficulty0) {
this.difficulty = difficulty; // TODO: Add 0 to parameter's name. this.difficulty = difficulty0;
} }
/** /**
* Sets the description. * Sets the description.
* *
* @param description * @param description0
* the description to set * the description to set
*/ */
public void setDescription(final String description) { public void setDescription(final String description0) {
this.description = description; // TODO: Add 0 to parameter's name. this.description = description0;
} }
/** /**
* Sets the event deck. * Sets the event deck.
* *
* @param eventDeck * @param eventDeck0
* the eventDeck to set * the eventDeck to set
*/ */
public void setEventDeck(final Deck eventDeck) { public void setEventDeck(final Deck eventDeck0) {
this.eventDeck = eventDeck; // TODO: Add 0 to parameter's name. this.eventDeck = eventDeck0;
} }
/** /**
* Sets the icon. * Sets the icon.
* *
* @param icon * @param icon0
* the icon to set * the icon to set
*/ */
public void setIcon(final String icon) { public void setIcon(final String icon0) {
this.icon = icon; // TODO: Add 0 to parameter's name. this.icon = icon0;
} }
} }