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

com.harium.suneidesis.knowledge.space.CelestialBody Maven / Gradle / Ivy

There is a newer version: 1.6.8
Show newest version
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