Package net.fortuna.ical4j.model.property

Examples of net.fortuna.ical4j.model.property.Description


    CompatibilityHints.setHintEnabled(
        CompatibilityHints.KEY_OUTLOOK_COMPATIBILITY, true);
    VEvent meeting = new VEvent();
    meeting.getProperties().add(new Summary(subject));
    meeting.getProperties().add(new Description(content));
    meeting.getProperties().add(new DtStart(new DateTime(start)));
    meeting.getProperties().add(new DtEnd(new DateTime(end)));
    if (location != null) {
      meeting.getProperties().add(new Location(location));
    }
View Full Code Here


    // add timezone info..
    VTimeZone tz = timeZone.getVTimeZone();

    meeting.getProperties().add(tz.getTimeZoneId());

    meeting.getProperties().add(new Description(description));

    meeting.getProperties().add(new Sequence(1));

    // generate unique identifier (if not submitted)
    Uid ui = null;
View Full Code Here

TOP

Related Classes of net.fortuna.ical4j.model.property.Description

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.