Skip to content
Snippets Groups Projects
Commit 493b0bc0 authored by cramakri's avatar cramakri
Browse files

LMS-1569 Convert split spreadsheet locations to a plate location.

SVN: 16491
parent a4f09e64
No related branches found
No related tags found
No related merge requests found
......@@ -92,6 +92,18 @@ public final class Location
}
}
/**
* Do the matrix coordinate conversion for coordinates that are specified this way, but in two
* columns
*
* @return <code>null</code> if given <var>coordinate</var> is not a matrix coordinate.
*/
public static final Location tryCreateLocationFromSplitMatrixCoordinate(
final String columnCoord, final String rowCoord)
{
return tryCreateLocationFromMatrixCoordinate(columnCoord + rowCoord);
}
/**
* For given location returns corresponding matrix coordinate.
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment