Package net.fortuna.ical4j.model.parameter

Examples of net.fortuna.ical4j.model.parameter.XParameter


    protected static XParameter toXParameter(String name, String value) {
        if (name == null || value == null) {
            return null;
        }
        return new XParameter(name, value);
    }
View Full Code Here


    protected static XParameter toXParameter(String name, String value) {
        if (name == null || value == null) {
            return null;
        }
        return new XParameter(name, value);
    }
View Full Code Here

TOP

Related Classes of net.fortuna.ical4j.model.parameter.XParameter

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.