ADD week 5
This commit is contained in:
		
							
								
								
									
										25
									
								
								02-Easy5/E5/sources/org/intellij/lang/annotations/Flow.java
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								02-Easy5/E5/sources/org/intellij/lang/annotations/Flow.java
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,25 @@ | ||||
| package org.intellij.lang.annotations; | ||||
|  | ||||
| import java.lang.annotation.ElementType; | ||||
| import java.lang.annotation.Retention; | ||||
| import java.lang.annotation.RetentionPolicy; | ||||
| import java.lang.annotation.Target; | ||||
|  | ||||
| @Target({ElementType.PARAMETER, ElementType.METHOD}) | ||||
| @Retention(RetentionPolicy.CLASS) | ||||
| /* loaded from: classes.dex */ | ||||
| public @interface Flow { | ||||
|     public static final String DEFAULT_SOURCE = "The method argument (if parameter was annotated) or this container (if instance method was annotated)"; | ||||
|     public static final String DEFAULT_TARGET = "This container (if the parameter was annotated) or the return value (if instance method was annotated)"; | ||||
|     public static final String RETURN_METHOD_TARGET = "The return value of this method"; | ||||
|     public static final String THIS_SOURCE = "this"; | ||||
|     public static final String THIS_TARGET = "this"; | ||||
|  | ||||
|     String source() default "The method argument (if parameter was annotated) or this container (if instance method was annotated)"; | ||||
|  | ||||
|     boolean sourceIsContainer() default false; | ||||
|  | ||||
|     String target() default "This container (if the parameter was annotated) or the return value (if instance method was annotated)"; | ||||
|  | ||||
|     boolean targetIsContainer() default false; | ||||
| } | ||||
| @@ -0,0 +1,5 @@ | ||||
| package org.intellij.lang.annotations; | ||||
|  | ||||
| /* loaded from: classes.dex */ | ||||
| public @interface Identifier { | ||||
| } | ||||
| @@ -0,0 +1,61 @@ | ||||
| package org.intellij.lang.annotations; | ||||
|  | ||||
| @Deprecated | ||||
| /* loaded from: classes.dex */ | ||||
| public final class JdkConstants { | ||||
|  | ||||
|     public @interface AdjustableOrientation { | ||||
|     } | ||||
|  | ||||
|     public @interface BoxLayoutAxis { | ||||
|     } | ||||
|  | ||||
|     public @interface CalendarMonth { | ||||
|     } | ||||
|  | ||||
|     public @interface CursorType { | ||||
|     } | ||||
|  | ||||
|     public @interface FlowLayoutAlignment { | ||||
|     } | ||||
|  | ||||
|     public @interface FontStyle { | ||||
|     } | ||||
|  | ||||
|     public @interface HorizontalAlignment { | ||||
|     } | ||||
|  | ||||
|     public @interface HorizontalScrollBarPolicy { | ||||
|     } | ||||
|  | ||||
|     public @interface InputEventMask { | ||||
|     } | ||||
|  | ||||
|     public @interface ListSelectionMode { | ||||
|     } | ||||
|  | ||||
|     public @interface PatternFlags { | ||||
|     } | ||||
|  | ||||
|     public @interface TabLayoutPolicy { | ||||
|     } | ||||
|  | ||||
|     public @interface TabPlacement { | ||||
|     } | ||||
|  | ||||
|     public @interface TitledBorderJustification { | ||||
|     } | ||||
|  | ||||
|     public @interface TitledBorderTitlePosition { | ||||
|     } | ||||
|  | ||||
|     public @interface TreeSelectionMode { | ||||
|     } | ||||
|  | ||||
|     public @interface VerticalScrollBarPolicy { | ||||
|     } | ||||
|  | ||||
|     private JdkConstants() { | ||||
|         throw new AssertionError("JdkConstants should not be instantiated"); | ||||
|     } | ||||
| } | ||||
| @@ -0,0 +1,17 @@ | ||||
| package org.intellij.lang.annotations; | ||||
|  | ||||
| import java.lang.annotation.ElementType; | ||||
| import java.lang.annotation.Retention; | ||||
| import java.lang.annotation.RetentionPolicy; | ||||
| import java.lang.annotation.Target; | ||||
|  | ||||
| @Target({ElementType.METHOD, ElementType.FIELD, ElementType.PARAMETER, ElementType.LOCAL_VARIABLE, ElementType.ANNOTATION_TYPE}) | ||||
| @Retention(RetentionPolicy.CLASS) | ||||
| /* loaded from: classes.dex */ | ||||
| public @interface Language { | ||||
|     String prefix() default ""; | ||||
|  | ||||
|     String suffix() default ""; | ||||
|  | ||||
|     String value(); | ||||
| } | ||||
| @@ -0,0 +1,21 @@ | ||||
| package org.intellij.lang.annotations; | ||||
|  | ||||
| import java.lang.annotation.ElementType; | ||||
| import java.lang.annotation.Retention; | ||||
| import java.lang.annotation.RetentionPolicy; | ||||
| import java.lang.annotation.Target; | ||||
|  | ||||
| @Target({ElementType.FIELD, ElementType.PARAMETER, ElementType.LOCAL_VARIABLE, ElementType.ANNOTATION_TYPE, ElementType.METHOD}) | ||||
| @Retention(RetentionPolicy.SOURCE) | ||||
| /* loaded from: classes.dex */ | ||||
| public @interface MagicConstant { | ||||
|     long[] flags() default {}; | ||||
|  | ||||
|     Class<?> flagsFromClass() default void.class; | ||||
|  | ||||
|     long[] intValues() default {}; | ||||
|  | ||||
|     String[] stringValues() default {}; | ||||
|  | ||||
|     Class<?> valuesFromClass() default void.class; | ||||
| } | ||||
| @@ -0,0 +1,13 @@ | ||||
| package org.intellij.lang.annotations; | ||||
|  | ||||
| import java.lang.annotation.ElementType; | ||||
| import java.lang.annotation.Retention; | ||||
| import java.lang.annotation.RetentionPolicy; | ||||
| import java.lang.annotation.Target; | ||||
|  | ||||
| @Target({ElementType.METHOD, ElementType.FIELD, ElementType.PARAMETER, ElementType.LOCAL_VARIABLE, ElementType.ANNOTATION_TYPE}) | ||||
| @Retention(RetentionPolicy.CLASS) | ||||
| /* loaded from: classes.dex */ | ||||
| public @interface Pattern { | ||||
|     String value(); | ||||
| } | ||||
| @@ -0,0 +1,5 @@ | ||||
| package org.intellij.lang.annotations; | ||||
|  | ||||
| /* loaded from: classes.dex */ | ||||
| public @interface PrintFormat { | ||||
| } | ||||
| @@ -0,0 +1,16 @@ | ||||
| package org.intellij.lang.annotations; | ||||
|  | ||||
| /* compiled from: PrintFormat.java */ | ||||
| /* loaded from: classes.dex */ | ||||
| class PrintFormatPattern { | ||||
|     private static final String ARG_INDEX = "(?:\\d+\\$)?"; | ||||
|     private static final String CONVERSION = "(?:[tT])?(?:[a-zA-Z%])"; | ||||
|     private static final String FLAGS = "(?:[-#+ 0,(<]*)?"; | ||||
|     private static final String PRECISION = "(?:\\.\\d+)?"; | ||||
|     static final String PRINT_FORMAT = "(?:[^%]|%%|(?:%(?:\\d+\\$)?(?:[-#+ 0,(<]*)?(?:\\d+)?(?:\\.\\d+)?(?:[tT])?(?:[a-zA-Z%])))*"; | ||||
|     private static final String TEXT = "[^%]|%%"; | ||||
|     private static final String WIDTH = "(?:\\d+)?"; | ||||
|  | ||||
|     PrintFormatPattern() { | ||||
|     } | ||||
| } | ||||
| @@ -0,0 +1,15 @@ | ||||
| package org.intellij.lang.annotations; | ||||
|  | ||||
| import java.lang.annotation.ElementType; | ||||
| import java.lang.annotation.Retention; | ||||
| import java.lang.annotation.RetentionPolicy; | ||||
| import java.lang.annotation.Target; | ||||
|  | ||||
| @Target({ElementType.METHOD, ElementType.FIELD, ElementType.PARAMETER, ElementType.LOCAL_VARIABLE, ElementType.ANNOTATION_TYPE}) | ||||
| @Retention(RetentionPolicy.CLASS) | ||||
| /* loaded from: classes.dex */ | ||||
| public @interface RegExp { | ||||
|     String prefix() default ""; | ||||
|  | ||||
|     String suffix() default ""; | ||||
| } | ||||
							
								
								
									
										13
									
								
								02-Easy5/E5/sources/org/intellij/lang/annotations/Subst.java
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										13
									
								
								02-Easy5/E5/sources/org/intellij/lang/annotations/Subst.java
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,13 @@ | ||||
| package org.intellij.lang.annotations; | ||||
|  | ||||
| import java.lang.annotation.ElementType; | ||||
| import java.lang.annotation.Retention; | ||||
| import java.lang.annotation.RetentionPolicy; | ||||
| import java.lang.annotation.Target; | ||||
|  | ||||
| @Target({ElementType.METHOD, ElementType.FIELD, ElementType.LOCAL_VARIABLE, ElementType.PARAMETER}) | ||||
| @Retention(RetentionPolicy.CLASS) | ||||
| /* loaded from: classes.dex */ | ||||
| public @interface Subst { | ||||
|     String value(); | ||||
| } | ||||
							
								
								
									
										53
									
								
								02-Easy5/E5/sources/org/jetbrains/annotations/ApiStatus.java
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										53
									
								
								02-Easy5/E5/sources/org/jetbrains/annotations/ApiStatus.java
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,53 @@ | ||||
| package org.jetbrains.annotations; | ||||
|  | ||||
| import java.lang.annotation.Documented; | ||||
| import java.lang.annotation.ElementType; | ||||
| import java.lang.annotation.Retention; | ||||
| import java.lang.annotation.RetentionPolicy; | ||||
| import java.lang.annotation.Target; | ||||
|  | ||||
| /* loaded from: classes.dex */ | ||||
| public final class ApiStatus { | ||||
|  | ||||
|     @Target({ElementType.TYPE, ElementType.ANNOTATION_TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD, ElementType.PACKAGE}) | ||||
|     @Documented | ||||
|     @Retention(RetentionPolicy.CLASS) | ||||
|     public @interface AvailableSince { | ||||
|         String value(); | ||||
|     } | ||||
|  | ||||
|     @Target({ElementType.TYPE, ElementType.ANNOTATION_TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD, ElementType.PACKAGE}) | ||||
|     @Documented | ||||
|     @Retention(RetentionPolicy.CLASS) | ||||
|     public @interface Experimental { | ||||
|     } | ||||
|  | ||||
|     @Target({ElementType.TYPE, ElementType.ANNOTATION_TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD, ElementType.PACKAGE}) | ||||
|     @Documented | ||||
|     @Retention(RetentionPolicy.CLASS) | ||||
|     public @interface Internal { | ||||
|     } | ||||
|  | ||||
|     @Target({ElementType.TYPE, ElementType.METHOD}) | ||||
|     @Documented | ||||
|     @Retention(RetentionPolicy.CLASS) | ||||
|     public @interface NonExtendable { | ||||
|     } | ||||
|  | ||||
|     @Target({ElementType.TYPE, ElementType.METHOD}) | ||||
|     @Documented | ||||
|     @Retention(RetentionPolicy.CLASS) | ||||
|     public @interface OverrideOnly { | ||||
|     } | ||||
|  | ||||
|     @Target({ElementType.TYPE, ElementType.ANNOTATION_TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD, ElementType.PACKAGE}) | ||||
|     @Documented | ||||
|     @Retention(RetentionPolicy.CLASS) | ||||
|     public @interface ScheduledForRemoval { | ||||
|         String inVersion() default ""; | ||||
|     } | ||||
|  | ||||
|     private ApiStatus() { | ||||
|         throw new AssertionError("ApiStatus should not be instantiated"); | ||||
|     } | ||||
| } | ||||
							
								
								
									
										24
									
								
								02-Easy5/E5/sources/org/jetbrains/annotations/Async.java
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								02-Easy5/E5/sources/org/jetbrains/annotations/Async.java
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,24 @@ | ||||
| package org.jetbrains.annotations; | ||||
|  | ||||
| import java.lang.annotation.ElementType; | ||||
| import java.lang.annotation.Retention; | ||||
| import java.lang.annotation.RetentionPolicy; | ||||
| import java.lang.annotation.Target; | ||||
|  | ||||
| /* loaded from: classes.dex */ | ||||
| public final class Async { | ||||
|  | ||||
|     @Target({ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.PARAMETER}) | ||||
|     @Retention(RetentionPolicy.CLASS) | ||||
|     public @interface Execute { | ||||
|     } | ||||
|  | ||||
|     @Target({ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.PARAMETER}) | ||||
|     @Retention(RetentionPolicy.CLASS) | ||||
|     public @interface Schedule { | ||||
|     } | ||||
|  | ||||
|     private Async() { | ||||
|         throw new AssertionError("Async should not be instantiated"); | ||||
|     } | ||||
| } | ||||
							
								
								
									
										14
									
								
								02-Easy5/E5/sources/org/jetbrains/annotations/Blocking.java
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								02-Easy5/E5/sources/org/jetbrains/annotations/Blocking.java
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,14 @@ | ||||
| package org.jetbrains.annotations; | ||||
|  | ||||
| import java.lang.annotation.Documented; | ||||
| import java.lang.annotation.ElementType; | ||||
| import java.lang.annotation.Retention; | ||||
| import java.lang.annotation.RetentionPolicy; | ||||
| import java.lang.annotation.Target; | ||||
|  | ||||
| @Target({ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.TYPE}) | ||||
| @Documented | ||||
| @Retention(RetentionPolicy.CLASS) | ||||
| /* loaded from: classes.dex */ | ||||
| public @interface Blocking { | ||||
| } | ||||
| @@ -0,0 +1,14 @@ | ||||
| package org.jetbrains.annotations; | ||||
|  | ||||
| import java.lang.annotation.Documented; | ||||
| import java.lang.annotation.ElementType; | ||||
| import java.lang.annotation.Retention; | ||||
| import java.lang.annotation.RetentionPolicy; | ||||
| import java.lang.annotation.Target; | ||||
|  | ||||
| @Target({ElementType.TYPE, ElementType.TYPE_USE}) | ||||
| @Documented | ||||
| @Retention(RetentionPolicy.CLASS) | ||||
| /* loaded from: classes.dex */ | ||||
| public @interface BlockingExecutor { | ||||
| } | ||||
							
								
								
									
										19
									
								
								02-Easy5/E5/sources/org/jetbrains/annotations/Contract.java
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								02-Easy5/E5/sources/org/jetbrains/annotations/Contract.java
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,19 @@ | ||||
| package org.jetbrains.annotations; | ||||
|  | ||||
| import java.lang.annotation.Documented; | ||||
| import java.lang.annotation.ElementType; | ||||
| import java.lang.annotation.Retention; | ||||
| import java.lang.annotation.RetentionPolicy; | ||||
| import java.lang.annotation.Target; | ||||
|  | ||||
| @Target({ElementType.METHOD, ElementType.CONSTRUCTOR}) | ||||
| @Documented | ||||
| @Retention(RetentionPolicy.CLASS) | ||||
| /* loaded from: classes.dex */ | ||||
| public @interface Contract { | ||||
|     String mutates() default ""; | ||||
|  | ||||
|     boolean pure() default false; | ||||
|  | ||||
|     String value() default ""; | ||||
| } | ||||
							
								
								
									
										24
									
								
								02-Easy5/E5/sources/org/jetbrains/annotations/Debug.java
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								02-Easy5/E5/sources/org/jetbrains/annotations/Debug.java
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,24 @@ | ||||
| package org.jetbrains.annotations; | ||||
|  | ||||
| import java.lang.annotation.ElementType; | ||||
| import java.lang.annotation.Retention; | ||||
| import java.lang.annotation.RetentionPolicy; | ||||
| import java.lang.annotation.Target; | ||||
|  | ||||
| /* loaded from: classes.dex */ | ||||
| public final class Debug { | ||||
|  | ||||
|     @Target({ElementType.TYPE}) | ||||
|     @Retention(RetentionPolicy.CLASS) | ||||
|     public @interface Renderer { | ||||
|         String childrenArray() default ""; | ||||
|  | ||||
|         String hasChildren() default ""; | ||||
|  | ||||
|         String text() default ""; | ||||
|     } | ||||
|  | ||||
|     private Debug() { | ||||
|         throw new AssertionError("Debug should not be instantiated"); | ||||
|     } | ||||
| } | ||||
| @@ -0,0 +1,14 @@ | ||||
| package org.jetbrains.annotations; | ||||
|  | ||||
| import java.lang.annotation.Documented; | ||||
| import java.lang.annotation.ElementType; | ||||
| import java.lang.annotation.Retention; | ||||
| import java.lang.annotation.RetentionPolicy; | ||||
| import java.lang.annotation.Target; | ||||
|  | ||||
| @Target({ElementType.METHOD}) | ||||
| @Documented | ||||
| @Retention(RetentionPolicy.CLASS) | ||||
| /* loaded from: classes.dex */ | ||||
| public @interface MustBeInvokedByOverriders { | ||||
| } | ||||
							
								
								
									
										22
									
								
								02-Easy5/E5/sources/org/jetbrains/annotations/Nls.java
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								02-Easy5/E5/sources/org/jetbrains/annotations/Nls.java
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,22 @@ | ||||
| package org.jetbrains.annotations; | ||||
|  | ||||
| import java.lang.annotation.Documented; | ||||
| import java.lang.annotation.ElementType; | ||||
| import java.lang.annotation.Retention; | ||||
| import java.lang.annotation.RetentionPolicy; | ||||
| import java.lang.annotation.Target; | ||||
|  | ||||
| @Target({ElementType.METHOD, ElementType.FIELD, ElementType.PARAMETER, ElementType.LOCAL_VARIABLE, ElementType.TYPE_USE, ElementType.TYPE, ElementType.PACKAGE}) | ||||
| @Documented | ||||
| @Retention(RetentionPolicy.CLASS) | ||||
| /* loaded from: classes.dex */ | ||||
| public @interface Nls { | ||||
|  | ||||
|     public enum Capitalization { | ||||
|         NotSpecified, | ||||
|         Title, | ||||
|         Sentence | ||||
|     } | ||||
|  | ||||
|     Capitalization capitalization() default Capitalization.NotSpecified; | ||||
| } | ||||
| @@ -0,0 +1,14 @@ | ||||
| package org.jetbrains.annotations; | ||||
|  | ||||
| import java.lang.annotation.Documented; | ||||
| import java.lang.annotation.ElementType; | ||||
| import java.lang.annotation.Retention; | ||||
| import java.lang.annotation.RetentionPolicy; | ||||
| import java.lang.annotation.Target; | ||||
|  | ||||
| @Target({ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.TYPE}) | ||||
| @Documented | ||||
| @Retention(RetentionPolicy.CLASS) | ||||
| /* loaded from: classes.dex */ | ||||
| public @interface NonBlocking { | ||||
| } | ||||
| @@ -0,0 +1,14 @@ | ||||
| package org.jetbrains.annotations; | ||||
|  | ||||
| import java.lang.annotation.Documented; | ||||
| import java.lang.annotation.ElementType; | ||||
| import java.lang.annotation.Retention; | ||||
| import java.lang.annotation.RetentionPolicy; | ||||
| import java.lang.annotation.Target; | ||||
|  | ||||
| @Target({ElementType.TYPE, ElementType.TYPE_USE}) | ||||
| @Documented | ||||
| @Retention(RetentionPolicy.CLASS) | ||||
| /* loaded from: classes.dex */ | ||||
| public @interface NonBlockingExecutor { | ||||
| } | ||||
							
								
								
									
										14
									
								
								02-Easy5/E5/sources/org/jetbrains/annotations/NonNls.java
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								02-Easy5/E5/sources/org/jetbrains/annotations/NonNls.java
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,14 @@ | ||||
| package org.jetbrains.annotations; | ||||
|  | ||||
| import java.lang.annotation.Documented; | ||||
| import java.lang.annotation.ElementType; | ||||
| import java.lang.annotation.Retention; | ||||
| import java.lang.annotation.RetentionPolicy; | ||||
| import java.lang.annotation.Target; | ||||
|  | ||||
| @Target({ElementType.METHOD, ElementType.FIELD, ElementType.PARAMETER, ElementType.LOCAL_VARIABLE, ElementType.TYPE_USE, ElementType.TYPE, ElementType.PACKAGE}) | ||||
| @Documented | ||||
| @Retention(RetentionPolicy.CLASS) | ||||
| /* loaded from: classes.dex */ | ||||
| public @interface NonNls { | ||||
| } | ||||
							
								
								
									
										17
									
								
								02-Easy5/E5/sources/org/jetbrains/annotations/NotNull.java
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								02-Easy5/E5/sources/org/jetbrains/annotations/NotNull.java
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,17 @@ | ||||
| package org.jetbrains.annotations; | ||||
|  | ||||
| import java.lang.annotation.Documented; | ||||
| import java.lang.annotation.ElementType; | ||||
| import java.lang.annotation.Retention; | ||||
| import java.lang.annotation.RetentionPolicy; | ||||
| import java.lang.annotation.Target; | ||||
|  | ||||
| @Target({ElementType.METHOD, ElementType.FIELD, ElementType.PARAMETER, ElementType.LOCAL_VARIABLE, ElementType.TYPE_USE}) | ||||
| @Documented | ||||
| @Retention(RetentionPolicy.CLASS) | ||||
| /* loaded from: classes.dex */ | ||||
| public @interface NotNull { | ||||
|     Class<? extends Exception> exception() default Exception.class; | ||||
|  | ||||
|     String value() default ""; | ||||
| } | ||||
							
								
								
									
										15
									
								
								02-Easy5/E5/sources/org/jetbrains/annotations/Nullable.java
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										15
									
								
								02-Easy5/E5/sources/org/jetbrains/annotations/Nullable.java
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,15 @@ | ||||
| package org.jetbrains.annotations; | ||||
|  | ||||
| import java.lang.annotation.Documented; | ||||
| import java.lang.annotation.ElementType; | ||||
| import java.lang.annotation.Retention; | ||||
| import java.lang.annotation.RetentionPolicy; | ||||
| import java.lang.annotation.Target; | ||||
|  | ||||
| @Target({ElementType.METHOD, ElementType.FIELD, ElementType.PARAMETER, ElementType.LOCAL_VARIABLE, ElementType.TYPE_USE}) | ||||
| @Documented | ||||
| @Retention(RetentionPolicy.CLASS) | ||||
| /* loaded from: classes.dex */ | ||||
| public @interface Nullable { | ||||
|     String value() default ""; | ||||
| } | ||||
| @@ -0,0 +1,15 @@ | ||||
| package org.jetbrains.annotations; | ||||
|  | ||||
| import java.lang.annotation.Documented; | ||||
| import java.lang.annotation.ElementType; | ||||
| import java.lang.annotation.Retention; | ||||
| import java.lang.annotation.RetentionPolicy; | ||||
| import java.lang.annotation.Target; | ||||
|  | ||||
| @Target({ElementType.PARAMETER, ElementType.LOCAL_VARIABLE, ElementType.FIELD, ElementType.TYPE_USE}) | ||||
| @Documented | ||||
| @Retention(RetentionPolicy.CLASS) | ||||
| /* loaded from: classes.dex */ | ||||
| public @interface PropertyKey { | ||||
|     String resourceBundle(); | ||||
| } | ||||
							
								
								
									
										17
									
								
								02-Easy5/E5/sources/org/jetbrains/annotations/Range.java
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								02-Easy5/E5/sources/org/jetbrains/annotations/Range.java
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,17 @@ | ||||
| package org.jetbrains.annotations; | ||||
|  | ||||
| import java.lang.annotation.Documented; | ||||
| import java.lang.annotation.ElementType; | ||||
| import java.lang.annotation.Retention; | ||||
| import java.lang.annotation.RetentionPolicy; | ||||
| import java.lang.annotation.Target; | ||||
|  | ||||
| @Target({ElementType.TYPE_USE}) | ||||
| @Documented | ||||
| @Retention(RetentionPolicy.CLASS) | ||||
| /* loaded from: classes.dex */ | ||||
| public @interface Range { | ||||
|     long from(); | ||||
|  | ||||
|     long to(); | ||||
| } | ||||
							
								
								
									
										14
									
								
								02-Easy5/E5/sources/org/jetbrains/annotations/TestOnly.java
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								02-Easy5/E5/sources/org/jetbrains/annotations/TestOnly.java
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,14 @@ | ||||
| package org.jetbrains.annotations; | ||||
|  | ||||
| import java.lang.annotation.Documented; | ||||
| import java.lang.annotation.ElementType; | ||||
| import java.lang.annotation.Retention; | ||||
| import java.lang.annotation.RetentionPolicy; | ||||
| import java.lang.annotation.Target; | ||||
|  | ||||
| @Target({ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD, ElementType.TYPE}) | ||||
| @Documented | ||||
| @Retention(RetentionPolicy.CLASS) | ||||
| /* loaded from: classes.dex */ | ||||
| public @interface TestOnly { | ||||
| } | ||||
| @@ -0,0 +1,15 @@ | ||||
| package org.jetbrains.annotations; | ||||
|  | ||||
| import java.lang.annotation.Documented; | ||||
| import java.lang.annotation.ElementType; | ||||
| import java.lang.annotation.Retention; | ||||
| import java.lang.annotation.RetentionPolicy; | ||||
| import java.lang.annotation.Target; | ||||
|  | ||||
| @Target({ElementType.TYPE_USE}) | ||||
| @Documented | ||||
| @Retention(RetentionPolicy.CLASS) | ||||
| /* loaded from: classes.dex */ | ||||
| public @interface UnknownNullability { | ||||
|     String value() default ""; | ||||
| } | ||||
| @@ -0,0 +1,14 @@ | ||||
| package org.jetbrains.annotations; | ||||
|  | ||||
| import java.lang.annotation.Documented; | ||||
| import java.lang.annotation.ElementType; | ||||
| import java.lang.annotation.Retention; | ||||
| import java.lang.annotation.RetentionPolicy; | ||||
| import java.lang.annotation.Target; | ||||
|  | ||||
| @Target({ElementType.TYPE_USE}) | ||||
| @Documented | ||||
| @Retention(RetentionPolicy.CLASS) | ||||
| /* loaded from: classes.dex */ | ||||
| public @interface Unmodifiable { | ||||
| } | ||||
| @@ -0,0 +1,14 @@ | ||||
| package org.jetbrains.annotations; | ||||
|  | ||||
| import java.lang.annotation.Documented; | ||||
| import java.lang.annotation.ElementType; | ||||
| import java.lang.annotation.Retention; | ||||
| import java.lang.annotation.RetentionPolicy; | ||||
| import java.lang.annotation.Target; | ||||
|  | ||||
| @Target({ElementType.TYPE_USE}) | ||||
| @Documented | ||||
| @Retention(RetentionPolicy.CLASS) | ||||
| /* loaded from: classes.dex */ | ||||
| public @interface UnmodifiableView { | ||||
| } | ||||
| @@ -0,0 +1,14 @@ | ||||
| package org.jetbrains.annotations; | ||||
|  | ||||
| import java.lang.annotation.Documented; | ||||
| import java.lang.annotation.ElementType; | ||||
| import java.lang.annotation.Retention; | ||||
| import java.lang.annotation.RetentionPolicy; | ||||
| import java.lang.annotation.Target; | ||||
|  | ||||
| @Target({ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD, ElementType.TYPE}) | ||||
| @Documented | ||||
| @Retention(RetentionPolicy.CLASS) | ||||
| /* loaded from: classes.dex */ | ||||
| public @interface VisibleForTesting { | ||||
| } | ||||
		Reference in New Issue
	
	Block a user