Doesnt allow ALL possible variations of a string, but its good enough for now

This commit is contained in:
md_5
2013-06-08 15:34:30 +10:00
parent 7733fbfb28
commit 523e991018
2 changed files with 49 additions and 32 deletions

View File

@@ -38,8 +38,9 @@ public interface TabAPI extends TabListHandler
* @param row the row to set
* @param column the column to set
* @param text the text to set
* @return the padded text
*/
void setSlot(int row, int column, String text);
String setSlot(int row, int column, String text);
/**
* Set the text in the specified slot.
@@ -48,8 +49,9 @@ public interface TabAPI extends TabListHandler
* @param column the column to set
* @param text the text to set
* @param update whether or not to invoke {@link #update()} upon completion
* @return the padded text
*/
void setSlot(int row, int column, String text, boolean update);
String setSlot(int row, int column, String text, boolean update);
/**
* Flush all queued changes to the user.