Example #1
0
  /** Returns the id for a constant */
  public int addLowerConstantId(StringValue name) {
    int id = getConstantId(name);

    int lowerId = getConstantId(name.toLowerCase());

    _constantLowerMap[id] = lowerId;

    return id;
  }