Signal-Android/src/org/thoughtcrime/securesms/mms/QuoteModel.java

47 lines
1,020 B
Java
Raw Normal View History

2018-02-07 14:01:37 -08:00
package org.thoughtcrime.securesms.mms;
import android.support.annotation.Nullable;
import org.thoughtcrime.securesms.attachments.Attachment;
import org.thoughtcrime.securesms.database.Address;
import java.util.List;
public class QuoteModel {
private final long id;
private final Address author;
private final String text;
private final boolean missing;
2018-02-07 14:01:37 -08:00
private final List<Attachment> attachments;
public QuoteModel(long id, Address author, String text, boolean missing, @Nullable List<Attachment> attachments) {
this.id = id;
this.author = author;
this.text = text;
this.missing = missing;
2018-02-07 14:01:37 -08:00
this.attachments = attachments;
}
public long getId() {
return id;
}
public Address getAuthor() {
return author;
}
public String getText() {
return text;
}
public boolean isOriginalMissing() {
return missing;
}
2018-02-07 14:01:37 -08:00
public List<Attachment> getAttachments() {
return attachments;
}
}