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

edu.cmu.sv.domain.smart_house.GUI.GUIPerson Maven / Gradle / Ivy

Go to download

A library that allows rapid prototyping of dialog systems (language understanding, discourse modelling, dialog management, language generation).

There is a newer version: 0.7.0
Show newest version
package edu.cmu.sv.domain.smart_house.GUI;

import java.util.List;
import java.util.ArrayList;

public class GUIPerson extends GUIThing {
	private String gender;
	
	public GUIPerson(String name, String gender, GUIRoom room, String correspondingURI) {
		super(name, room, correspondingURI);
		this.gender = gender;
	}
	
	@Override
	public List provideDetails() {
		List ans = new ArrayList<>();
		ans.add("Name: " + this.getName() + "\n");
		ans.add("Room: " + this.getRoom() + "\n");
		ans.add("Gender: " + this.gender);
		return ans;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy