Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.86 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6.  
  7. package mhd;
  8.  
  9. import java.util.List;
  10. import java.util.Map;
  11. import java.util.SortedMap;
  12. import org.jsoup.nodes.Document;
  13.  
  14. /**
  15.  *
  16.  * @author martrin100
  17.  */
  18. public class Parser2 {
  19.    
  20.     private final String url;
  21.     private Document doc;
  22.  
  23.     public Parser2(String url) {
  24.         this.url = url;
  25.        
  26.     }
  27.    
  28.     public static class Zastavka{
  29.         public final String meno;
  30.         public final int cas;
  31.  
  32.         public Zastavka(String meno, int cas) {
  33.             this.meno = meno;
  34.             this.cas = cas;
  35.         }
  36.        
  37.        
  38.     }
  39.    
  40.    
  41.     public List<Zastavka> parseZastavky(){
  42.         return null;
  43.     }
  44.    
  45.    
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement