1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-04-26 13:15:45 +02:00

Added toString

This commit is contained in:
rmaddy 2004-01-27 06:53:56 +00:00
parent 02e97fa96b
commit 5d005f9ee0

View File

@ -46,6 +46,18 @@ public class VisualChange
return type;
}
public String toString()
{
StringBuffer res = new StringBuffer();
res.append("VisualChange[");
res.append("lines=").append(lines);
res.append(", columns=").append(columns);
res.append(", type=").append(type);
res.append("]");
return res.toString();
}
int lines;
int columns;
int type;