-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCryptoDotLauncher.java
More file actions
32 lines (28 loc) · 1.19 KB
/
Copy pathCryptoDotLauncher.java
File metadata and controls
32 lines (28 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
*
*Many code snippets were provided by Research In Motion Ltd.
*
*GPL blah todo
*
*/
package com.blah.CryptoDot;
import net.rim.device.api.crypto.CryptoTokenException;
import net.rim.device.api.crypto.CryptoUnsupportedOperationException;
import net.rim.device.api.crypto.UnsupportedCryptoSystemException;
import net.rim.device.api.crypto.keystore.KeyStoreCancelException;
import net.rim.device.api.crypto.keystore.KeyStoreDecodeException;
import net.rim.device.api.crypto.keystore.KeyStoreRegisterException;
import net.rim.device.api.ui.UiApplication;
public class CryptoDotLauncher extends UiApplication{
public static void main(String[] args) throws KeyStoreRegisterException, KeyStoreCancelException,
KeyStoreDecodeException, UnsupportedCryptoSystemException, CryptoTokenException, CryptoUnsupportedOperationException
{
CryptoDotLauncher theApp = new CryptoDotLauncher();
theApp.enterEventDispatcher();
}
public CryptoDotLauncher() throws KeyStoreRegisterException, KeyStoreCancelException,
KeyStoreDecodeException, UnsupportedCryptoSystemException, CryptoTokenException, CryptoUnsupportedOperationException
{
pushScreen(new CryptoDotMainScreen() );
}
}