com.harium.suneidesis.knowledge.space.CelestialBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Project to represent knowledge
package com.harium.suneidesis.knowledge.space;
import com.harium.suneidesis.knowledge.concept.Concept;
public class CelestialBody extends Concept {
CelestialBodyType celestialBodyType = CelestialBodyType.UNKNOWN;
StarSystem starSystem;
public CelestialBodyType getCelestialBodyType() {
return celestialBodyType;
}
public void setCelestialBodyType(CelestialBodyType celestialBodyType) {
this.celestialBodyType = celestialBodyType;
}
public StarSystem getStarSystem() {
return starSystem;
}
public void setStarSystem(StarSystem starSystem) {
this.starSystem = starSystem;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy