MCPcopy Index your code
hub / github.com/coding-parrot/chess-engine / toString

Method toString

src/main/java/game/Cell.java:27–32  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

25 }
26
27 @Override
28 public String toString() {
29 return "(" + row +
30 ',' + col +
31 ')';
32 }
33
34 public String notation() {
35 return Character.valueOf((char) (col + 'a')).toString() + (row + 1);

Callers 1

notationMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected