Place IColorCoded interface in ColorCode.class

This commit is contained in:
DarkGuardsman 2013-09-02 16:26:19 -04:00
parent c3158aeb74
commit bd3b4e58b2
2 changed files with 10 additions and 11 deletions

View file

@ -58,4 +58,13 @@ public enum ColorCode
return NONE;
}
public static interface IColorCoded
{
/** Returns the ColorCode of the object */
public ColorCode getColor();
/** Sets the ColorCode of the Object */
public void setColor(Object obj);
}
}

View file

@ -1,10 +0,0 @@
package dark.interfaces;
public interface IColorCoded
{
/** Returns the ColorCode of the object */
public ColorCode getColor();
/** Sets the ColorCode of the Object */
public void setColor(Object obj);
}