Improved Command pattern code comments.

This commit is contained in:
Ilkka Seppala
2014-12-27 11:11:54 +02:00
parent 74b43303e3
commit 22ca6fef60
5 changed files with 19 additions and 4 deletions

View File

@ -1,5 +1,10 @@
package com.iluwatar;
/**
*
* Enumeration for target size.
*
*/
public enum Size {
SMALL, NORMAL, LARGE;
@ -24,5 +29,4 @@ public enum Size {
}
return s;
}
}