Advertisement
Guest User

derp

a guest
Mar 5th, 2015
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. public class MaterialDialogFactory {
  2. public static enum DialogType { --> static here means DialogType can be accessed w/o new MaterialDialogFactory
  3. Save,
  4. Quit,
  5. Cancel;
  6. }
  7.  
  8. // static above is not same as:
  9. // static int mStaticVariable;
  10.  
  11. public MaterialDialog generate(Context c, DialogType t, Callback cb) { ... }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement