1 28 package org.jvyamlb; 29 30 33 class SimpleKey { 34 private int tokenNumber; 35 private boolean required; 36 private int index; 37 private int line; 38 private int column; 39 40 public SimpleKey(final int tokenNumber, final boolean required, final int index, final int line, final int column) { 41 this.tokenNumber = tokenNumber; 42 this.required = required; 43 this.index = index; 44 this.line = line; 45 this.column = column; 46 } 47 48 public int getTokenNumber() { 49 return this.tokenNumber; 50 } 51 52 public int getColumn() { 53 return this.column; 54 } 55 } | Popular Tags |