fix javadoc header
[fanfix.git] / src / jexer / io / Screen.java
index ec5309d669c3cf06a36dc5c2a460615d9b3422ad..2ac6e2893b5ebdb4a39370edc7e0edc44b2b7e2e 100644 (file)
@@ -1,4 +1,4 @@
-/**
+/*
  * Jexer - Java Text User Interface
  *
  * License: LGPLv3 or later
@@ -387,7 +387,7 @@ public abstract class Screen {
      * @param str string to draw
      * @param attr attributes to use (bold, foreColor, backColor)
      */
-    public final void putStrXY(final int x, final int y, final String str,
+    public final void putStringXY(final int x, final int y, final String str,
         final CellAttributes attr) {
 
         int i = x;
@@ -409,7 +409,7 @@ public abstract class Screen {
      * @param y row coordinate.  0 is the top-most row.
      * @param str string to draw
      */
-    public final void putStrXY(final int x, final int y, final String str) {
+    public final void putStringXY(final int x, final int y, final String str) {
 
         int i = x;
         for (int j = 0; j < str.length(); j++) {