source: release-kits/shared/ant-installer/src/org/tp23/antinstaller/renderer/text/ConfirmPasswordTextInputRenderer.java@ 15210

Last change on this file since 15210 was 15210, checked in by oranfry, 16 years ago

Lots of changes to the installer. Now only look in LanguagePack resource bundle for strings.

File size: 352 bytes
Line 
1package org.tp23.antinstaller.renderer.text;
2
3import java.util.ResourceBundle;
4
5public class ConfirmPasswordTextInputRenderer extends PasswordTextInputRenderer {
6
7 private static final ResourceBundle res = ResourceBundle.getBundle("resources.LanguagePack");
8
9 protected String getErrorMessage(){
10 return res.getString("passwordsDoNotMatch");
11 }
12
13}
Note: See TracBrowser for help on using the repository browser.