com.almworks.jira.structure.api.i18n.I18n Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of structure-api Show documentation
Show all versions of structure-api Show documentation
Public API for the Structure Plugin for JIRA
The newest version!
package com.almworks.jira.structure.api.i18n;
import com.atlassian.annotations.Internal;
import com.atlassian.annotations.PublicApi;
import java.util.Locale;
// todo javadoc and remove @Internal
@Internal
@PublicApi
public interface I18n {
String getText(String key, Object... parameters);
Locale getLocale();
}