Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. public interface MyInterface{
  2. public firstMethod(String pid, String mid, ClassDefinedByMe classDefinedByMe);
  3. public secondMethod(String pid, String mid, AnotherClassDefinedByMe anotherClassDefinedByMe);
  4. public thirdMethod(String pid, String mid);
  5. }
  6.  
  7. firstMethod([String pid1, String mid1, ClassDefinedByMe classDefinedByMe1],[String pid2, String mid2, ClassDefinedByMe classDefinedByMe2], [String pid3, String mid3, ClassDefinedByMe classDefinedByMe3]);
  8.  
  9. public secondMethod([String pid1, String mid1, AnotherClassDefinedByMe anotherClassDefinedByMe1],[String pid2, String mid2, AnotherClassDefinedByMe anotherClassDefinedByMe2], [String pid3, String mid3, AnotherClassDefinedByMe anotherClassDefinedByMe3], [String pid4, String mid4, AnotherClassDefinedByMe anotherClassDefinedByMe4] );
  10. public thirdMethod([String pid1, String mid1],[String pid2, String mid2],[String pid3, String mid3]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement