Use the abstract factory template .
Your factory abstract will allow you to create dialogs and other notifications. Then you will have 2 specific implementations that will create an Android version or a JVM notification version.
Example:
/* * The abstract factory */ public abstract class NotificationFactory { /** * Pops a message up for the user. * * @param msg */ public abstract void newToast(String msg); // other notifications can go here } /** * Concrete Android notification factory * */ public final class AndroidNotificationFactory extends NotificationFactory { private final Context context; public AndroidNotificationFactory(Context context) { this.context = context; } @Override public void newToast(String msg) { // normal Android toast stuff using the context } } /** * Concrete JVM Notification factory * */ public final class JvmNotificationFactory extends NotificationFactory { @Override public void newToast(String msg) { // JVM toast stuff } } /** * A singleton used for accessing the factory. * */ public enum Library { Instance; private NotificationFactory notificationFactory; public NotificationFactory getNotificationFactory() { // nb: add synchronized if needed return notificationFactory; } public void setNotificationFactory(NotificationFactory notificationFactory) { // nb: add synchronized if needed this.notificationFactory = notificationFactory; } public void InitForAndroid(Context context) { setNotificationFactory(new AndroidNotificationFactory(context)); } public void InitForJvm() { setNotificationFactory(new JvmNotificationFactory()); } } public class ExampleUsage { /** * @param args */ public static void main(String[] args) { // init the library // Library.Instance.InitForAndroid(context); //or: Library.Instance.InitForJvm(); // usage Library.Instance.getNotificationFactory().newToast("Test"); } }
With dialog boxes where you will need to call methods after creation, you need to create the IDialog interface and the specific Android and JVM shells that implement this interface.
weston
source share