zezung27 / api-mymeostore

1 stars 0 forks source link

NotificationModal #1

Closed zezung27 closed 1 year ago

zezung27 commented 1 year ago

package com.matcos.dynamicislandlight.core.service.modal;

import android.app.PendingIntent;

import java.util.ArrayList;

public class NotificationModal { private String appName; private boolean isGroupConversation; private boolean isAppGroup; private boolean isGroup; private boolean isOngoing; private String tag; private int uId; private String group_key; private String key; private String id; private String packageName; private String ticker; private CharSequence title; private boolean isAdded; private long postTime; private CharSequence text; private CharSequence bigText; private boolean isClearable; private int color; private CharSequence substName; private CharSequence subText; private CharSequence textBig; private CharSequence summaryText; private CharSequence infoText; private byte[] icon; private byte[] largeIcon; private byte[] picture; private ArrayList actions; public PendingIntent pendingIntent; private String template; public int progress; public boolean progressIndeterminate; public int progressMax; public long duration; public long position; public String category; public boolean showChronometer;

public NotificationModal(String appName, boolean isGroupConversation,
                         boolean isAppGroup, boolean isGroup, boolean isOngoing,
                         String tag, int uId, String group_key, String key, String id, String packageName, String ticker, CharSequence title,
                         boolean isAdded, long postTime, CharSequence text,
                         CharSequence bigText, boolean isClearable,
                         int color, CharSequence substName,
                         CharSequence subText, CharSequence textBig,
                         CharSequence summaryText, CharSequence infoText,
                         byte[] icon, byte[] largeIcon, byte[] picture,
                         ArrayList<ActionParsable> actions,
                         PendingIntent pendingIntent, String template, int progress, int progressMax, boolean progressIndeterminate,
                         String category, boolean showChronometer) {
    this.appName = appName;
    this.isGroupConversation = isGroupConversation;
    this.isAppGroup = isAppGroup;
    this.isGroup = isGroup;
    this.isOngoing = isOngoing;
    this.tag = tag;
    this.uId = uId;
    this.group_key = group_key;
    this.key = key;
    this.id = id;
    this.packageName = packageName;
    this.ticker = ticker;
    this.title = title;
    this.isAdded = isAdded;
    this.postTime = postTime;
    this.text = text;
    this.bigText = bigText;
    this.isClearable = isClearable;
    this.color = color;
    this.substName = substName;
    this.subText = subText;
    this.textBig = textBig;
    this.summaryText = summaryText;
    this.infoText = infoText;
    this.icon = icon;
    this.largeIcon = largeIcon;
    this.picture = picture;
    this.actions = actions;
    this.pendingIntent = pendingIntent;
    this.template = template;
    this.progress = progress;
    this.progressMax = progressMax;
    this.progressIndeterminate = progressIndeterminate;
    this.category = category;
    this.showChronometer = showChronometer;
}

public String getAppName() {
    return appName;
}

public void setAppName(String appName) {
    this.appName = appName;
}

public boolean isGroupConversation() {
    return isGroupConversation;
}

public void setGroupConversation(boolean groupConversation) {
    isGroupConversation = groupConversation;
}

public boolean isAppGroup() {
    return isAppGroup;
}

public void setAppGroup(boolean appGroup) {
    isAppGroup = appGroup;
}

public boolean isGroup() {
    return isGroup;
}

public void setGroup(boolean group) {
    isGroup = group;
}

public boolean isOngoing() {
    return isOngoing;
}

public void setOngoing(boolean ongoing) {
    isOngoing = ongoing;
}

public String getTag() {
    return tag;
}

public void setTag(String tag) {
    this.tag = tag;
}

public int getuId() {
    return uId;
}

public void setuId(int uId) {
    this.uId = uId;
}

public String getGroup_key() {
    return group_key;
}

public void setGroup_key(String group_key) {
    this.group_key = group_key;
}

public String getKey() {
    return key;
}

public void setKey(String key) {
    this.key = key;
}

public String getId() {
    return id;
}

public void setId(String id) {
    this.id = id;
}

public String getPackageName() {
    return packageName;
}
zezung27 commented 1 year ago

public void setPackageName(String packageName) { this.packageName = packageName; }

public String getTicker() {
    return ticker;
}

public void setTicker(String ticker) {
    this.ticker = ticker;
}

public CharSequence getTitle() {
    return title;
}

public void setTitle(CharSequence title) {
    this.title = title;
}

public boolean isAdded() {
    return isAdded;
}

public void setAdded(boolean added) {
    isAdded = added;
}

public long getPostTime() {
    return postTime;
}

public void setPostTime(long postTime) {
    this.postTime = postTime;
}

public CharSequence getText() {
    return text;
}

public void setText(CharSequence text) {
    this.text = text;
}

public CharSequence getBigText() {
    return bigText;
}

public void setBigText(CharSequence bigText) {
    this.bigText = bigText;
}

public boolean isClearable() {
    return isClearable;
}

public void setClearable(boolean clearable) {
    isClearable = clearable;
}

public int getColor() {
    return color;
}

public void setColor(int color) {
    this.color = color;
}

public CharSequence getSubstName() {
    return substName;
}

public void setSubstName(CharSequence substName) {
    this.substName = substName;
}

public CharSequence getSubText() {
    return subText;
}

public void setSubText(CharSequence subText) {
    this.subText = subText;
}

public CharSequence getTextBig() {
    return textBig;
}

public void setTextBig(CharSequence textBig) {
    this.textBig = textBig;
}

public CharSequence getSummaryText() {
    return summaryText;
}

public void setSummaryText(CharSequence summaryText) {
    this.summaryText = summaryText;
}

public CharSequence getInfoText() {
    return infoText;
}

public void setInfoText(CharSequence infoText) {
    this.infoText = infoText;
}

public byte[] getIcon() {
    return icon;
}

public void setIcon(byte[] icon) {
    this.icon = icon;
}

public byte[] getLargeIcon() {
    return largeIcon;
}

public void setLargeIcon(byte[] largeIcon) {
    this.largeIcon = largeIcon;
}

public byte[] getPicture() {
    return picture;
}

public void setPicture(byte[] picture) {
    this.picture = picture;
}

public ArrayList<ActionParsable> getActions() {
    return actions;
}

public void setActions(ArrayList<ActionParsable> actions) {
    this.actions = actions;
}

public PendingIntent getPendingIntent() {
    return pendingIntent;
}

public String getTemplate() {
    return template;
}

public void setTemplate(String template) {
    this.template = template;
}

public void setPendingIntent(PendingIntent pendingIntent) {
    this.pendingIntent = pendingIntent;
}

public long getDuration() {
    return duration;
}

public void setDuration(long duration) {
    this.duration = duration;
}

public long getPosition() {
    return position;
}

public void setPosition(long position) {
    this.position = position;
}

public int getProgress() {
    return progress;
}

public void setProgress(int progress) {
    this.progress = progress;
}

public boolean isProgressIndeterminate() {
    return progressIndeterminate;
}

public void setProgressIndeterminate(boolean progressIndeterminate) {
    this.progressIndeterminate = progressIndeterminate;
}

public int getProgressMax() {
    return progressMax;
}

public void setProgressMax(int progressMax) {
    this.progressMax = progressMax;
}

}