diff --git a/src/main/java/de/marhali/easyi18n/model/TranslationData.java b/src/main/java/de/marhali/easyi18n/model/TranslationData.java index a399ca5..0b10263 100644 --- a/src/main/java/de/marhali/easyi18n/model/TranslationData.java +++ b/src/main/java/de/marhali/easyi18n/model/TranslationData.java @@ -11,16 +11,14 @@ import java.util.*; * Cached translation data. The data is stored in a tree structure. * Tree behaviour (sorted, non-sorted) can be specified via constructor. * For more please see {@link TranslationNode}. Example tree view: - * - * ################################# - * # - user: # - * # - principal: 'Principal' # - * # - username: # - * # - title: 'Username' # - * # - auth: # - * # - logout: 'Logout' # - * # - login: 'Login' # - * ################################# + *
+ * user:
+ * -- principal: 'Principal'
+ * -- username:
+ * -- -- title: 'Username'
+ * auth:
+ * -- logout: 'Logout'
+ * -- login: 'Login'
* * @author marhali */