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

com.achelois.helical.core.Bullet Maven / Gradle / Ivy

There is a newer version: 0.1.8
Show newest version
package com.achelois.helical.core;

public class Bullet {
    private String comment;
    private int caseId;
    private int status;

    Bullet(int caseId, int status, String comment) {
        this.comment = comment;
        this.caseId = caseId;
        this.status = status;
    }

    int getCaseId() {
        return caseId;
    }

    String getComment() {
        return comment;
    }

    int getStatus() {
        return status;
    }

    public void setStatus(Status status) {
        this.status = status.getValue();
    }

    public void setComment(String comment) {
        this.comment = comment;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy