128 |
* Sometimes Translations are optional, like for keywords. |
* Sometimes Translations are optional, like for keywords. |
129 |
*/ |
*/ |
130 |
public Translation() { |
public Translation() { |
|
super(); |
|
131 |
} |
} |
132 |
|
|
133 |
/** |
/** |
144 |
public void fromOneLine(final String oneLineCoded) { |
public void fromOneLine(final String oneLineCoded) { |
145 |
clear(); |
clear(); |
146 |
if ((oneLineCoded == null) || (oneLineCoded.equals(""))) { |
if ((oneLineCoded == null) || (oneLineCoded.equals(""))) { |
147 |
put(DEFAULT_KEY, NO_TRANSLATION); |
put(DEFAULT_KEY, ""); |
148 |
return; |
return; |
149 |
} |
} |
150 |
|
|