jfxtras.icalendarfx.properties.component.descriptive.Comment Maven / Gradle / Ivy
package jfxtras.icalendarfx.properties.component.descriptive;
import jfxtras.icalendarfx.components.DaylightSavingTime;
import jfxtras.icalendarfx.components.StandardTime;
import jfxtras.icalendarfx.components.VEvent;
import jfxtras.icalendarfx.components.VFreeBusy;
import jfxtras.icalendarfx.components.VJournal;
import jfxtras.icalendarfx.components.VTodo;
import jfxtras.icalendarfx.properties.PropBaseAltText;
import jfxtras.icalendarfx.properties.component.descriptive.Comment;
/**
* COMMENT
* RFC 5545 iCalendar 3.8.1.4. page 83
*
* This property specifies non-processing information intended
* to provide a comment to the calendar user
*
* Example:
* COMMENT:The meeting really needs to include both ourselves
* and the customer. We can't hold this meeting without them.
* As a matter of fact\, the venue for the meeting ought to be at
* their site. - - John
*
* @author David Bal
*
* The property can be specified in following components:
* @see VEvent
* @see VTodo
* @see VJournal
* @see VFreeBusy
* @see StandardTime
* @see DaylightSavingTime
*/
public class Comment extends PropBaseAltText
{
public Comment(Comment source)
{
super(source);
}
public Comment()
{
super();
}
public static Comment parse(String content)
{
return Comment.parse(new Comment(), content);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy