Update getter in GenericToken

This commit is contained in:
gonzalo
2017-10-21 19:51:30 -03:00
parent 00ed0a1eab
commit 95835b8134
4 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@ public interface GenericToken {
* Obtain the region where the token occupies in the source file. * Obtain the region where the token occupies in the source file.
* @return the region * @return the region
*/ */
RegionByLine getLineRegion(); RegionByLine getRegionByLine();
/** /**
* Gets the string representation of the instance of this token. * Gets the string representation of the instance of this token.

View File

@ -108,7 +108,7 @@ public class Token implements GenericToken, java.io.Serializable]]></replacevalu
} }
@Override @Override
public RegionByLine getLineRegion() { public RegionByLine getRegionByLine() {
return new RegionByLineImpl(beginLine, endLine, beginColumn, endColumn); return new RegionByLineImpl(beginLine, endLine, beginColumn, endColumn);
} }

View File

@ -86,7 +86,7 @@ public class Token implements GenericToken, java.io.Serializable]]></replacevalu
} }
@Override @Override
public RegionByLine getLineRegion() { public RegionByLine getRegionByLine() {
return new RegionByLineImpl(beginLine, endLine, beginColumn, endColumn); return new RegionByLineImpl(beginLine, endLine, beginColumn, endColumn);
} }

View File

@ -86,7 +86,7 @@ public class Token implements GenericToken, java.io.Serializable]]></replacevalu
} }
@Override @Override
public RegionByLine getLineRegion() { public RegionByLine getRegionByLine() {
return new RegionByLineImpl(beginLine, endLine, beginColumn, endColumn); return new RegionByLineImpl(beginLine, endLine, beginColumn, endColumn);
} }