All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gw.lang.parser.resources.ResourceKey Maven / Gradle / Ivy

There is a newer version: 1.18.2
Show newest version
/*
 * Copyright 2014 Guidewire Software, Inc.
 */

package gw.lang.parser.resources;

import gw.config.CommonServices;

public class ResourceKey
{
  private String _strKey;

  public ResourceKey(String strKey)
  {
    _strKey = strKey;
  }

  public String getKey()
  {
    return _strKey;
  }

  @Override
  public String toString() {
    return CommonServices.getGosuLocalizationService().localize(this);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy