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

io.permazen.demo.HasSatellites Maven / Gradle / Ivy


/*
 * Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
 */

package io.permazen.demo;

import java.util.NavigableSet;

/**
 * Implemented by heavenly bodies that can have other heavenly bodies as satellites.
 *
 * @param  satellites' type
 */
public interface HasSatellites> extends Body {

    /**
     * Get the satellites associated with this instance.
     *
     * @return set of satellites, possibly empty
     */
    NavigableSet getSatellites();
}