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();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy