| ConfirmPasswordTextInputRenderer.java |
1 package org.tp23.antinstaller.renderer.text;
2
3 import java.util.ResourceBundle;
4
5 public 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}
14