com.harium.suneidesis.knowledge.concept.Place 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.concept;
import com.harium.suneidesis.knowledge.space.SpaceConcept;
public class Place extends Concept {
// Where in the Universe and what Universe (usually Earth)
private SpaceConcept space;
// Place is recursive to represent place inside a place
private Place place = null;
public Place(String name) {
super(name, ConceptType.PLACE);
}
public Place at(Place place) {
this.place = place;
return this;
}
public void setPlace(Place place) {
this.place = place;
}
public Place getPlace() {
return place;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy