BrightSide Workbench Full Report + Source Code
org.turro.vcard.db.VCardParser Class Reference

Public Member Functions

 VCardParser (BufferedReader in)
 
List< VCardgetVCards ()
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 35 of file VCardParser.java.

Constructor & Destructor Documentation

◆ VCardParser()

org.turro.vcard.db.VCardParser.VCardParser ( BufferedReader  in)

Definition at line 40 of file VCardParser.java.

40  {
41  this.in = in;
42  try {
43  in.readLine();
44  } catch (IOException ex) {
45  Logger.getLogger(VCardParser.class.getName()).log(Level.SEVERE, ElephantContext.logMsg(null), ex);
46  }
47  }
VCardParser(BufferedReader in)
Here is the call graph for this function:

Member Function Documentation

◆ getVCards()

List<VCard> org.turro.vcard.db.VCardParser.getVCards ( )

Definition at line 49 of file VCardParser.java.

49  {
50  List<VCard> l = new ArrayList<VCard>();
51  while(!endReached) {
52  processLines(l, readNextVCard());
53  }
54  return l;
55  }
Here is the caller graph for this function:

The documentation for this class was generated from the following file: