-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9e25203
commit e53ddf5
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# iCalendar Components | ||
|
||
Components in iCalendar are used to encapsulate a group of properties (and subcomponents) that | ||
define a specific type of content. For example, events, to-dos and journals | ||
are all defined as components of an iCalendar object. | ||
|
||
## Calendar Components | ||
|
||
Some components may be added directly to an iCalendar object, whereas others are used as | ||
subcomponents to these top-level components. In iCal4j top-level components are known as | ||
_Calendar Components_ and extend the `CalendarComponent` abstract class. | ||
|
||
| Calendar Components | | ||
|---------------------| | ||
| `VEVENT` | | ||
| `VTODO` | | ||
| `VJOURNAL` | | ||
| `VFREEBUSY` | | ||
| `VTIMEZONE` | | ||
|
||
|
||
## Subcomponents | ||
|
||
Subcomponents are nested components, and can be multiple levels deep. For example, an | ||
event may have a nested alarm component, which in turn has a nested location component | ||
for a proximity trigger. | ||
|
||
| Component | Subcomponents | | ||
|---------------|---------------------------------------------------| | ||
| `VEVENT` | `VALARM`, `PARTICIPANT`, `VLOCATION`, `VRESOURCE` | | ||
| `VTODO` | `VALARM`, `PARTICIPANT`, `VLOCATION`, `VRESOURCE` | | ||
| `VJOURNAL` | `PARTICIPANT`, `VLOCATION`, `VRESOURCE` | | ||
| `VFREEBUSY` | `PARTICIPANT`, `VLOCATION`, `VRESOURCE` | | ||
| `VTIMEZONE` | `STANDARD`, `DAYLIGHT` | | ||
| `VALARM` | `VLOCATION` | | ||
| `PARTICIPANT` | `VLOCATION`, `VRESOURCE` | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters