Autopsy  4.14.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
ImageTagRegion.java
Go to the documentation of this file.
1 /*
2  * Autopsy Forensic Browser
3  *
4  * Copyright 2019 Basis Technology Corp.
5  * Contact: carrier <at> sleuthkit <dot> org
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19 package org.sleuthkit.autopsy.contentviewers.imagetagging;
20 
25 public class ImageTagRegion {
26 
31  private double x;
32  private double y;
33  private double width;
34  private double height;
35 
36  private double strokeThickness;
37 
38  public ImageTagRegion setStrokeThickness(double thickness) {
39  this.strokeThickness = thickness;
40  return this;
41  }
42 
43  public ImageTagRegion setX(double x) {
44  this.x = x;
45  return this;
46  }
47 
48  public ImageTagRegion setWidth(double width) {
49  this.width = width;
50  return this;
51  }
52 
53  public ImageTagRegion setY(double y) {
54  this.y = y;
55  return this;
56  }
57 
58  public ImageTagRegion setHeight(double height) {
59  this.height = height;
60  return this;
61  }
62 
63  public double getX() {
64  return x;
65  }
66 
67  public double getWidth() {
68  return width;
69  }
70 
71  public double getY() {
72  return y;
73  }
74 
75  public double getHeight() {
76  return height;
77  }
78 
79  public double getStrokeThickness() {
80  return strokeThickness;
81  }
82 }

Copyright © 2012-2020 Basis Technology. Generated on: Wed Apr 8 2020
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.