X-Git-Url: http://www2.svjatoslav.eu/gitweb/?p=sixth-3d.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Fsixth%2Fe3d%2Fgui%2FtextEditorComponent%2FPage.java;fp=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Fsixth%2Fe3d%2Fgui%2FtextEditorComponent%2FPage.java;h=47c898fe6c9b42610ff14d3cdf27e64a0bd3ac42;hp=0f606186bb5882d1a9a821ec01ed5a85fb8c17e4;hb=a3ff3683bd0a025061667b26b6fcf56fe20f0afc;hpb=3f589bbc56ebfb1bd35b538b8a77d4019396b5aa diff --git a/src/main/java/eu/svjatoslav/sixth/e3d/gui/textEditorComponent/Page.java b/src/main/java/eu/svjatoslav/sixth/e3d/gui/textEditorComponent/Page.java index 0f60618..47c898f 100644 --- a/src/main/java/eu/svjatoslav/sixth/e3d/gui/textEditorComponent/Page.java +++ b/src/main/java/eu/svjatoslav/sixth/e3d/gui/textEditorComponent/Page.java @@ -1,5 +1,5 @@ /* - * Sixth 3D engine. Author: Svjatoslav Agejenko. + * Sixth 3D engine. Author: Svjatoslav Agejenko. * This project is released under Creative Commons Zero (CC0) license. */ package eu.svjatoslav.sixth.e3d.gui.textEditorComponent; @@ -37,8 +37,7 @@ public class Page { /** * Returns the specified line. * - * @param row - * The line number. + * @param row The line number. * @return The line. */ public TextLine getLine(final int row) { @@ -49,8 +48,7 @@ public class Page { /** * Returns the length of the specified line. * - * @param row - * The line number. + * @param row The line number. * @return The length of the line. */ public int getLineLength(final int row) { @@ -115,10 +113,8 @@ public class Page { /** * Removes the specified character from the page. * - * @param row - * The line number. - * @param col - * The character number. + * @param row The line number. + * @param col The character number. */ public void removeCharacter(final int row, final int col) { if (rows.size() <= row) @@ -129,8 +125,7 @@ public class Page { /** * Removes the specified line from the page. * - * @param row - * The line number. + * @param row The line number. */ public void removeLine(final int row) { if (rows.size() <= row)