
org.jsimpledb.demo.Star Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsimpledb-demo Show documentation
Show all versions of jsimpledb-demo Show documentation
JSimpleDB demonstration classes.
The newest version!
/*
* Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
*/
package org.jsimpledb.demo;
import org.jsimpledb.annotation.JSimpleClass;
/**
* Represents a star.
*/
@JSimpleClass
public abstract class Star extends AbstractHasSatellites {
protected Star() {
super(Planet.class);
}
/**
* Get this star's luminosity.
*
* @return luminosity in Joules per second.
*/
public abstract float getLuminosity();
public abstract void setLuminosity(float luminosity);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy