Autopsy  4.18.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
ThreadConfined.java
Go to the documentation of this file.
1 package org.sleuthkit.autopsy.coreutils;
2 
3 import java.lang.annotation.Documented;
4 import java.lang.annotation.ElementType;
5 import java.lang.annotation.Inherited;
6 import java.lang.annotation.Retention;
7 import java.lang.annotation.RetentionPolicy;
8 import java.lang.annotation.Target;
9 
10 @Retention(RetentionPolicy.SOURCE)
11 @Target({ElementType.CONSTRUCTOR, ElementType.METHOD, ElementType.FIELD})
12 @Inherited
13 @Documented
14 public @interface ThreadConfined {
15 
16  ThreadType type();
17 
18  public enum ThreadType {
19 
20  ANY, UI, JFX, AWT, NOT_UI
21  }
22 }

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