source: other-projects/trunk/realistic-books/packages/AntInstaller/src/org/tp23/antinstaller/renderer/text/ConfirmPasswordTextInputRenderer.java@ 19253

Last change on this file since 19253 was 19253, checked in by davidb, 15 years ago

Establishing a source code repository for Veronica's Realistic Book's software

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.