A semantic search engine for source code https://bitshift.benkurtovic.com/
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

18 righe
436 B

  1. package com.bitshift.parsing.symbols;
  2. import java.util.ArrayList;
  3. public abstract class Symbols {
  4. public Symbols() {
  5. }
  6. public static ArrayList<Integer> createCoord(Integer startLine, Integer startCol, Integer endLine, Integer endCol) {
  7. ArrayList<Integer> coord = new ArrayList<Integer>(4);
  8. coord.add(startLine); coord.add(startCol); coord.add(endLine); coord.add(endCol);
  9. return coord;
  10. }
  11. }