fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. // your code goes here
  13. }
  14. }
  15.  
  16. interface WebElement {};
  17. interface MobileElement extends WebElement {};
  18.  
  19.  
  20. interface SearchContext {
  21. WebElement findElement();
  22. List<? extends WebElement> findElements();
  23. }
  24.  
  25. interface AppiumSearchContext extends SearchContext {
  26. @Override
  27. MobileElement findElement();
  28.  
  29. @Override
  30. List<? extends MobileElement> findElements();
  31.  
  32. }
Success #stdin #stdout 0.09s 320320KB
stdin
Standard input is empty
stdout
Standard output is empty