/[projects]/dao/DaoAdresseService/src/dk/daoas/daoadresseservice/AdressSearch.java
ViewVC logotype

Contents of /dao/DaoAdresseService/src/dk/daoas/daoadresseservice/AdressSearch.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2267 - (show annotations) (download)
Thu Feb 12 13:57:32 2015 UTC (9 years, 3 months ago) by torben
File size: 476 byte(s)
Initial import.
1 package dk.daoas.daoadresseservice;
2
3 import java.util.HashMap;
4
5 public class AdressSearch {
6
7 HashMap<Integer, HashMap<String,Long>> searchPostnrVejnavnDavid = new HashMap<Integer, HashMap<String,Long>>();
8
9
10 public void search(int postnr, String adresse) throws SearchException {
11 HashMap<String,Long> postnrVeje = searchPostnrVejnavnDavid.get(postnr);
12
13 if (postnrVeje == null) {
14 throw new SearchException("Ukendt postnr");
15 }
16
17
18
19 }
20
21 }

  ViewVC Help
Powered by ViewVC 1.1.20