Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. public interface ICompressionMethods
  2. {
  3. public void cMethod();
  4. }
  5.  
  6. public class Brotli implements ICompressionMethods
  7. {
  8. @Override
  9. public void cMethod()
  10. {
  11. // Your code here
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement