summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorclemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4>2009-03-10 11:10:55 +0000
committerclemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4>2009-03-10 11:10:55 +0000
commit28e772965f4fb313aeb5018e6104943a1177bc06 (patch)
treef5db3578793323d4a30a2576ff564cdf7bcac054
parentb1c0b243cc7f24f4a2ede6d02bdead4032451f41 (diff)
downloadmocca-28e772965f4fb313aeb5018e6104943a1177bc06.tar.gz
mocca-28e772965f4fb313aeb5018e6104943a1177bc06.tar.bz2
mocca-28e772965f4fb313aeb5018e6104943a1177bc06.zip
pinfield and pinsize label aligned trailing
git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@317 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4
-rw-r--r--BKUCommonGUI/src/test/java/at/gv/egiz/bku/gui/BKUGUIWorker.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/BKUCommonGUI/src/test/java/at/gv/egiz/bku/gui/BKUGUIWorker.java b/BKUCommonGUI/src/test/java/at/gv/egiz/bku/gui/BKUGUIWorker.java
index 08ecaa7f..ef64ac59 100644
--- a/BKUCommonGUI/src/test/java/at/gv/egiz/bku/gui/BKUGUIWorker.java
+++ b/BKUCommonGUI/src/test/java/at/gv/egiz/bku/gui/BKUGUIWorker.java
@@ -21,6 +21,7 @@
package at.gv.egiz.bku.gui;
import at.gv.egiz.smcc.PINSpec;
+import at.gv.egiz.smcc.STARCOSCard;
import at.gv.egiz.stal.HashDataInput;
import at.gv.egiz.stal.impl.ByteArrayHashDataInput;
import java.awt.event.ActionEvent;
@@ -46,7 +47,8 @@ public class BKUGUIWorker implements Runnable {
public void run() {
// try {
- final PINSpec signPinSpec = new PINSpec(6, 10, "[0-9]", "Signatur-PIN", (byte) 0x81, null);
+ final PINSpec signPinSpec = new PINSpec(6, 10, "[0-9]", "Test-PIN", (byte) 0x81, null);
+ final PINSpec cardPinSpec = new PINSpec(4, 4, "[0-9]", "Test-PIN", (byte) 0x01, null);
final ActionListener cancelListener = new ActionListener() {