clean up some TODOs in CardPanel

This commit is contained in:
slapshot5
2011-12-23 04:01:46 +00:00
parent d228bdc8c2
commit dde1550830

View File

@@ -681,11 +681,11 @@ public class CardPanel extends JPanel implements CardContainer {
/** /**
* Sets the game card. * Sets the game card.
* *
* @param gameCard * @param gameCard0
* the gameCard to set * the gameCard to set
*/ */
public final void setGameCard(final Card gameCard) { public final void setGameCard(final Card gameCard0) {
this.gameCard = gameCard; // TODO: Add 0 to parameter's name. this.gameCard = gameCard0;
} }
/** /**
@@ -700,12 +700,11 @@ public class CardPanel extends JPanel implements CardContainer {
/** /**
* Sets the drag animation panel. * Sets the drag animation panel.
* *
* @param dragAnimationPanel * @param dragAnimationPanel0
* the dragAnimationPanel to set * the dragAnimationPanel to set
*/ */
public static void setDragAnimationPanel(final CardPanel dragAnimationPanel) { public static void setDragAnimationPanel(final CardPanel dragAnimationPanel0) {
CardPanel.dragAnimationPanel = dragAnimationPanel; // TODO: Add 0 to CardPanel.dragAnimationPanel = dragAnimationPanel0;
// parameter's name.
} }
/** /**
@@ -720,12 +719,11 @@ public class CardPanel extends JPanel implements CardContainer {
/** /**
* Sets the attached to panel. * Sets the attached to panel.
* *
* @param attachedToPanel * @param attachedToPanel0
* the attachedToPanel to set * the attachedToPanel to set
*/ */
public final void setAttachedToPanel(final CardPanel attachedToPanel) { public final void setAttachedToPanel(final CardPanel attachedToPanel0) {
this.attachedToPanel = attachedToPanel; // TODO: Add 0 to parameter's this.attachedToPanel = attachedToPanel0;
// name.
} }
/** /**
@@ -740,12 +738,11 @@ public class CardPanel extends JPanel implements CardContainer {
/** /**
* Sets the attached panels. * Sets the attached panels.
* *
* @param attachedPanels * @param attachedPanels0
* the attachedPanels to set * the attachedPanels to set
*/ */
public final void setAttachedPanels(final List<CardPanel> attachedPanels) { public final void setAttachedPanels(final List<CardPanel> attachedPanels0) {
this.attachedPanels = attachedPanels; // TODO: Add 0 to parameter's this.attachedPanels = attachedPanels0;
// name.
} }
/** /**
@@ -760,11 +757,11 @@ public class CardPanel extends JPanel implements CardContainer {
/** /**
* Sets the tapped. * Sets the tapped.
* *
* @param tapped * @param tapped0
* the tapped to set * the tapped to set
*/ */
public final void setTapped(final boolean tapped) { public final void setTapped(final boolean tapped0) {
this.tapped = tapped; // TODO: Add 0 to parameter's name. this.tapped = tapped0;
} }
/** /**
@@ -779,10 +776,10 @@ public class CardPanel extends JPanel implements CardContainer {
/** /**
* Sets the tapped angle. * Sets the tapped angle.
* *
* @param tappedAngle * @param tappedAngle0
* the tappedAngle to set * the tappedAngle to set
*/ */
public final void setTappedAngle(final double tappedAngle) { public final void setTappedAngle(final double tappedAngle0) {
this.tappedAngle = tappedAngle; // TODO: Add 0 to parameter's name. this.tappedAngle = tappedAngle0;
} }
} }