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

jfxtras.icalendarfx.VChild Maven / Gradle / Ivy

The newest version!
package jfxtras.icalendarfx;

import jfxtras.icalendarfx.VChild;
import jfxtras.icalendarfx.VElement;
import jfxtras.icalendarfx.VParent;

/**
 * A child calendar component that has a {@link VParent}
 * 
 * @author David Bal
 *
 */
public interface VChild extends VElement
{
    /** Gets the {@link VParent} of this {@link VChild} */
    VParent getParent();
    /** Set the {@link VParent}  of this {@link VChild}.  This method is invoked internally by the API.
     * Under normal circumstances it should not be used externally */
    void setParent(VParent parent);
    
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy