package com.dss.tpservice.bean;

import android.graphics.Rect;

/* JADX INFO: loaded from: classes.dex */
public class ForbidDrawArea {
    private Rect area;
    private int displayId;
    private String windowTitle;
    private int windowType;

    public ForbidDrawArea(int i, Rect rect, int i2, String str) {
        this.displayId = i;
        this.area = rect;
        this.windowType = i2;
        this.windowTitle = str;
    }

    public void setDisplayId(int i) {
        this.displayId = i;
    }

    public void setArea(Rect rect) {
        this.area = rect;
    }

    public void setWindowType(int i) {
        this.windowType = i;
    }

    public void setWindowTitle(String str) {
        this.windowTitle = str;
    }

    public String toString() {
        return "ForbidDrawArea{displayId=" + this.displayId + ", area=" + this.area + ", windowType=" + this.windowType + ", windowTitle='" + this.windowTitle + "'}";
    }
}
