diff options
| author | tkellner <tkellner@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2011-09-02 16:01:17 +0000 | 
|---|---|---|
| committer | tkellner <tkellner@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2011-09-02 16:01:17 +0000 | 
| commit | 89888f9f230c98bde926e849d5e42ed92da10c0d (patch) | |
| tree | ac115c56701b57e8b544e0d9628223bb605285eb /BKUGuiExt/src/test/java/at/gv | |
| parent | 7b127caba3ddc39a5a70628c831953bb870f4b52 (diff) | |
| download | mocca-89888f9f230c98bde926e849d5e42ed92da10c0d.tar.gz mocca-89888f9f230c98bde926e849d5e42ed92da10c0d.tar.bz2 mocca-89888f9f230c98bde926e849d5e42ed92da10c0d.zip | |
Housekeeping
 * Generic types parameterized
 * SupressWarnings annotations added where parameterization impossible
 * Unused members commented out
 * SerialVersionUID added/removed where necessary
 * Superfluous imports removed
 * Other small changed to get rid of some compiler/validator warnings
git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@976 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4
Diffstat (limited to 'BKUGuiExt/src/test/java/at/gv')
| -rw-r--r-- | BKUGuiExt/src/test/java/at/gv/egiz/bku/gui/BKUGUIWorker.java | 155 | 
1 files changed, 74 insertions, 81 deletions
| diff --git a/BKUGuiExt/src/test/java/at/gv/egiz/bku/gui/BKUGUIWorker.java b/BKUGuiExt/src/test/java/at/gv/egiz/bku/gui/BKUGUIWorker.java index cb4ed754..2d885faa 100644 --- a/BKUGuiExt/src/test/java/at/gv/egiz/bku/gui/BKUGUIWorker.java +++ b/BKUGuiExt/src/test/java/at/gv/egiz/bku/gui/BKUGUIWorker.java @@ -24,13 +24,6 @@  package at.gv.egiz.bku.gui; -import at.gv.egiz.smcc.PinInfo; -import at.gv.egiz.stal.HashDataInput; -import at.gv.egiz.stal.impl.ByteArrayHashDataInput; -import java.awt.event.ActionEvent; -import java.awt.event.ActionListener; -import java.util.ArrayList; -import java.util.List;  /**   * @@ -48,81 +41,81 @@ public class BKUGUIWorker implements Runnable {    public void run() {          try { -    final PinInfo signPinSpec = new SimplePinInfo(6, 10, "[0-9]", "Signatur-PIN", (byte)0x00, null, PinInfo.UNKNOWN_RETRIES); - - -    final ActionListener cancelListener = new ActionListener() { - -      public void actionPerformed(ActionEvent e) { -        System.out.println("CANCEL EVENT OCCURED: " + e); -      } -    }; -    ActionListener okListener = new ActionListener() { - -      @Override -      public void actionPerformed(ActionEvent e) { -        System.out.println("OK EVENT OCCURED: " + e); -      } -    }; -    final ActionListener signListener = new ActionListener() { - -      public void actionPerformed(ActionEvent e) { -        System.out.println("SIGN EVENT OCCURED: " + e); -      } -    }; -    ActionListener hashdataListener = new ActionListener() { - -      public void actionPerformed(ActionEvent e) { -        System.out.println("HASHDATA EVENT OCCURED: " + e); -        ActionListener returnListener = new ActionListener() { - -          @Override -          public void actionPerformed(ActionEvent e) { -            gui.showSignaturePINDialog(signPinSpec, -1, signListener, "sign", cancelListener, "cancel", null, "hashdata"); -          } -        }; -        HashDataInput signedRef1 = new ByteArrayHashDataInput( -                "Ich bin ein einfacher Text mit Umlauten: öäüßéç@€\n123\n456\n\tHello, world!\n\nlkjsd\nnksdjf".getBytes(),  -                "ref-id-0000000000000000000000001",  -                "text/plain",  -                "UTF-8", -                "filename.txt"); -         -        HashDataInput signedRef2 = new ByteArrayHashDataInput( -                "<xml>HashDataInput_002</xml>".getBytes(),  -                "ref-id-000000002",  -                "application/xhtml+xml",  -                "UTF-8", -                "filename.xhtml"); -         -        HashDataInput signedRef3 = new ByteArrayHashDataInput( -                "<xml>HashDataInput_003</xml>".getBytes(),  -                "ref-id-000000003",  -                "application/xhtml+xml",  -                "UTF-8", -                "filename.xhtml"); - -        HashDataInput signedRef4 = new ByteArrayHashDataInput( -                "<xml>HashDataInput_004</xml>".getBytes(),  -                "ref-id-000000004",  -                "text/xml",  -                "UTF-8", -                "filename.xml"); - -        // -        List<HashDataInput> signedRefs = new ArrayList(); -        signedRefs.add(signedRef1); -                    signedRefs.add(signedRef2); -                    signedRefs.add(signedRef3); -                    signedRefs.add(signedRef4); -//                    signedRefs.add(signedRef4); -//                    signedRefs.add(signedRef4); -//                    signedRefs.add(signedRef4); +//    final PinInfo signPinSpec = new SimplePinInfo(6, 10, "[0-9]", "Signatur-PIN", (byte)0x00, null, PinInfo.UNKNOWN_RETRIES); + + +//    final ActionListener cancelListener = new ActionListener() { +// +//      public void actionPerformed(ActionEvent e) { +//        System.out.println("CANCEL EVENT OCCURED: " + e); +//      } +//    }; +//    ActionListener okListener = new ActionListener() { +// +//      @Override +//      public void actionPerformed(ActionEvent e) { +//        System.out.println("OK EVENT OCCURED: " + e); +//      } +//    }; +//    final ActionListener signListener = new ActionListener() { +// +//      public void actionPerformed(ActionEvent e) { +//        System.out.println("SIGN EVENT OCCURED: " + e); +//      } +//    }; +//    ActionListener hashdataListener = new ActionListener() { +// +//      public void actionPerformed(ActionEvent e) { +//        System.out.println("HASHDATA EVENT OCCURED: " + e); +//        ActionListener returnListener = new ActionListener() { +// +//          @Override +//          public void actionPerformed(ActionEvent e) { +//            gui.showSignaturePINDialog(signPinSpec, -1, signListener, "sign", cancelListener, "cancel", null, "hashdata"); +//          } +//        }; +//        HashDataInput signedRef1 = new ByteArrayHashDataInput( +//                "Ich bin ein einfacher Text mit Umlauten: öäüßéç@€\n123\n456\n\tHello, world!\n\nlkjsd\nnksdjf".getBytes(),  +//                "ref-id-0000000000000000000000001",  +//                "text/plain",  +//                "UTF-8", +//                "filename.txt"); +//         +//        HashDataInput signedRef2 = new ByteArrayHashDataInput( +//                "<xml>HashDataInput_002</xml>".getBytes(),  +//                "ref-id-000000002",  +//                "application/xhtml+xml",  +//                "UTF-8", +//                "filename.xhtml"); +//         +//        HashDataInput signedRef3 = new ByteArrayHashDataInput( +//                "<xml>HashDataInput_003</xml>".getBytes(),  +//                "ref-id-000000003",  +//                "application/xhtml+xml",  +//                "UTF-8", +//                "filename.xhtml"); +// +//        HashDataInput signedRef4 = new ByteArrayHashDataInput( +//                "<xml>HashDataInput_004</xml>".getBytes(),  +//                "ref-id-000000004",  +//                "text/xml",  +//                "UTF-8", +//                "filename.xml"); +// +//        // +//        List<HashDataInput> signedRefs = new ArrayList(); +//        signedRefs.add(signedRef1); +//                    signedRefs.add(signedRef2); +//                    signedRefs.add(signedRef3);  //                    signedRefs.add(signedRef4); -//                    signedRefs = Collections.singletonList(signedRef1); -        gui.showSecureViewer(signedRefs, returnListener, "return"); -      } -    }; +////                    signedRefs.add(signedRef4); +////                    signedRefs.add(signedRef4); +////                    signedRefs.add(signedRef4); +////                    signedRefs.add(signedRef4); +////                    signedRefs = Collections.singletonList(signedRef1); +//        gui.showSecureViewer(signedRefs, returnListener, "return"); +//      } +//    }; | 
