Skip to content

Instantly share code, notes, and snippets.

@arjunsk
Last active August 18, 2018 06:34
Show Gist options
  • Save arjunsk/e943c23c78928f8a027c5a9f966e76d5 to your computer and use it in GitHub Desktop.
Save arjunsk/e943c23c78928f8a027c5a9f966e76d5 to your computer and use it in GitHub Desktop.
package factories;
import android_widget.DialogueBox;
public interface IFactory {
public DialogueBox createDialogue(String type);
// public TextBox createTextBox();
// public Button createButton();
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment