source: release-kits/lirk3/bin/ant-installer/src/org/tp23/antinstaller/renderer/text/ConfirmPasswordTextInputRenderer.java@ 14982

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

initial import of LiRK3

File size: 364 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("org.tp23.antinstaller.renderer.Res");
8
9 protected String getErrorMessage(){
10 return res.getString("passwordsDoNotMatch");
11 }
12
13}
Note: See TracBrowser for help on using the repository browser.