All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.fortuna.ical4j.transform.rfc5545.TzIdRule Maven / Gradle / Ivy

There is a newer version: 4.0.4
Show newest version
package net.fortuna.ical4j.transform.rfc5545;

import net.fortuna.ical4j.model.property.TzId;

/**
 * 
 * @author daniel grigore
 * @author corneliu dobrota
 */
public class TzIdRule implements Rfc5545PropertyRule {

    @Override
    public void applyTo(TzId element) {
        TzHelper.correctTzValueOf(element);

    }

    @Override
    public Class getSupportedType() {
        return TzId.class;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy