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

com.cedarsoft.commons.javafx.HasI18nKey Maven / Gradle / Ivy

There is a newer version: 8.9.2
Show newest version
package com.cedarsoft.commons.javafx;

import javax.annotation.Nonnull;

/**
 * Marker interface for classes the provide an i18n key.
 * That key can be used to be translated with a RES instance
 */
@FunctionalInterface
public interface HasI18nKey {
  /**
   * Returns the i18n key for this object
   */
  @Nonnull
  String getI18nKey();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy