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

org.sakaiproject.tool.assessment.samlite.api.Answer Maven / Gradle / Ivy

There is a newer version: 23.3
Show newest version
package org.sakaiproject.tool.assessment.samlite.api;

public class Answer {
	private String id;
	private String text;
	private boolean isCorrect;
	
	public Answer(String id, String text, boolean isCorrect) {
		this.id = id;
		this.text = text;
		this.isCorrect = isCorrect;
	}
	
	public String getId() {
		return id;
	}
	public boolean isCorrect() {
		return isCorrect;
	}
	public String getText() {
		return text;
	}
	
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy