Skip to content

Commit

Permalink
Fixed factory supported property config
Browse files Browse the repository at this point in the history
  • Loading branch information
benfortuna committed Sep 11, 2015
1 parent c9e74ab commit fe4f8b1
Show file tree
Hide file tree
Showing 12 changed files with 35 additions and 1 deletion.
Expand Up @@ -38,6 +38,9 @@ public String getValue() {
}

public static class Factory extends Content.Factory implements PropertyFactory<Categories> {
public Factory() {
super(PROPERTY_NAME);
}

public Categories createProperty() {
return new Categories();
Expand Down
Expand Up @@ -38,6 +38,9 @@ public String getValue() {
}

public static class Factory extends Content.Factory implements PropertyFactory<Color> {
public Factory() {
super(PROPERTY_NAME);
}

public Color createProperty() {
return new Color();
Expand Down
Expand Up @@ -38,6 +38,9 @@ public String getValue() {
}

public static class Factory extends Content.Factory implements PropertyFactory<Conference> {
public Factory() {
super(PROPERTY_NAME);
}

public Conference createProperty() {
return new Conference();
Expand Down
Expand Up @@ -38,6 +38,9 @@ public String getValue() {
}

public static class Factory extends Content.Factory implements PropertyFactory<Description> {
public Factory() {
super(PROPERTY_NAME);
}

public Description createProperty() {
return new Description();
Expand Down
Expand Up @@ -38,6 +38,9 @@ public String getValue() {
}

public static class Factory extends Content.Factory implements PropertyFactory<Image> {
public Factory() {
super(PROPERTY_NAME);
}

public Image createProperty() {
return new Image();
Expand Down
Expand Up @@ -38,6 +38,9 @@ public String getValue() {
}

public static class Factory extends Content.Factory implements PropertyFactory<LastModified> {
public Factory() {
super(PROPERTY_NAME);
}

public LastModified createProperty() {
return new LastModified();
Expand Down
Expand Up @@ -38,6 +38,9 @@ public String getValue() {
}

public static class Factory extends Content.Factory implements PropertyFactory<Name> {
public Factory() {
super(PROPERTY_NAME);
}

public Name createProperty() {
return new Name();
Expand Down
Expand Up @@ -38,6 +38,9 @@ public String getValue() {
}

public static class Factory extends Content.Factory implements PropertyFactory<RefreshInterval> {
public Factory() {
super(PROPERTY_NAME);
}

public RefreshInterval createProperty() {
return new RefreshInterval();
Expand Down
Expand Up @@ -38,6 +38,9 @@ public String getValue() {
}

public static class Factory extends Content.Factory implements PropertyFactory<Source> {
public Factory() {
super(PROPERTY_NAME);
}

public Source createProperty() {
return new Source();
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/net/fortuna/ical4j/extensions/property/Uid.java
Expand Up @@ -38,6 +38,9 @@ public String getValue() {
}

public static class Factory extends Content.Factory implements PropertyFactory<Uid> {
public Factory() {
super(PROPERTY_NAME);
}

public Uid createProperty() {
return new Uid();
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/net/fortuna/ical4j/extensions/property/Url.java
Expand Up @@ -38,6 +38,9 @@ public String getValue() {
}

public static class Factory extends Content.Factory implements PropertyFactory<Url> {
public Factory() {
super(PROPERTY_NAME);
}

public Url createProperty() {
return new Url();
Expand Down
Expand Up @@ -29,7 +29,8 @@ PRODID:-//ABC Corporation//NONSGML My Product//EN
BEGIN:VTODO
CONFERENCE;VALUE=URI;FEATURE=VIDEO;
LABEL="Web video chat, access code=76543";
:http://video-chat.example.com/;group-id=1234END:VTODO
:http://video-chat.example.com/;group-id=1234
END:VTODO
END:VCALENDAR
'''

Expand Down

0 comments on commit fe4f8b1

Please sign in to comment.