- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 31 of file VCard.java.
◆ VCard()
org.turro.vcard.VCard.VCard |
( |
Version |
version | ) |
|
Definition at line 36 of file VCard.java.
List< Property > properties
◆ addProperty()
void org.turro.vcard.VCard.addProperty |
( |
Property |
property | ) |
|
◆ getProperties()
Definition at line 73 of file VCard.java.
74 List<Property> props =
new ArrayList<Property>();
76 if(p.getTag().equals(tag)) {
◆ getProperty()
Definition at line 64 of file VCard.java.
66 if(p.getTag().equals(tag)) {
◆ getVCard()
String org.turro.vcard.VCard.getVCard |
( |
| ) |
|
Definition at line 45 of file VCard.java.
46 StringBuilder sb =
new StringBuilder();
48 sb.append(
"BEGIN:VCARD\n");
55 sb.append(
"END:VCARD\n");
void renderVersion(StringBuilder sb)
◆ getVersion()
Version org.turro.vcard.VCard.getVersion |
( |
| ) |
|
◆ readLines()
void org.turro.vcard.VCard.readLines |
( |
List< String > |
lines | ) |
|
Definition at line 83 of file VCard.java.
84 for(String l : lines) {
85 PropertyTag pt = PropertyTag.getInstance(l);
87 properties.add(Property.getInstance(
this, pt, l));
◆ properties
List<Property> org.turro.vcard.VCard.properties |
|
protected |
◆ version
Version org.turro.vcard.VCard.version |
|
protected |
The documentation for this class was generated from the following file: