package com.bitshift.parsing.symbols; import java.util.ArrayList; public abstract class Symbols { public Symbols() { } public static ArrayList createCoord(Integer startLine, Integer startCol, Integer endLine, Integer endCol) { ArrayList coord = new ArrayList(4); coord.add(startLine); coord.add(startCol); coord.add(endLine); coord.add(endCol); return coord; } }