package org.wookie.qti; /** * Test item class */ public class Test { private String title; private String resourceId; private String attachmentId; private String description; public Test(String resourceId, String attachmentId, String title, String desc) { this.resourceId = resourceId; this.title = title; this.attachmentId = attachmentId; this.description = desc; } /** * Return test title * @return test title */ public String getTitle() { return this.title; } /** * Return test resource id * @return test resource id */ public String getResourceId() { return this.resourceId; } /** * Return attachment id * @return attachment id */ public String getAttachmentId() { return this.attachmentId; } /** * Return test description * @return test description */ public String getDescription() { return this.description; } }