diff options
| author | tkellner <tkellner@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2011-08-10 08:02:15 +0000 | 
|---|---|---|
| committer | tkellner <tkellner@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2011-08-10 08:02:15 +0000 | 
| commit | 79764e9e4debea51884177dd0a4936aa82c2457a (patch) | |
| tree | 2d733cfa551d2e24dca544ed4604ad357f30feb6 /smcc | |
| parent | a9f1b0bac9c289b66028a5e9c5a6d8353edb70b7 (diff) | |
| download | mocca-79764e9e4debea51884177dd0a4936aa82c2457a.tar.gz mocca-79764e9e4debea51884177dd0a4936aa82c2457a.tar.bz2 mocca-79764e9e4debea51884177dd0a4936aa82c2457a.zip | |
Rename (rexep -> regexp)
git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@950 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4
Diffstat (limited to 'smcc')
| -rw-r--r-- | smcc/src/main/java/at/gv/egiz/smcc/PinInfo.java | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/smcc/src/main/java/at/gv/egiz/smcc/PinInfo.java b/smcc/src/main/java/at/gv/egiz/smcc/PinInfo.java index 107cd18e..51a7a5ef 100644 --- a/smcc/src/main/java/at/gv/egiz/smcc/PinInfo.java +++ b/smcc/src/main/java/at/gv/egiz/smcc/PinInfo.java @@ -59,7 +59,7 @@ public class PinInfo {    /**     * The regular expression pattern of a single PIN digit or character.     */ -  protected final String rexepPattern; +  protected final String regexpPattern;    /**     * The name of the corresponding resource bundle. @@ -101,18 +101,18 @@ public class PinInfo {     *      * @param minLenght the minimum length of the PIN     * @param maxLength the maximum length of the PIN, or -1 if there is no maximum length -   * @param rexepPattern the regular expression pattern of a single PIN digit or character +   * @param regexpPattern the regular expression pattern of a single PIN digit or character     * @param resourceBundleName the name of a ResourceBundle for this PIN     * @param resourceKey the key to look up the (localized) name of this PIN     * @param kid the key id of the PIN     * @param contextAID the AID the KID is valid in     */ -  public PinInfo(int minLenght, int maxLength, String rexepPattern, +  public PinInfo(int minLenght, int maxLength, String regexpPattern,        String resourceBundleName, String resourceKey, byte kid, byte[] contextAID, int maxRetries) {      this.minLength = minLenght;      this.maxLength = maxLength; -    this.rexepPattern = rexepPattern; +    this.regexpPattern = regexpPattern;      this.resourceBundleName = resourceBundleName;      this.nameKey = resourceKey + ".name";      this.kid = kid; @@ -213,8 +213,8 @@ public class PinInfo {    /**     * @return the regular expression pattern of one single digit or character     */ -  public String getRexepPattern() { -    return rexepPattern; +  public String getRegexpPattern() { +    return regexpPattern;    }    /** | 
