Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 418 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 418 Bytes

Set of utilities to use with Vaadin :

I18nConstants annotation

An annotation to use on an interface to allow a GWT-like definition of properties :

@I18nConstants
public interface Demo{

  public String testWithoutKey(); // implementation will return testWithoutKey
  
  @Key("demo.test.with.key")
  public String testWithKey(); // implementation will return demo.test.with.key
  
}