sometsome 1.0.2 → 3.10.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/proguard4.7/README +33 -0
- data/lib/proguard4.7/bin/proguard.bat +14 -0
- data/lib/proguard4.7/bin/proguard.sh +11 -0
- data/lib/proguard4.7/bin/proguardgui.bat +14 -0
- data/lib/proguard4.7/bin/proguardgui.sh +15 -0
- data/lib/proguard4.7/bin/retrace.bat +14 -0
- data/lib/proguard4.7/bin/retrace.sh +12 -0
- data/lib/proguard4.7/build/build.sh +94 -0
- data/lib/proguard4.7/build/build.xml +171 -0
- data/lib/proguard4.7/build/makefile +94 -0
- data/lib/proguard4.7/docs/FAQ.html +253 -0
- data/lib/proguard4.7/docs/GPL.html +406 -0
- data/lib/proguard4.7/docs/GPL_exception.html +56 -0
- data/lib/proguard4.7/docs/acknowledgements.html +76 -0
- data/lib/proguard4.7/docs/alternatives.html +699 -0
- data/lib/proguard4.7/docs/checkmark.gif +0 -0
- data/lib/proguard4.7/docs/downloads.html +623 -0
- data/lib/proguard4.7/docs/drop1.gif +0 -0
- data/lib/proguard4.7/docs/drop2.gif +0 -0
- data/lib/proguard4.7/docs/drop3.gif +0 -0
- data/lib/proguard4.7/docs/favicon.ico +0 -0
- data/lib/proguard4.7/docs/feedback.html +120 -0
- data/lib/proguard4.7/docs/index.html +92 -0
- data/lib/proguard4.7/docs/license.html +60 -0
- data/lib/proguard4.7/docs/main.html +102 -0
- data/lib/proguard4.7/docs/manual/ant.html +634 -0
- data/lib/proguard4.7/docs/manual/attention.gif +0 -0
- data/lib/proguard4.7/docs/manual/examples.html +1504 -0
- data/lib/proguard4.7/docs/manual/gui.html +479 -0
- data/lib/proguard4.7/docs/manual/index.html +51 -0
- data/lib/proguard4.7/docs/manual/introduction.html +173 -0
- data/lib/proguard4.7/docs/manual/limitations.html +69 -0
- data/lib/proguard4.7/docs/manual/optimizations.html +172 -0
- data/lib/proguard4.7/docs/manual/refcard.html +486 -0
- data/lib/proguard4.7/docs/manual/retrace/examples.html +345 -0
- data/lib/proguard4.7/docs/manual/retrace/index.html +37 -0
- data/lib/proguard4.7/docs/manual/retrace/introduction.html +79 -0
- data/lib/proguard4.7/docs/manual/retrace/usage.html +127 -0
- data/lib/proguard4.7/docs/manual/sections.html +60 -0
- data/lib/proguard4.7/docs/manual/style.css +105 -0
- data/lib/proguard4.7/docs/manual/troubleshooting.html +729 -0
- data/lib/proguard4.7/docs/manual/usage.html +1243 -0
- data/lib/proguard4.7/docs/manual/wtk.html +70 -0
- data/lib/proguard4.7/docs/quality.html +56 -0
- data/lib/proguard4.7/docs/results.html +170 -0
- data/lib/proguard4.7/docs/saikoalogo.png +0 -0
- data/lib/proguard4.7/docs/screenshot_console.gif +0 -0
- data/lib/proguard4.7/docs/screenshot_console_small.gif +0 -0
- data/lib/proguard4.7/docs/screenshot_gui1.gif +0 -0
- data/lib/proguard4.7/docs/screenshot_gui2.gif +0 -0
- data/lib/proguard4.7/docs/screenshot_gui3.gif +0 -0
- data/lib/proguard4.7/docs/screenshot_gui4.gif +0 -0
- data/lib/proguard4.7/docs/screenshot_gui5.gif +0 -0
- data/lib/proguard4.7/docs/screenshot_gui6.gif +0 -0
- data/lib/proguard4.7/docs/screenshot_gui7.gif +0 -0
- data/lib/proguard4.7/docs/screenshot_gui8.gif +0 -0
- data/lib/proguard4.7/docs/screenshots.html +67 -0
- data/lib/proguard4.7/docs/screenshots_gui_small.gif +0 -0
- data/lib/proguard4.7/docs/sections.html +64 -0
- data/lib/proguard4.7/docs/sflogo.png +0 -0
- data/lib/proguard4.7/docs/steel.gif +0 -0
- data/lib/proguard4.7/docs/style.css +223 -0
- data/lib/proguard4.7/docs/testimonials.html +133 -0
- data/lib/proguard4.7/docs/title.gif +0 -0
- data/lib/proguard4.7/docs/title.html +17 -0
- data/lib/proguard4.7/examples/android.pro +149 -0
- data/lib/proguard4.7/examples/annotations/examples.pro +60 -0
- data/lib/proguard4.7/examples/annotations/examples/Applet.java +22 -0
- data/lib/proguard4.7/examples/annotations/examples/Application.java +20 -0
- data/lib/proguard4.7/examples/annotations/examples/Bean.java +56 -0
- data/lib/proguard4.7/examples/annotations/examples/NativeCallBack.java +44 -0
- data/lib/proguard4.7/examples/annotations/lib/annotations.jar +0 -0
- data/lib/proguard4.7/examples/annotations/lib/annotations.pro +118 -0
- data/lib/proguard4.7/examples/annotations/src/proguard/annotation/Keep.java +18 -0
- data/lib/proguard4.7/examples/annotations/src/proguard/annotation/KeepApplication.java +18 -0
- data/lib/proguard4.7/examples/annotations/src/proguard/annotation/KeepClassMemberNames.java +18 -0
- data/lib/proguard4.7/examples/annotations/src/proguard/annotation/KeepClassMembers.java +18 -0
- data/lib/proguard4.7/examples/annotations/src/proguard/annotation/KeepGettersSetters.java +18 -0
- data/lib/proguard4.7/examples/annotations/src/proguard/annotation/KeepImplementations.java +18 -0
- data/lib/proguard4.7/examples/annotations/src/proguard/annotation/KeepName.java +18 -0
- data/lib/proguard4.7/examples/annotations/src/proguard/annotation/KeepPublicClassMemberNames.java +18 -0
- data/lib/proguard4.7/examples/annotations/src/proguard/annotation/KeepPublicClassMembers.java +18 -0
- data/lib/proguard4.7/examples/annotations/src/proguard/annotation/KeepPublicGettersSetters.java +18 -0
- data/lib/proguard4.7/examples/annotations/src/proguard/annotation/KeepPublicImplementations.java +18 -0
- data/lib/proguard4.7/examples/annotations/src/proguard/annotation/KeepPublicProtectedClassMemberNames.java +18 -0
- data/lib/proguard4.7/examples/annotations/src/proguard/annotation/KeepPublicProtectedClassMembers.java +19 -0
- data/lib/proguard4.7/examples/ant/android-8.xml +177 -0
- data/lib/proguard4.7/examples/ant/applets.xml +88 -0
- data/lib/proguard4.7/examples/ant/applications1.xml +15 -0
- data/lib/proguard4.7/examples/ant/applications2.xml +74 -0
- data/lib/proguard4.7/examples/ant/applications3.xml +98 -0
- data/lib/proguard4.7/examples/ant/library.xml +102 -0
- data/lib/proguard4.7/examples/ant/midlets.xml +52 -0
- data/lib/proguard4.7/examples/ant/proguard.xml +78 -0
- data/lib/proguard4.7/examples/ant/servlets.xml +88 -0
- data/lib/proguard4.7/examples/applets.pro +69 -0
- data/lib/proguard4.7/examples/applications.pro +75 -0
- data/lib/proguard4.7/examples/dictionaries/compact.txt +18 -0
- data/lib/proguard4.7/examples/dictionaries/keywords.txt +58 -0
- data/lib/proguard4.7/examples/dictionaries/shakespeare.txt +23 -0
- data/lib/proguard4.7/examples/dictionaries/windows.txt +209 -0
- data/lib/proguard4.7/examples/library.pro +79 -0
- data/lib/proguard4.7/examples/midlets.pro +67 -0
- data/lib/proguard4.7/examples/proguard.pro +57 -0
- data/lib/proguard4.7/examples/proguardall.pro +62 -0
- data/lib/proguard4.7/examples/proguardgui.pro +50 -0
- data/lib/proguard4.7/examples/retrace.pro +43 -0
- data/lib/proguard4.7/examples/scala.pro +132 -0
- data/lib/proguard4.7/examples/servlets.pro +70 -0
- data/lib/proguard4.7/lib/proguard.jar +0 -0
- data/lib/proguard4.7/lib/proguardgui.jar +0 -0
- data/lib/proguard4.7/lib/retrace.jar +0 -0
- data/lib/proguard4.7/src/proguard/ArgumentWordReader.java +111 -0
- data/lib/proguard4.7/src/proguard/ClassPath.java +94 -0
- data/lib/proguard4.7/src/proguard/ClassPathEntry.java +282 -0
- data/lib/proguard4.7/src/proguard/ClassSpecification.java +259 -0
- data/lib/proguard4.7/src/proguard/ClassSpecificationVisitorFactory.java +503 -0
- data/lib/proguard4.7/src/proguard/Configuration.java +328 -0
- data/lib/proguard4.7/src/proguard/ConfigurationConstants.java +123 -0
- data/lib/proguard4.7/src/proguard/ConfigurationParser.java +1285 -0
- data/lib/proguard4.7/src/proguard/ConfigurationWriter.java +651 -0
- data/lib/proguard4.7/src/proguard/DataEntryReaderFactory.java +141 -0
- data/lib/proguard4.7/src/proguard/DataEntryWriterFactory.java +150 -0
- data/lib/proguard4.7/src/proguard/DescriptorKeepChecker.java +169 -0
- data/lib/proguard4.7/src/proguard/DuplicateClassPrinter.java +63 -0
- data/lib/proguard4.7/src/proguard/FileWordReader.java +55 -0
- data/lib/proguard4.7/src/proguard/FullyQualifiedClassNameChecker.java +191 -0
- data/lib/proguard4.7/src/proguard/GPL.java +197 -0
- data/lib/proguard4.7/src/proguard/Initializer.java +424 -0
- data/lib/proguard4.7/src/proguard/InputReader.java +233 -0
- data/lib/proguard4.7/src/proguard/KeepClassMemberChecker.java +87 -0
- data/lib/proguard4.7/src/proguard/KeepClassSpecification.java +137 -0
- data/lib/proguard4.7/src/proguard/LineWordReader.java +74 -0
- data/lib/proguard4.7/src/proguard/MANIFEST.MF +2 -0
- data/lib/proguard4.7/src/proguard/MemberSpecification.java +114 -0
- data/lib/proguard4.7/src/proguard/OutputWriter.java +296 -0
- data/lib/proguard4.7/src/proguard/ParseException.java +51 -0
- data/lib/proguard4.7/src/proguard/ProGuard.java +512 -0
- data/lib/proguard4.7/src/proguard/SeedPrinter.java +97 -0
- data/lib/proguard4.7/src/proguard/SubclassedClassFilter.java +62 -0
- data/lib/proguard4.7/src/proguard/Targeter.java +88 -0
- data/lib/proguard4.7/src/proguard/UpToDateChecker.java +232 -0
- data/lib/proguard4.7/src/proguard/WordReader.java +387 -0
- data/lib/proguard4.7/src/proguard/ant/ClassPathElement.java +191 -0
- data/lib/proguard4.7/src/proguard/ant/ClassSpecificationElement.java +258 -0
- data/lib/proguard4.7/src/proguard/ant/ConfigurationElement.java +53 -0
- data/lib/proguard4.7/src/proguard/ant/ConfigurationTask.java +441 -0
- data/lib/proguard4.7/src/proguard/ant/FilterElement.java +85 -0
- data/lib/proguard4.7/src/proguard/ant/KeepSpecificationElement.java +87 -0
- data/lib/proguard4.7/src/proguard/ant/MemberSpecificationElement.java +218 -0
- data/lib/proguard4.7/src/proguard/ant/ProGuardTask.java +352 -0
- data/lib/proguard4.7/src/proguard/ant/package.html +3 -0
- data/lib/proguard4.7/src/proguard/ant/task.properties +2 -0
- data/lib/proguard4.7/src/proguard/classfile/ClassConstants.java +316 -0
- data/lib/proguard4.7/src/proguard/classfile/ClassPool.java +152 -0
- data/lib/proguard4.7/src/proguard/classfile/Clazz.java +261 -0
- data/lib/proguard4.7/src/proguard/classfile/Field.java +32 -0
- data/lib/proguard4.7/src/proguard/classfile/LibraryClass.java +548 -0
- data/lib/proguard4.7/src/proguard/classfile/LibraryField.java +77 -0
- data/lib/proguard4.7/src/proguard/classfile/LibraryMember.java +108 -0
- data/lib/proguard4.7/src/proguard/classfile/LibraryMethod.java +83 -0
- data/lib/proguard4.7/src/proguard/classfile/Member.java +57 -0
- data/lib/proguard4.7/src/proguard/classfile/Method.java +32 -0
- data/lib/proguard4.7/src/proguard/classfile/ProgramClass.java +572 -0
- data/lib/proguard4.7/src/proguard/classfile/ProgramField.java +93 -0
- data/lib/proguard4.7/src/proguard/classfile/ProgramMember.java +168 -0
- data/lib/proguard4.7/src/proguard/classfile/ProgramMethod.java +99 -0
- data/lib/proguard4.7/src/proguard/classfile/VisitorAccepter.java +47 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/Attribute.java +142 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/BootstrapMethodInfo.java +89 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/BootstrapMethodsAttribute.java +95 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/CodeAttribute.java +202 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/ConstantValueAttribute.java +62 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/DeprecatedAttribute.java +66 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/EnclosingMethodAttribute.java +132 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/ExceptionInfo.java +100 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/ExceptionsAttribute.java +80 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/InnerClassesAttribute.java +80 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/InnerClassesInfo.java +119 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/LineNumberInfo.java +50 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/LineNumberTableAttribute.java +100 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/LocalVariableInfo.java +99 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/LocalVariableTableAttribute.java +79 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/LocalVariableTypeInfo.java +107 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/LocalVariableTypeTableAttribute.java +79 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/SignatureAttribute.java +100 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/SourceDirAttribute.java +62 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/SourceFileAttribute.java +62 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/SyntheticAttribute.java +66 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/UnknownAttribute.java +82 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/Annotation.java +143 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/AnnotationDefaultAttribute.java +73 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/AnnotationElementValue.java +76 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/AnnotationsAttribute.java +100 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/ArrayElementValue.java +82 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/ClassElementValue.java +95 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/ConstantElementValue.java +71 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/ElementValue.java +126 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/EnumConstantElementValue.java +99 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/ParameterAnnotationsAttribute.java +83 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/RuntimeInvisibleAnnotationsAttribute.java +70 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/RuntimeInvisibleParameterAnnotationsAttribute.java +62 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/RuntimeVisibleAnnotationsAttribute.java +70 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/RuntimeVisibleParameterAnnotationsAttribute.java +62 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/package.html +4 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/visitor/AllAnnotationVisitor.java +100 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/visitor/AnnotatedClassVisitor.java +62 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/visitor/AnnotationToMemberVisitor.java +62 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/visitor/AnnotationTypeFilter.java +102 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/visitor/AnnotationVisitor.java +40 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/visitor/ElementValueVisitor.java +51 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/visitor/package.html +3 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/package.html +3 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/DoubleType.java +66 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/FloatType.java +66 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/FullFrame.java +202 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/IntegerType.java +66 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/LessZeroFrame.java +103 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/LongType.java +66 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/MoreZeroFrame.java +161 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/NullType.java +66 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/ObjectType.java +107 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/SameOneFrame.java +115 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/SameZeroFrame.java +74 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/StackMapAttribute.java +91 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/StackMapFrame.java +117 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/StackMapTableAttribute.java +93 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/TopType.java +66 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/UninitializedThisType.java +66 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/UninitializedType.java +106 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/VerificationType.java +103 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/VerificationTypeFactory.java +112 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/visitor/StackMapFrameVisitor.java +40 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/visitor/VerificationTypeVisitor.java +65 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/AllAttributeVisitor.java +117 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/AllBootstrapMethodInfoVisitor.java +55 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/AllExceptionInfoVisitor.java +55 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/AllInnerClassesInfoVisitor.java +55 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/AttributeNameFilter.java +368 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/AttributeVisitor.java +90 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/BootstrapMethodInfoVisitor.java +40 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/ExceptionInfoVisitor.java +37 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/InnerClassesInfoVisitor.java +38 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/LineNumberInfoVisitor.java +38 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/LocalVariableInfoVisitor.java +38 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/LocalVariableTypeInfoVisitor.java +38 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/MultiAttributeVisitor.java +365 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/NonEmptyAttributeFilter.java +293 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/RequiredAttributeFilter.java +360 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/StackSizeComputer.java +378 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/package.html +3 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/ClassConstant.java +105 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/Constant.java +68 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/DoubleConstant.java +82 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/FieldrefConstant.java +71 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/FloatConstant.java +82 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/IntegerConstant.java +82 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/InterfaceMethodrefConstant.java +71 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/InvokeDynamicConstant.java +148 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/LongConstant.java +82 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/MethodHandleConstant.java +124 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/MethodTypeConstant.java +93 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/MethodrefConstant.java +71 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/NameAndTypeConstant.java +119 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/RefConstant.java +130 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/StringConstant.java +135 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/Utf8Constant.java +285 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/visitor/AllConstantVisitor.java +53 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/visitor/BootstrapMethodHandleTraveler.java +100 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/visitor/ConstantTagFilter.java +86 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/visitor/ConstantVisitor.java +49 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/visitor/ExceptClassConstantFilter.java +69 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/visitor/MethodrefTraveler.java +60 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/visitor/package.html +3 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/AccessFixer.java +180 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/AnnotationAdder.java +153 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/AnnotationsAttributeEditor.java +67 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/AttributeAdder.java +457 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/AttributeSorter.java +89 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/AttributesEditor.java +269 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/BridgeMethodFixer.java +117 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ClassEditor.java +255 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ClassElementSorter.java +52 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ClassMemberSorter.java +69 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ClassReferenceFixer.java +546 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/CodeAttributeComposer.java +843 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/CodeAttributeEditor.java +1104 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/CodeAttributeEditorResetter.java +60 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ComparableConstant.java +249 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ConstantAdder.java +239 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ConstantPoolEditor.java +782 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ConstantPoolRemapper.java +662 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ConstantPoolShrinker.java +578 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ConstantPoolSorter.java +123 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ElementValueAdder.java +217 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ElementValuesEditor.java +238 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ExceptionAdder.java +65 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ExceptionInfoAdder.java +67 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ExceptionsAttributeEditor.java +68 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/InnerClassesAccessFixer.java +83 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/InstructionAdder.java +76 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/InstructionWriter.java +278 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/InterfaceAdder.java +62 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/InterfaceSorter.java +152 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/InterfacesEditor.java +122 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/LineNumberInfoAdder.java +59 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/LineNumberTableAttributeEditor.java +67 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/LocalVariableInfoAdder.java +67 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/LocalVariableTableAttributeEditor.java +67 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/LocalVariableTypeInfoAdder.java +68 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/LocalVariableTypeTableAttributeEditor.java +68 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/MemberAdder.java +288 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/MemberReferenceFixer.java +447 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/MethodInvocationFixer.java +243 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/NameAndTypeShrinker.java +188 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/NamedAttributeDeleter.java +54 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ParameterAnnotationsAttributeEditor.java +71 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/StackSizeUpdater.java +54 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/SubclassAdder.java +59 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/SubclassToAdder.java +60 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/Utf8Shrinker.java +455 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/VariableCleaner.java +267 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/VariableEditor.java +130 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/VariableRemapper.java +156 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/VariableSizeUpdater.java +105 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/package.html +3 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/BranchInstruction.java +180 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/ConstantInstruction.java +309 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/Instruction.java +920 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/InstructionConstants.java +449 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/InstructionFactory.java +300 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/InstructionUtil.java +67 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/LookUpSwitchInstruction.java +135 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/SimpleInstruction.java +255 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/SwitchInstruction.java +83 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/TableSwitchInstruction.java +139 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/VariableInstruction.java +372 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/package.html +9 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/visitor/AllInstructionVisitor.java +56 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/visitor/InstructionCounter.java +59 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/visitor/InstructionVisitor.java +42 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/visitor/MultiInstructionVisitor.java +131 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/visitor/package.html +3 -0
- data/lib/proguard4.7/src/proguard/classfile/io/LibraryClassReader.java +383 -0
- data/lib/proguard4.7/src/proguard/classfile/io/ProgramClassReader.java +919 -0
- data/lib/proguard4.7/src/proguard/classfile/io/ProgramClassWriter.java +735 -0
- data/lib/proguard4.7/src/proguard/classfile/io/RuntimeDataInput.java +223 -0
- data/lib/proguard4.7/src/proguard/classfile/io/RuntimeDataOutput.java +224 -0
- data/lib/proguard4.7/src/proguard/classfile/io/package.html +3 -0
- data/lib/proguard4.7/src/proguard/classfile/package.html +15 -0
- data/lib/proguard4.7/src/proguard/classfile/util/AccessUtil.java +105 -0
- data/lib/proguard4.7/src/proguard/classfile/util/ClassReferenceInitializer.java +559 -0
- data/lib/proguard4.7/src/proguard/classfile/util/ClassSubHierarchyInitializer.java +77 -0
- data/lib/proguard4.7/src/proguard/classfile/util/ClassSuperHierarchyInitializer.java +163 -0
- data/lib/proguard4.7/src/proguard/classfile/util/ClassUtil.java +1227 -0
- data/lib/proguard4.7/src/proguard/classfile/util/DescriptorClassEnumeration.java +236 -0
- data/lib/proguard4.7/src/proguard/classfile/util/DynamicClassReferenceInitializer.java +485 -0
- data/lib/proguard4.7/src/proguard/classfile/util/DynamicMemberReferenceInitializer.java +944 -0
- data/lib/proguard4.7/src/proguard/classfile/util/ExternalTypeEnumeration.java +106 -0
- data/lib/proguard4.7/src/proguard/classfile/util/InstructionSequenceMatcher.java +754 -0
- data/lib/proguard4.7/src/proguard/classfile/util/InternalTypeEnumeration.java +204 -0
- data/lib/proguard4.7/src/proguard/classfile/util/MemberFinder.java +197 -0
- data/lib/proguard4.7/src/proguard/classfile/util/MethodLinker.java +160 -0
- data/lib/proguard4.7/src/proguard/classfile/util/SimplifiedVisitor.java +834 -0
- data/lib/proguard4.7/src/proguard/classfile/util/StringReferenceInitializer.java +90 -0
- data/lib/proguard4.7/src/proguard/classfile/util/StringSharer.java +172 -0
- data/lib/proguard4.7/src/proguard/classfile/util/WarningPrinter.java +136 -0
- data/lib/proguard4.7/src/proguard/classfile/util/package.html +3 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/AllClassVisitor.java +47 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/AllFieldVisitor.java +55 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/AllMemberVisitor.java +57 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/AllMethodVisitor.java +55 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/BottomClassFilter.java +69 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ClassAccessFilter.java +88 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ClassCleaner.java +275 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ClassCollector.java +58 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ClassCounter.java +56 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ClassHierarchyTraveler.java +91 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ClassNameFilter.java +112 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ClassPoolFiller.java +55 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ClassPoolVisitor.java +37 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ClassPresenceFilter.java +93 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ClassPrinter.java +1011 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ClassVersionFilter.java +85 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ClassVersionSetter.java +83 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ClassVisitor.java +36 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ConcreteClassDownTraveler.java +100 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/DotClassClassVisitor.java +89 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ExceptClassFilter.java +69 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ExceptClassesFilter.java +90 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ExceptionCounter.java +52 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ExceptionExcludedOffsetFilter.java +64 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ExceptionHandlerConstantVisitor.java +62 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ExceptionHandlerFilter.java +70 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ExceptionOffsetFilter.java +64 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ExceptionRangeFilter.java +68 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ImplementedClassConstantFilter.java +69 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ImplementedClassFilter.java +71 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ImplementingClassConstantFilter.java +70 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/LibraryClassFilter.java +60 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/LibraryMemberFilter.java +73 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/MemberAccessFilter.java +122 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/MemberClassAccessFilter.java +106 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/MemberCollector.java +59 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/MemberCounter.java +72 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/MemberDescriptorFilter.java +113 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/MemberNameFilter.java +113 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/MemberToClassVisitor.java +90 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/MemberVisitor.java +40 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/MethodImplementationFilter.java +70 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/MethodImplementationTraveler.java +128 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/MultiClassPoolVisitor.java +88 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/MultiClassVisitor.java +97 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/MultiMemberVisitor.java +113 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/NamedClassVisitor.java +49 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/NamedFieldVisitor.java +61 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/NamedMethodVisitor.java +61 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ProgramClassFilter.java +60 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ProgramMemberFilter.java +73 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ReferencedClassVisitor.java +255 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ReferencedMemberVisitor.java +73 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/SimilarMemberVisitor.java +125 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/SimpleClassPrinter.java +167 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/SubclassFilter.java +91 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/SubclassTraveler.java +60 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/VariableClassVisitor.java +78 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/VariableMemberVisitor.java +96 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/package.html +40 -0
- data/lib/proguard4.7/src/proguard/evaluation/BasicBranchUnit.java +126 -0
- data/lib/proguard4.7/src/proguard/evaluation/BasicInvocationUnit.java +425 -0
- data/lib/proguard4.7/src/proguard/evaluation/BranchUnit.java +63 -0
- data/lib/proguard4.7/src/proguard/evaluation/ClassConstantValueFactory.java +53 -0
- data/lib/proguard4.7/src/proguard/evaluation/ConstantValueFactory.java +113 -0
- data/lib/proguard4.7/src/proguard/evaluation/InvocationUnit.java +62 -0
- data/lib/proguard4.7/src/proguard/evaluation/Processor.java +908 -0
- data/lib/proguard4.7/src/proguard/evaluation/Stack.java +560 -0
- data/lib/proguard4.7/src/proguard/evaluation/TracedStack.java +342 -0
- data/lib/proguard4.7/src/proguard/evaluation/TracedVariables.java +199 -0
- data/lib/proguard4.7/src/proguard/evaluation/Variables.java +347 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/Category1Value.java +41 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/Category2Value.java +41 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ComparisonValue.java +69 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/CompositeDoubleValue.java +81 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/CompositeFloatValue.java +81 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/CompositeIntegerValue.java +87 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/CompositeLongValue.java +87 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ConvertedByteValue.java +64 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ConvertedCharacterValue.java +64 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ConvertedDoubleValue.java +64 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ConvertedFloatValue.java +64 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ConvertedIntegerValue.java +64 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ConvertedLongValue.java +64 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ConvertedShortValue.java +64 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/DoubleValue.java +359 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/FloatValue.java +359 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/IdentifiedDoubleValue.java +67 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/IdentifiedFloatValue.java +67 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/IdentifiedIntegerValue.java +67 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/IdentifiedLongValue.java +67 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/IdentifiedReferenceValue.java +102 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/IdentifiedValueFactory.java +75 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/InstructionOffsetValue.java +307 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/IntegerValue.java +1002 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/LongValue.java +554 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/NegatedDoubleValue.java +71 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/NegatedFloatValue.java +71 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/NegatedIntegerValue.java +71 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/NegatedLongValue.java +71 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ParticularDoubleValue.java +216 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ParticularFloatValue.java +216 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ParticularIntegerValue.java +383 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ParticularLongValue.java +271 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ReferenceValue.java +540 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/SpecificDoubleValue.java +186 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/SpecificFloatValue.java +186 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/SpecificIntegerValue.java +354 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/SpecificLongValue.java +259 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/SpecificValueFactory.java +97 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/TopValue.java +79 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/UnknownDoubleValue.java +125 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/UnknownFloatValue.java +125 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/UnknownIntegerValue.java +216 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/UnknownLongValue.java +160 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/Value.java +169 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ValueFactory.java +193 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/package.html +3 -0
- data/lib/proguard4.7/src/proguard/gui/ClassPathPanel.java +441 -0
- data/lib/proguard4.7/src/proguard/gui/ClassSpecificationDialog.java +546 -0
- data/lib/proguard4.7/src/proguard/gui/ClassSpecificationsPanel.java +231 -0
- data/lib/proguard4.7/src/proguard/gui/ExtensionFileFilter.java +78 -0
- data/lib/proguard4.7/src/proguard/gui/FilterBuilder.java +208 -0
- data/lib/proguard4.7/src/proguard/gui/FilterDialog.java +320 -0
- data/lib/proguard4.7/src/proguard/gui/GUIResources.java +56 -0
- data/lib/proguard4.7/src/proguard/gui/GUIResources.properties +643 -0
- data/lib/proguard4.7/src/proguard/gui/KeepSpecificationsPanel.java +81 -0
- data/lib/proguard4.7/src/proguard/gui/ListPanel.java +341 -0
- data/lib/proguard4.7/src/proguard/gui/MANIFEST.MF +3 -0
- data/lib/proguard4.7/src/proguard/gui/MemberSpecificationDialog.java +509 -0
- data/lib/proguard4.7/src/proguard/gui/MemberSpecificationsPanel.java +304 -0
- data/lib/proguard4.7/src/proguard/gui/MessageDialogRunnable.java +90 -0
- data/lib/proguard4.7/src/proguard/gui/OptimizationsDialog.java +251 -0
- data/lib/proguard4.7/src/proguard/gui/ProGuardGUI.java +1777 -0
- data/lib/proguard4.7/src/proguard/gui/ProGuardRunnable.java +154 -0
- data/lib/proguard4.7/src/proguard/gui/ReTraceRunnable.java +149 -0
- data/lib/proguard4.7/src/proguard/gui/SwingUtil.java +82 -0
- data/lib/proguard4.7/src/proguard/gui/TabbedPane.java +229 -0
- data/lib/proguard4.7/src/proguard/gui/TextAreaOutputStream.java +81 -0
- data/lib/proguard4.7/src/proguard/gui/arrow.gif +0 -0
- data/lib/proguard4.7/src/proguard/gui/boilerplate.pro +410 -0
- data/lib/proguard4.7/src/proguard/gui/default.pro +318 -0
- data/lib/proguard4.7/src/proguard/gui/package.html +3 -0
- data/lib/proguard4.7/src/proguard/gui/splash/BufferedSprite.java +145 -0
- data/lib/proguard4.7/src/proguard/gui/splash/CircleSprite.java +74 -0
- data/lib/proguard4.7/src/proguard/gui/splash/ClipSprite.java +85 -0
- data/lib/proguard4.7/src/proguard/gui/splash/ColorSprite.java +65 -0
- data/lib/proguard4.7/src/proguard/gui/splash/CompositeSprite.java +56 -0
- data/lib/proguard4.7/src/proguard/gui/splash/ConstantColor.java +51 -0
- data/lib/proguard4.7/src/proguard/gui/splash/ConstantDouble.java +49 -0
- data/lib/proguard4.7/src/proguard/gui/splash/ConstantFont.java +46 -0
- data/lib/proguard4.7/src/proguard/gui/splash/ConstantInt.java +49 -0
- data/lib/proguard4.7/src/proguard/gui/splash/ConstantString.java +49 -0
- data/lib/proguard4.7/src/proguard/gui/splash/ConstantTiming.java +57 -0
- data/lib/proguard4.7/src/proguard/gui/splash/FontSprite.java +65 -0
- data/lib/proguard4.7/src/proguard/gui/splash/ImageSprite.java +76 -0
- data/lib/proguard4.7/src/proguard/gui/splash/LinearColor.java +72 -0
- data/lib/proguard4.7/src/proguard/gui/splash/LinearDouble.java +55 -0
- data/lib/proguard4.7/src/proguard/gui/splash/LinearInt.java +55 -0
- data/lib/proguard4.7/src/proguard/gui/splash/LinearTiming.java +55 -0
- data/lib/proguard4.7/src/proguard/gui/splash/OverrideGraphics2D.java +598 -0
- data/lib/proguard4.7/src/proguard/gui/splash/RectangleSprite.java +114 -0
- data/lib/proguard4.7/src/proguard/gui/splash/SawToothTiming.java +53 -0
- data/lib/proguard4.7/src/proguard/gui/splash/ShadowedSprite.java +109 -0
- data/lib/proguard4.7/src/proguard/gui/splash/SineTiming.java +53 -0
- data/lib/proguard4.7/src/proguard/gui/splash/SmoothTiming.java +66 -0
- data/lib/proguard4.7/src/proguard/gui/splash/SplashPanel.java +235 -0
- data/lib/proguard4.7/src/proguard/gui/splash/Sprite.java +41 -0
- data/lib/proguard4.7/src/proguard/gui/splash/TextSprite.java +89 -0
- data/lib/proguard4.7/src/proguard/gui/splash/TimeSwitchSprite.java +75 -0
- data/lib/proguard4.7/src/proguard/gui/splash/Timing.java +34 -0
- data/lib/proguard4.7/src/proguard/gui/splash/TypeWriterString.java +71 -0
- data/lib/proguard4.7/src/proguard/gui/splash/VariableColor.java +36 -0
- data/lib/proguard4.7/src/proguard/gui/splash/VariableDouble.java +34 -0
- data/lib/proguard4.7/src/proguard/gui/splash/VariableFont.java +36 -0
- data/lib/proguard4.7/src/proguard/gui/splash/VariableInt.java +34 -0
- data/lib/proguard4.7/src/proguard/gui/splash/VariableSizeFont.java +65 -0
- data/lib/proguard4.7/src/proguard/gui/splash/VariableString.java +34 -0
- data/lib/proguard4.7/src/proguard/gui/splash/package.html +4 -0
- data/lib/proguard4.7/src/proguard/gui/vtitle.png +0 -0
- data/lib/proguard4.7/src/proguard/io/CascadingDataEntryWriter.java +94 -0
- data/lib/proguard4.7/src/proguard/io/ClassFilter.java +59 -0
- data/lib/proguard4.7/src/proguard/io/ClassReader.java +115 -0
- data/lib/proguard4.7/src/proguard/io/ClassRewriter.java +80 -0
- data/lib/proguard4.7/src/proguard/io/DataEntry.java +62 -0
- data/lib/proguard4.7/src/proguard/io/DataEntryClassWriter.java +85 -0
- data/lib/proguard4.7/src/proguard/io/DataEntryCopier.java +247 -0
- data/lib/proguard4.7/src/proguard/io/DataEntryDirectoryFilter.java +40 -0
- data/lib/proguard4.7/src/proguard/io/DataEntryFilter.java +38 -0
- data/lib/proguard4.7/src/proguard/io/DataEntryNameFilter.java +54 -0
- data/lib/proguard4.7/src/proguard/io/DataEntryObfuscator.java +150 -0
- data/lib/proguard4.7/src/proguard/io/DataEntryParentFilter.java +51 -0
- data/lib/proguard4.7/src/proguard/io/DataEntryPump.java +43 -0
- data/lib/proguard4.7/src/proguard/io/DataEntryReader.java +38 -0
- data/lib/proguard4.7/src/proguard/io/DataEntryRenamer.java +104 -0
- data/lib/proguard4.7/src/proguard/io/DataEntryRewriter.java +148 -0
- data/lib/proguard4.7/src/proguard/io/DataEntryWriter.java +73 -0
- data/lib/proguard4.7/src/proguard/io/DirectoryFilter.java +58 -0
- data/lib/proguard4.7/src/proguard/io/DirectoryPump.java +78 -0
- data/lib/proguard4.7/src/proguard/io/DirectoryWriter.java +165 -0
- data/lib/proguard4.7/src/proguard/io/FileDataEntry.java +96 -0
- data/lib/proguard4.7/src/proguard/io/FilteredDataEntryReader.java +90 -0
- data/lib/proguard4.7/src/proguard/io/FilteredDataEntryWriter.java +125 -0
- data/lib/proguard4.7/src/proguard/io/Finisher.java +37 -0
- data/lib/proguard4.7/src/proguard/io/JarReader.java +75 -0
- data/lib/proguard4.7/src/proguard/io/JarWriter.java +235 -0
- data/lib/proguard4.7/src/proguard/io/ManifestRewriter.java +216 -0
- data/lib/proguard4.7/src/proguard/io/NameFilter.java +83 -0
- data/lib/proguard4.7/src/proguard/io/ParentDataEntryWriter.java +75 -0
- data/lib/proguard4.7/src/proguard/io/RenamedDataEntry.java +83 -0
- data/lib/proguard4.7/src/proguard/io/ZipDataEntry.java +98 -0
- data/lib/proguard4.7/src/proguard/io/package.html +4 -0
- data/lib/proguard4.7/src/proguard/obfuscate/AttributeShrinker.java +120 -0
- data/lib/proguard4.7/src/proguard/obfuscate/AttributeUsageMarker.java +71 -0
- data/lib/proguard4.7/src/proguard/obfuscate/ClassObfuscator.java +533 -0
- data/lib/proguard4.7/src/proguard/obfuscate/ClassRenamer.java +109 -0
- data/lib/proguard4.7/src/proguard/obfuscate/DictionaryNameFactory.java +189 -0
- data/lib/proguard4.7/src/proguard/obfuscate/MapCleaner.java +57 -0
- data/lib/proguard4.7/src/proguard/obfuscate/MappingKeeper.java +177 -0
- data/lib/proguard4.7/src/proguard/obfuscate/MappingPrinter.java +147 -0
- data/lib/proguard4.7/src/proguard/obfuscate/MappingProcessor.java +79 -0
- data/lib/proguard4.7/src/proguard/obfuscate/MappingReader.java +199 -0
- data/lib/proguard4.7/src/proguard/obfuscate/MemberNameCleaner.java +60 -0
- data/lib/proguard4.7/src/proguard/obfuscate/MemberNameCollector.java +106 -0
- data/lib/proguard4.7/src/proguard/obfuscate/MemberNameConflictFixer.java +159 -0
- data/lib/proguard4.7/src/proguard/obfuscate/MemberNameFilter.java +120 -0
- data/lib/proguard4.7/src/proguard/obfuscate/MemberObfuscator.java +230 -0
- data/lib/proguard4.7/src/proguard/obfuscate/MemberSpecialNameFilter.java +101 -0
- data/lib/proguard4.7/src/proguard/obfuscate/MultiMappingProcessor.java +96 -0
- data/lib/proguard4.7/src/proguard/obfuscate/NameFactory.java +34 -0
- data/lib/proguard4.7/src/proguard/obfuscate/NameFactoryResetter.java +59 -0
- data/lib/proguard4.7/src/proguard/obfuscate/NameMarker.java +166 -0
- data/lib/proguard4.7/src/proguard/obfuscate/NumericNameFactory.java +49 -0
- data/lib/proguard4.7/src/proguard/obfuscate/Obfuscator.java +445 -0
- data/lib/proguard4.7/src/proguard/obfuscate/ParameterNameMarker.java +128 -0
- data/lib/proguard4.7/src/proguard/obfuscate/SimpleNameFactory.java +156 -0
- data/lib/proguard4.7/src/proguard/obfuscate/SourceFileRenamer.java +84 -0
- data/lib/proguard4.7/src/proguard/obfuscate/SpecialNameFactory.java +83 -0
- data/lib/proguard4.7/src/proguard/obfuscate/package.html +3 -0
- data/lib/proguard4.7/src/proguard/optimize/BootstrapMethodArgumentShrinker.java +103 -0
- data/lib/proguard4.7/src/proguard/optimize/ChangedCodePrinter.java +297 -0
- data/lib/proguard4.7/src/proguard/optimize/ConstantMemberFilter.java +77 -0
- data/lib/proguard4.7/src/proguard/optimize/ConstantParameterFilter.java +79 -0
- data/lib/proguard4.7/src/proguard/optimize/DuplicateInitializerFixer.java +215 -0
- data/lib/proguard4.7/src/proguard/optimize/DuplicateInitializerInvocationFixer.java +161 -0
- data/lib/proguard4.7/src/proguard/optimize/KeepMarker.java +95 -0
- data/lib/proguard4.7/src/proguard/optimize/KeptClassFilter.java +69 -0
- data/lib/proguard4.7/src/proguard/optimize/KeptMemberFilter.java +88 -0
- data/lib/proguard4.7/src/proguard/optimize/MemberDescriptorSpecializer.java +138 -0
- data/lib/proguard4.7/src/proguard/optimize/MethodDescriptorShrinker.java +317 -0
- data/lib/proguard4.7/src/proguard/optimize/MethodStaticizer.java +87 -0
- data/lib/proguard4.7/src/proguard/optimize/OptimizationInfoMemberFilter.java +94 -0
- data/lib/proguard4.7/src/proguard/optimize/Optimizer.java +963 -0
- data/lib/proguard4.7/src/proguard/optimize/ParameterShrinker.java +146 -0
- data/lib/proguard4.7/src/proguard/optimize/TailRecursionSimplifier.java +356 -0
- data/lib/proguard4.7/src/proguard/optimize/WriteOnlyFieldFilter.java +65 -0
- data/lib/proguard4.7/src/proguard/optimize/evaluation/EvaluationShrinker.java +2082 -0
- data/lib/proguard4.7/src/proguard/optimize/evaluation/EvaluationSimplifier.java +973 -0
- data/lib/proguard4.7/src/proguard/optimize/evaluation/LivenessAnalyzer.java +526 -0
- data/lib/proguard4.7/src/proguard/optimize/evaluation/LoadingInvocationUnit.java +195 -0
- data/lib/proguard4.7/src/proguard/optimize/evaluation/PartialEvaluator.java +1282 -0
- data/lib/proguard4.7/src/proguard/optimize/evaluation/StoringInvocationUnit.java +207 -0
- data/lib/proguard4.7/src/proguard/optimize/evaluation/TracedBranchUnit.java +59 -0
- data/lib/proguard4.7/src/proguard/optimize/evaluation/VariableOptimizer.java +345 -0
- data/lib/proguard4.7/src/proguard/optimize/evaluation/package.html +4 -0
- data/lib/proguard4.7/src/proguard/optimize/info/AccessMethodMarker.java +202 -0
- data/lib/proguard4.7/src/proguard/optimize/info/BackwardBranchMarker.java +90 -0
- data/lib/proguard4.7/src/proguard/optimize/info/CatchExceptionMarker.java +69 -0
- data/lib/proguard4.7/src/proguard/optimize/info/CaughtClassFilter.java +63 -0
- data/lib/proguard4.7/src/proguard/optimize/info/CaughtClassMarker.java +64 -0
- data/lib/proguard4.7/src/proguard/optimize/info/ClassOptimizationInfo.java +165 -0
- data/lib/proguard4.7/src/proguard/optimize/info/ClassOptimizationInfoSetter.java +47 -0
- data/lib/proguard4.7/src/proguard/optimize/info/DotClassFilter.java +63 -0
- data/lib/proguard4.7/src/proguard/optimize/info/DotClassMarker.java +96 -0
- data/lib/proguard4.7/src/proguard/optimize/info/ExceptionInstructionChecker.java +193 -0
- data/lib/proguard4.7/src/proguard/optimize/info/FieldOptimizationInfo.java +204 -0
- data/lib/proguard4.7/src/proguard/optimize/info/InstanceofClassFilter.java +63 -0
- data/lib/proguard4.7/src/proguard/optimize/info/InstanceofClassMarker.java +93 -0
- data/lib/proguard4.7/src/proguard/optimize/info/InstantiationClassFilter.java +62 -0
- data/lib/proguard4.7/src/proguard/optimize/info/InstantiationClassMarker.java +93 -0
- data/lib/proguard4.7/src/proguard/optimize/info/MemberOptimizationInfoSetter.java +59 -0
- data/lib/proguard4.7/src/proguard/optimize/info/MethodInvocationMarker.java +107 -0
- data/lib/proguard4.7/src/proguard/optimize/info/MethodOptimizationInfo.java +302 -0
- data/lib/proguard4.7/src/proguard/optimize/info/NoSideEffectMethodMarker.java +91 -0
- data/lib/proguard4.7/src/proguard/optimize/info/NonPrivateMemberMarker.java +171 -0
- data/lib/proguard4.7/src/proguard/optimize/info/PackageVisibleMemberContainingClassMarker.java +85 -0
- data/lib/proguard4.7/src/proguard/optimize/info/PackageVisibleMemberInvokingClassMarker.java +129 -0
- data/lib/proguard4.7/src/proguard/optimize/info/ParameterUsageMarker.java +285 -0
- data/lib/proguard4.7/src/proguard/optimize/info/ReadWriteFieldMarker.java +163 -0
- data/lib/proguard4.7/src/proguard/optimize/info/SideEffectInstructionChecker.java +245 -0
- data/lib/proguard4.7/src/proguard/optimize/info/SideEffectMethodMarker.java +175 -0
- data/lib/proguard4.7/src/proguard/optimize/info/StaticInitializerContainingClassFilter.java +62 -0
- data/lib/proguard4.7/src/proguard/optimize/info/StaticInitializerContainingClassMarker.java +65 -0
- data/lib/proguard4.7/src/proguard/optimize/info/SuperInvocationMarker.java +93 -0
- data/lib/proguard4.7/src/proguard/optimize/info/VariableUsageMarker.java +96 -0
- data/lib/proguard4.7/src/proguard/optimize/info/package.html +4 -0
- data/lib/proguard4.7/src/proguard/optimize/package.html +4 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/BranchTargetFinder.java +687 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/ClassFinalizer.java +84 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/ClassMerger.java +576 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/GotoCommonCodeReplacer.java +266 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/GotoGotoReplacer.java +115 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/GotoReturnReplacer.java +115 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/HorizontalClassMerger.java +90 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/InstructionSequenceConstants.java +4424 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/InstructionSequenceReplacer.java +420 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/InstructionSequencesReplacer.java +138 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/MemberPrivatizer.java +103 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/MethodFinalizer.java +93 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/MethodInliner.java +597 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/NopRemover.java +89 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/PeepholeOptimizer.java +103 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/ReachableCodeMarker.java +262 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/RetargetedInnerClassAttributeRemover.java +170 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/TargetClassChanger.java +455 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/UnreachableCodeRemover.java +143 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/UnreachableExceptionRemover.java +163 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/VariableShrinker.java +129 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/VerticalClassMerger.java +88 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/package.html +3 -0
- data/lib/proguard4.7/src/proguard/package.html +5 -0
- data/lib/proguard4.7/src/proguard/preverify/CodePreverifier.java +611 -0
- data/lib/proguard4.7/src/proguard/preverify/CodeSubroutineInliner.java +406 -0
- data/lib/proguard4.7/src/proguard/preverify/Preverifier.java +73 -0
- data/lib/proguard4.7/src/proguard/preverify/SubroutineInliner.java +73 -0
- data/lib/proguard4.7/src/proguard/retrace/MANIFEST.MF +3 -0
- data/lib/proguard4.7/src/proguard/retrace/ReTrace.java +749 -0
- data/lib/proguard4.7/src/proguard/retrace/package.html +4 -0
- data/lib/proguard4.7/src/proguard/shrink/AnnotationUsageMarker.java +333 -0
- data/lib/proguard4.7/src/proguard/shrink/ClassShrinker.java +458 -0
- data/lib/proguard4.7/src/proguard/shrink/InnerUsageMarker.java +174 -0
- data/lib/proguard4.7/src/proguard/shrink/InterfaceUsageMarker.java +152 -0
- data/lib/proguard4.7/src/proguard/shrink/ShortestUsageMark.java +183 -0
- data/lib/proguard4.7/src/proguard/shrink/ShortestUsageMarker.java +277 -0
- data/lib/proguard4.7/src/proguard/shrink/ShortestUsagePrinter.java +210 -0
- data/lib/proguard4.7/src/proguard/shrink/Shrinker.java +181 -0
- data/lib/proguard4.7/src/proguard/shrink/UsageMarker.java +1036 -0
- data/lib/proguard4.7/src/proguard/shrink/UsagePrinter.java +177 -0
- data/lib/proguard4.7/src/proguard/shrink/UsedClassFilter.java +74 -0
- data/lib/proguard4.7/src/proguard/shrink/UsedMemberFilter.java +93 -0
- data/lib/proguard4.7/src/proguard/shrink/package.html +3 -0
- data/lib/proguard4.7/src/proguard/util/AndMatcher.java +49 -0
- data/lib/proguard4.7/src/proguard/util/ClassNameParser.java +216 -0
- data/lib/proguard4.7/src/proguard/util/ConstantMatcher.java +48 -0
- data/lib/proguard4.7/src/proguard/util/EmptyStringMatcher.java +36 -0
- data/lib/proguard4.7/src/proguard/util/ExtensionMatcher.java +63 -0
- data/lib/proguard4.7/src/proguard/util/FileNameParser.java +121 -0
- data/lib/proguard4.7/src/proguard/util/FixedStringMatcher.java +56 -0
- data/lib/proguard4.7/src/proguard/util/ListMatcher.java +69 -0
- data/lib/proguard4.7/src/proguard/util/ListParser.java +137 -0
- data/lib/proguard4.7/src/proguard/util/ListUtil.java +180 -0
- data/lib/proguard4.7/src/proguard/util/NameParser.java +106 -0
- data/lib/proguard4.7/src/proguard/util/NotMatcher.java +46 -0
- data/lib/proguard4.7/src/proguard/util/OrMatcher.java +49 -0
- data/lib/proguard4.7/src/proguard/util/SettableMatcher.java +46 -0
- data/lib/proguard4.7/src/proguard/util/StringMatcher.java +38 -0
- data/lib/proguard4.7/src/proguard/util/StringParser.java +35 -0
- data/lib/proguard4.7/src/proguard/util/VariableStringMatcher.java +126 -0
- data/lib/proguard4.7/src/proguard/util/package.html +3 -0
- data/lib/proguard4.7/src/proguard/wtk/ProGuardObfuscator.java +141 -0
- data/lib/proguard4.7/src/proguard/wtk/default.pro +114 -0
- data/lib/proguard4.7/src/proguard/wtk/package.html +3 -0
- metadata +960 -10
|
@@ -0,0 +1,1002 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* ProGuard -- shrinking, optimization, obfuscation, and preverification
|
|
3
|
+
* of Java bytecode.
|
|
4
|
+
*
|
|
5
|
+
* Copyright (c) 2002-2011 Eric Lafortune (eric@graphics.cornell.edu)
|
|
6
|
+
*
|
|
7
|
+
* This program is free software; you can redistribute it and/or modify it
|
|
8
|
+
* under the terms of the GNU General Public License as published by the Free
|
|
9
|
+
* Software Foundation; either version 2 of the License, or (at your option)
|
|
10
|
+
* any later version.
|
|
11
|
+
*
|
|
12
|
+
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
13
|
+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
14
|
+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
15
|
+
* more details.
|
|
16
|
+
*
|
|
17
|
+
* You should have received a copy of the GNU General Public License along
|
|
18
|
+
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
19
|
+
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
20
|
+
*/
|
|
21
|
+
package proguard.evaluation.value;
|
|
22
|
+
|
|
23
|
+
import proguard.classfile.ClassConstants;
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* This class represents a partially evaluated integer value.
|
|
27
|
+
*
|
|
28
|
+
* @author Eric Lafortune
|
|
29
|
+
*/
|
|
30
|
+
public abstract class IntegerValue extends Category1Value
|
|
31
|
+
{
|
|
32
|
+
/**
|
|
33
|
+
* Returns the specific integer value, if applicable.
|
|
34
|
+
*/
|
|
35
|
+
public int value()
|
|
36
|
+
{
|
|
37
|
+
return 0;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
// Basic unary methods.
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* Returns the negated value of this IntegerValue.
|
|
45
|
+
*/
|
|
46
|
+
public abstract IntegerValue negate();
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Converts this IntegerValue to a byte IntegerValue.
|
|
50
|
+
*/
|
|
51
|
+
public abstract IntegerValue convertToByte();
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* Converts this IntegerValue to a character IntegerValue.
|
|
55
|
+
*/
|
|
56
|
+
public abstract IntegerValue convertToCharacter();
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* Converts this IntegerValue to a short IntegerValue.
|
|
60
|
+
*/
|
|
61
|
+
public abstract IntegerValue convertToShort();
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* Converts this IntegerValue to a LongValue.
|
|
65
|
+
*/
|
|
66
|
+
public abstract LongValue convertToLong();
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* Converts this IntegerValue to a FloatValue.
|
|
70
|
+
*/
|
|
71
|
+
public abstract FloatValue convertToFloat();
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* Converts this IntegerValue to a DoubleValue.
|
|
75
|
+
*/
|
|
76
|
+
public abstract DoubleValue convertToDouble();
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
// Basic binary methods.
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* Returns the generalization of this IntegerValue and the given other
|
|
83
|
+
* IntegerValue.
|
|
84
|
+
*/
|
|
85
|
+
public abstract IntegerValue generalize(IntegerValue other);
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* Returns the sum of this IntegerValue and the given IntegerValue.
|
|
89
|
+
*/
|
|
90
|
+
public abstract IntegerValue add(IntegerValue other);
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* Returns the difference of this IntegerValue and the given IntegerValue.
|
|
94
|
+
*/
|
|
95
|
+
public abstract IntegerValue subtract(IntegerValue other);
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* Returns the difference of the given IntegerValue and this IntegerValue.
|
|
99
|
+
*/
|
|
100
|
+
public abstract IntegerValue subtractFrom(IntegerValue other);
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
* Returns the product of this IntegerValue and the given IntegerValue.
|
|
104
|
+
*/
|
|
105
|
+
public abstract IntegerValue multiply(IntegerValue other)
|
|
106
|
+
throws ArithmeticException;
|
|
107
|
+
|
|
108
|
+
/**
|
|
109
|
+
* Returns the quotient of this IntegerValue and the given IntegerValue.
|
|
110
|
+
*/
|
|
111
|
+
public abstract IntegerValue divide(IntegerValue other)
|
|
112
|
+
throws ArithmeticException;
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
* Returns the quotient of the given IntegerValue and this IntegerValue.
|
|
116
|
+
*/
|
|
117
|
+
public abstract IntegerValue divideOf(IntegerValue other)
|
|
118
|
+
throws ArithmeticException;
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* Returns the remainder of this IntegerValue divided by the given
|
|
122
|
+
* IntegerValue.
|
|
123
|
+
*/
|
|
124
|
+
public abstract IntegerValue remainder(IntegerValue other)
|
|
125
|
+
throws ArithmeticException;
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* Returns the remainder of the given IntegerValue divided by this
|
|
129
|
+
* IntegerValue.
|
|
130
|
+
*/
|
|
131
|
+
public abstract IntegerValue remainderOf(IntegerValue other)
|
|
132
|
+
throws ArithmeticException;
|
|
133
|
+
|
|
134
|
+
/**
|
|
135
|
+
* Returns this IntegerValue, shifted left by the given IntegerValue.
|
|
136
|
+
*/
|
|
137
|
+
public abstract IntegerValue shiftLeft(IntegerValue other);
|
|
138
|
+
|
|
139
|
+
/**
|
|
140
|
+
* Returns this IntegerValue, shifted right by the given IntegerValue.
|
|
141
|
+
*/
|
|
142
|
+
public abstract IntegerValue shiftRight(IntegerValue other);
|
|
143
|
+
|
|
144
|
+
/**
|
|
145
|
+
* Returns this unsigned IntegerValue, shifted left by the given
|
|
146
|
+
* IntegerValue.
|
|
147
|
+
*/
|
|
148
|
+
public abstract IntegerValue unsignedShiftRight(IntegerValue other);
|
|
149
|
+
|
|
150
|
+
/**
|
|
151
|
+
* Returns the given IntegerValue, shifted left by this IntegerValue.
|
|
152
|
+
*/
|
|
153
|
+
public abstract IntegerValue shiftLeftOf(IntegerValue other);
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* Returns the given IntegerValue, shifted right by this IntegerValue.
|
|
157
|
+
*/
|
|
158
|
+
public abstract IntegerValue shiftRightOf(IntegerValue other);
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
* Returns the given unsigned IntegerValue, shifted left by this
|
|
162
|
+
* IntegerValue.
|
|
163
|
+
*/
|
|
164
|
+
public abstract IntegerValue unsignedShiftRightOf(IntegerValue other);
|
|
165
|
+
|
|
166
|
+
/**
|
|
167
|
+
* Returns the given LongValue, shifted left by this IntegerValue.
|
|
168
|
+
*/
|
|
169
|
+
public abstract LongValue shiftLeftOf(LongValue other);
|
|
170
|
+
|
|
171
|
+
/**
|
|
172
|
+
* Returns the given LongValue, shifted right by this IntegerValue.
|
|
173
|
+
*/
|
|
174
|
+
public abstract LongValue shiftRightOf(LongValue other);
|
|
175
|
+
|
|
176
|
+
/**
|
|
177
|
+
* Returns the given unsigned LongValue, shifted right by this IntegerValue.
|
|
178
|
+
*/
|
|
179
|
+
public abstract LongValue unsignedShiftRightOf(LongValue other);
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
* Returns the logical <i>and</i> of this IntegerValue and the given
|
|
183
|
+
* IntegerValue.
|
|
184
|
+
*/
|
|
185
|
+
public abstract IntegerValue and(IntegerValue other);
|
|
186
|
+
|
|
187
|
+
/**
|
|
188
|
+
* Returns the logical <i>or</i> of this IntegerValue and the given
|
|
189
|
+
* IntegerValue.
|
|
190
|
+
*/
|
|
191
|
+
public abstract IntegerValue or(IntegerValue other);
|
|
192
|
+
|
|
193
|
+
/**
|
|
194
|
+
* Returns the logical <i>xor</i> of this IntegerValue and the given
|
|
195
|
+
* IntegerValue.
|
|
196
|
+
*/
|
|
197
|
+
public abstract IntegerValue xor(IntegerValue other);
|
|
198
|
+
|
|
199
|
+
/**
|
|
200
|
+
* Returns whether this IntegerValue and the given IntegerValue are equal:
|
|
201
|
+
* <code>NEVER</code>, <code>MAYBE</code>, or <code>ALWAYS</code>.
|
|
202
|
+
*/
|
|
203
|
+
public abstract int equal(IntegerValue other);
|
|
204
|
+
|
|
205
|
+
/**
|
|
206
|
+
* Returns whether this IntegerValue is less than the given IntegerValue:
|
|
207
|
+
* <code>NEVER</code>, <code>MAYBE</code>, or <code>ALWAYS</code>.
|
|
208
|
+
*/
|
|
209
|
+
public abstract int lessThan(IntegerValue other);
|
|
210
|
+
|
|
211
|
+
/**
|
|
212
|
+
* Returns whether this IntegerValue is less than or equal to the given
|
|
213
|
+
* IntegerValue: <code>NEVER</code>, <code>MAYBE</code>, or
|
|
214
|
+
* <code>ALWAYS</code>.
|
|
215
|
+
*/
|
|
216
|
+
public abstract int lessThanOrEqual(IntegerValue other);
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
// Derived binary methods.
|
|
220
|
+
|
|
221
|
+
/**
|
|
222
|
+
* Returns whether this IntegerValue and the given IntegerValue are different:
|
|
223
|
+
* <code>NEVER</code>, <code>MAYBE</code>, or <code>ALWAYS</code>.
|
|
224
|
+
*/
|
|
225
|
+
public final int notEqual(IntegerValue other)
|
|
226
|
+
{
|
|
227
|
+
return -equal(other);
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
/**
|
|
231
|
+
* Returns whether this IntegerValue is greater than the given IntegerValue:
|
|
232
|
+
* <code>NEVER</code>, <code>MAYBE</code>, or <code>ALWAYS</code>.
|
|
233
|
+
*/
|
|
234
|
+
public final int greaterThan(IntegerValue other)
|
|
235
|
+
{
|
|
236
|
+
return -lessThanOrEqual(other);
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
/**
|
|
240
|
+
* Returns whether this IntegerValue is greater than or equal to the given IntegerValue:
|
|
241
|
+
* <code>NEVER</code>, <code>MAYBE</code>, or <code>ALWAYS</code>.
|
|
242
|
+
*/
|
|
243
|
+
public final int greaterThanOrEqual(IntegerValue other)
|
|
244
|
+
{
|
|
245
|
+
return -lessThan(other);
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
// Similar binary methods, but this time with unknown arguments.
|
|
250
|
+
|
|
251
|
+
/**
|
|
252
|
+
* Returns the generalization of this IntegerValue and the given other
|
|
253
|
+
* UnknownIntegerValue.
|
|
254
|
+
*/
|
|
255
|
+
public IntegerValue generalize(UnknownIntegerValue other)
|
|
256
|
+
{
|
|
257
|
+
return generalize((IntegerValue)other);
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
/**
|
|
262
|
+
* Returns the sum of this IntegerValue and the given UnknownIntegerValue.
|
|
263
|
+
*/
|
|
264
|
+
public IntegerValue add(UnknownIntegerValue other)
|
|
265
|
+
{
|
|
266
|
+
return add((IntegerValue)other);
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
/**
|
|
270
|
+
* Returns the difference of this IntegerValue and the given UnknownIntegerValue.
|
|
271
|
+
*/
|
|
272
|
+
public IntegerValue subtract(UnknownIntegerValue other)
|
|
273
|
+
{
|
|
274
|
+
return subtract((IntegerValue)other);
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
/**
|
|
278
|
+
* Returns the difference of the given UnknownIntegerValue and this IntegerValue.
|
|
279
|
+
*/
|
|
280
|
+
public IntegerValue subtractFrom(UnknownIntegerValue other)
|
|
281
|
+
{
|
|
282
|
+
return subtractFrom((IntegerValue)other);
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
/**
|
|
286
|
+
* Returns the product of this IntegerValue and the given UnknownIntegerValue.
|
|
287
|
+
*/
|
|
288
|
+
public IntegerValue multiply(UnknownIntegerValue other)
|
|
289
|
+
{
|
|
290
|
+
return multiply((IntegerValue)other);
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
/**
|
|
294
|
+
* Returns the quotient of this IntegerValue and the given
|
|
295
|
+
* UnknownIntegerValue.
|
|
296
|
+
*/
|
|
297
|
+
public IntegerValue divide(UnknownIntegerValue other)
|
|
298
|
+
{
|
|
299
|
+
return divide((IntegerValue)other);
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
/**
|
|
303
|
+
* Returns the quotient of the given UnknownIntegerValue and this
|
|
304
|
+
* IntegerValue.
|
|
305
|
+
*/
|
|
306
|
+
public IntegerValue divideOf(UnknownIntegerValue other)
|
|
307
|
+
{
|
|
308
|
+
return divideOf((IntegerValue)other);
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
/**
|
|
312
|
+
* Returns the remainder of this IntegerValue divided by the given
|
|
313
|
+
* UnknownIntegerValue.
|
|
314
|
+
*/
|
|
315
|
+
public IntegerValue remainder(UnknownIntegerValue other)
|
|
316
|
+
{
|
|
317
|
+
return remainder((IntegerValue)other);
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
/**
|
|
321
|
+
* Returns the remainder of the given UnknownIntegerValue divided by this
|
|
322
|
+
* IntegerValue.
|
|
323
|
+
*/
|
|
324
|
+
public IntegerValue remainderOf(UnknownIntegerValue other)
|
|
325
|
+
{
|
|
326
|
+
return remainderOf((IntegerValue)other);
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
/**
|
|
330
|
+
* Returns this IntegerValue, shifted left by the given UnknownIntegerValue.
|
|
331
|
+
*/
|
|
332
|
+
public IntegerValue shiftLeft(UnknownIntegerValue other)
|
|
333
|
+
{
|
|
334
|
+
return shiftLeft((IntegerValue)other);
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
/**
|
|
338
|
+
* Returns this IntegerValue, shifted right by the given UnknownIntegerValue.
|
|
339
|
+
*/
|
|
340
|
+
public IntegerValue shiftRight(UnknownIntegerValue other)
|
|
341
|
+
{
|
|
342
|
+
return shiftRight((IntegerValue)other);
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
/**
|
|
346
|
+
* Returns this unsigned IntegerValue, shifted right by the given
|
|
347
|
+
* UnknownIntegerValue.
|
|
348
|
+
*/
|
|
349
|
+
public IntegerValue unsignedShiftRight(UnknownIntegerValue other)
|
|
350
|
+
{
|
|
351
|
+
return unsignedShiftRight((IntegerValue)other);
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
/**
|
|
355
|
+
* Returns the given UnknownIntegerValue, shifted left by this IntegerValue.
|
|
356
|
+
*/
|
|
357
|
+
public IntegerValue shiftLeftOf(UnknownIntegerValue other)
|
|
358
|
+
{
|
|
359
|
+
return shiftLeftOf((IntegerValue)other);
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
/**
|
|
363
|
+
* Returns the given UnknownIntegerValue, shifted right by this IntegerValue.
|
|
364
|
+
*/
|
|
365
|
+
public IntegerValue shiftRightOf(UnknownIntegerValue other)
|
|
366
|
+
{
|
|
367
|
+
return shiftRightOf((IntegerValue)other);
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
/**
|
|
371
|
+
* Returns the given unsigned UnknownIntegerValue, shifted right by this
|
|
372
|
+
* IntegerValue.
|
|
373
|
+
*/
|
|
374
|
+
public IntegerValue unsignedShiftRightOf(UnknownIntegerValue other)
|
|
375
|
+
{
|
|
376
|
+
return unsignedShiftRightOf((IntegerValue)other);
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
/**
|
|
380
|
+
* Returns the given UnknownLongValue, shifted left by this IntegerValue.
|
|
381
|
+
*/
|
|
382
|
+
public LongValue shiftLeftOf(UnknownLongValue other)
|
|
383
|
+
{
|
|
384
|
+
return shiftLeftOf((LongValue)other);
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
/**
|
|
388
|
+
* Returns the given UnknownLongValue, shifted right by this IntegerValue.
|
|
389
|
+
*/
|
|
390
|
+
public LongValue shiftRightOf(UnknownLongValue other)
|
|
391
|
+
{
|
|
392
|
+
return shiftRightOf((LongValue)other);
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
/**
|
|
396
|
+
* Returns the given unsigned UnknownLongValue, shifted right by this
|
|
397
|
+
* IntegerValue.
|
|
398
|
+
*/
|
|
399
|
+
public LongValue unsignedShiftRightOf(UnknownLongValue other)
|
|
400
|
+
{
|
|
401
|
+
return unsignedShiftRightOf((LongValue)other);
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
/**
|
|
405
|
+
* Returns the logical <i>and</i> of this IntegerValue and the given
|
|
406
|
+
* UnknownIntegerValue.
|
|
407
|
+
*/
|
|
408
|
+
public IntegerValue and(UnknownIntegerValue other)
|
|
409
|
+
{
|
|
410
|
+
return and((IntegerValue)other);
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
/**
|
|
414
|
+
* Returns the logical <i>or</i> of this IntegerValue and the given
|
|
415
|
+
* UnknownIntegerValue.
|
|
416
|
+
*/
|
|
417
|
+
public IntegerValue or(UnknownIntegerValue other)
|
|
418
|
+
{
|
|
419
|
+
return or((IntegerValue)other);
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
/**
|
|
423
|
+
* Returns the logical <i>xor</i> of this IntegerValue and the given
|
|
424
|
+
* UnknownIntegerValue.
|
|
425
|
+
*/
|
|
426
|
+
public IntegerValue xor(UnknownIntegerValue other)
|
|
427
|
+
{
|
|
428
|
+
return xor((IntegerValue)other);
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* Returns whether this IntegerValue and the given UnknownIntegerValue are
|
|
433
|
+
* equal: <code>NEVER</code>, <code>MAYBE</code>, or <code>ALWAYS</code>.
|
|
434
|
+
*/
|
|
435
|
+
public int equal(UnknownIntegerValue other)
|
|
436
|
+
{
|
|
437
|
+
return equal((IntegerValue)other);
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
/**
|
|
441
|
+
* Returns whether this IntegerValue is less than the given
|
|
442
|
+
* UnknownIntegerValue: <code>NEVER</code>, <code>MAYBE</code>, or
|
|
443
|
+
* <code>ALWAYS</code>.
|
|
444
|
+
*/
|
|
445
|
+
public int lessThan(UnknownIntegerValue other)
|
|
446
|
+
{
|
|
447
|
+
return lessThan((IntegerValue)other);
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
/**
|
|
451
|
+
* Returns whether this IntegerValue is less than or equal to the given
|
|
452
|
+
* UnknownIntegerValue: <code>NEVER</code>, <code>MAYBE</code>, or
|
|
453
|
+
* <code>ALWAYS</code>.
|
|
454
|
+
*/
|
|
455
|
+
public int lessThanOrEqual(UnknownIntegerValue other)
|
|
456
|
+
{
|
|
457
|
+
return lessThanOrEqual((IntegerValue)other);
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
// Derived binary methods.
|
|
462
|
+
|
|
463
|
+
/**
|
|
464
|
+
* Returns whether this IntegerValue and the given UnknownIntegerValue are
|
|
465
|
+
* different: <code>NEVER</code>, <code>MAYBE</code>, or <code>ALWAYS</code>.
|
|
466
|
+
*/
|
|
467
|
+
public final int notEqual(UnknownIntegerValue other)
|
|
468
|
+
{
|
|
469
|
+
return -equal(other);
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
/**
|
|
473
|
+
* Returns whether this IntegerValue is greater than the given
|
|
474
|
+
* UnknownIntegerValue: <code>NEVER</code>, <code>MAYBE</code>, or
|
|
475
|
+
* <code>ALWAYS</code>.
|
|
476
|
+
*/
|
|
477
|
+
public final int greaterThan(UnknownIntegerValue other)
|
|
478
|
+
{
|
|
479
|
+
return -lessThanOrEqual(other);
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
/**
|
|
483
|
+
* Returns whether this IntegerValue is greater than or equal to the given
|
|
484
|
+
* UnknownIntegerValue: <code>NEVER</code>, <code>MAYBE</code>, or
|
|
485
|
+
* <code>ALWAYS</code>.
|
|
486
|
+
*/
|
|
487
|
+
public final int greaterThanOrEqual(UnknownIntegerValue other)
|
|
488
|
+
{
|
|
489
|
+
return -lessThan(other);
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
// Similar binary methods, but this time with specific arguments.
|
|
494
|
+
|
|
495
|
+
/**
|
|
496
|
+
* Returns the generalization of this IntegerValue and the given other
|
|
497
|
+
* SpecificIntegerValue.
|
|
498
|
+
*/
|
|
499
|
+
public IntegerValue generalize(SpecificIntegerValue other)
|
|
500
|
+
{
|
|
501
|
+
return generalize((IntegerValue)other);
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
/**
|
|
506
|
+
* Returns the sum of this IntegerValue and the given SpecificIntegerValue.
|
|
507
|
+
*/
|
|
508
|
+
public IntegerValue add(SpecificIntegerValue other)
|
|
509
|
+
{
|
|
510
|
+
return add((IntegerValue)other);
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
/**
|
|
514
|
+
* Returns the difference of this IntegerValue and the given SpecificIntegerValue.
|
|
515
|
+
*/
|
|
516
|
+
public IntegerValue subtract(SpecificIntegerValue other)
|
|
517
|
+
{
|
|
518
|
+
return subtract((IntegerValue)other);
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
/**
|
|
522
|
+
* Returns the difference of the given SpecificIntegerValue and this IntegerValue.
|
|
523
|
+
*/
|
|
524
|
+
public IntegerValue subtractFrom(SpecificIntegerValue other)
|
|
525
|
+
{
|
|
526
|
+
return subtractFrom((IntegerValue)other);
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
/**
|
|
530
|
+
* Returns the product of this IntegerValue and the given SpecificIntegerValue.
|
|
531
|
+
*/
|
|
532
|
+
public IntegerValue multiply(SpecificIntegerValue other)
|
|
533
|
+
{
|
|
534
|
+
return multiply((IntegerValue)other);
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
/**
|
|
538
|
+
* Returns the quotient of this IntegerValue and the given
|
|
539
|
+
* SpecificIntegerValue.
|
|
540
|
+
*/
|
|
541
|
+
public IntegerValue divide(SpecificIntegerValue other)
|
|
542
|
+
{
|
|
543
|
+
return divide((IntegerValue)other);
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
/**
|
|
547
|
+
* Returns the quotient of the given SpecificIntegerValue and this
|
|
548
|
+
* IntegerValue.
|
|
549
|
+
*/
|
|
550
|
+
public IntegerValue divideOf(SpecificIntegerValue other)
|
|
551
|
+
{
|
|
552
|
+
return divideOf((IntegerValue)other);
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
/**
|
|
556
|
+
* Returns the remainder of this IntegerValue divided by the given
|
|
557
|
+
* SpecificIntegerValue.
|
|
558
|
+
*/
|
|
559
|
+
public IntegerValue remainder(SpecificIntegerValue other)
|
|
560
|
+
{
|
|
561
|
+
return remainder((IntegerValue)other);
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
/**
|
|
565
|
+
* Returns the remainder of the given SpecificIntegerValue divided by this
|
|
566
|
+
* IntegerValue.
|
|
567
|
+
*/
|
|
568
|
+
public IntegerValue remainderOf(SpecificIntegerValue other)
|
|
569
|
+
{
|
|
570
|
+
return remainderOf((IntegerValue)other);
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
/**
|
|
574
|
+
* Returns this IntegerValue, shifted left by the given SpecificIntegerValue.
|
|
575
|
+
*/
|
|
576
|
+
public IntegerValue shiftLeft(SpecificIntegerValue other)
|
|
577
|
+
{
|
|
578
|
+
return shiftLeft((IntegerValue)other);
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
/**
|
|
582
|
+
* Returns this IntegerValue, shifted right by the given SpecificIntegerValue.
|
|
583
|
+
*/
|
|
584
|
+
public IntegerValue shiftRight(SpecificIntegerValue other)
|
|
585
|
+
{
|
|
586
|
+
return shiftRight((IntegerValue)other);
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
/**
|
|
590
|
+
* Returns this unsigned IntegerValue, shifted right by the given
|
|
591
|
+
* SpecificIntegerValue.
|
|
592
|
+
*/
|
|
593
|
+
public IntegerValue unsignedShiftRight(SpecificIntegerValue other)
|
|
594
|
+
{
|
|
595
|
+
return unsignedShiftRight((IntegerValue)other);
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
/**
|
|
599
|
+
* Returns the given SpecificIntegerValue, shifted left by this IntegerValue.
|
|
600
|
+
*/
|
|
601
|
+
public IntegerValue shiftLeftOf(SpecificIntegerValue other)
|
|
602
|
+
{
|
|
603
|
+
return shiftLeftOf((IntegerValue)other);
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
/**
|
|
607
|
+
* Returns the given SpecificIntegerValue, shifted right by this IntegerValue.
|
|
608
|
+
*/
|
|
609
|
+
public IntegerValue shiftRightOf(SpecificIntegerValue other)
|
|
610
|
+
{
|
|
611
|
+
return shiftRightOf((IntegerValue)other);
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
/**
|
|
615
|
+
* Returns the given unsigned SpecificIntegerValue, shifted right by this
|
|
616
|
+
* IntegerValue.
|
|
617
|
+
*/
|
|
618
|
+
public IntegerValue unsignedShiftRightOf(SpecificIntegerValue other)
|
|
619
|
+
{
|
|
620
|
+
return unsignedShiftRightOf((IntegerValue)other);
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
/**
|
|
624
|
+
* Returns the given SpecificLongValue, shifted left by this IntegerValue.
|
|
625
|
+
*/
|
|
626
|
+
public LongValue shiftLeftOf(SpecificLongValue other)
|
|
627
|
+
{
|
|
628
|
+
return shiftLeftOf((LongValue)other);
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
/**
|
|
632
|
+
* Returns the given SpecificLongValue, shifted right by this IntegerValue.
|
|
633
|
+
*/
|
|
634
|
+
public LongValue shiftRightOf(SpecificLongValue other)
|
|
635
|
+
{
|
|
636
|
+
return shiftRightOf((LongValue)other);
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
/**
|
|
640
|
+
* Returns the given unsigned SpecificLongValue, shifted right by this
|
|
641
|
+
* IntegerValue.
|
|
642
|
+
*/
|
|
643
|
+
public LongValue unsignedShiftRightOf(SpecificLongValue other)
|
|
644
|
+
{
|
|
645
|
+
return unsignedShiftRightOf((LongValue)other);
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
/**
|
|
649
|
+
* Returns the logical <i>and</i> of this IntegerValue and the given
|
|
650
|
+
* SpecificIntegerValue.
|
|
651
|
+
*/
|
|
652
|
+
public IntegerValue and(SpecificIntegerValue other)
|
|
653
|
+
{
|
|
654
|
+
return and((IntegerValue)other);
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
/**
|
|
658
|
+
* Returns the logical <i>or</i> of this IntegerValue and the given
|
|
659
|
+
* SpecificIntegerValue.
|
|
660
|
+
*/
|
|
661
|
+
public IntegerValue or(SpecificIntegerValue other)
|
|
662
|
+
{
|
|
663
|
+
return or((IntegerValue)other);
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
/**
|
|
667
|
+
* Returns the logical <i>xor</i> of this IntegerValue and the given
|
|
668
|
+
* SpecificIntegerValue.
|
|
669
|
+
*/
|
|
670
|
+
public IntegerValue xor(SpecificIntegerValue other)
|
|
671
|
+
{
|
|
672
|
+
return xor((IntegerValue)other);
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
/**
|
|
676
|
+
* Returns whether this IntegerValue and the given SpecificIntegerValue are
|
|
677
|
+
* equal: <code>NEVER</code>, <code>MAYBE</code>, or <code>ALWAYS</code>.
|
|
678
|
+
*/
|
|
679
|
+
public int equal(SpecificIntegerValue other)
|
|
680
|
+
{
|
|
681
|
+
return equal((IntegerValue)other);
|
|
682
|
+
}
|
|
683
|
+
|
|
684
|
+
/**
|
|
685
|
+
* Returns whether this IntegerValue is less than the given
|
|
686
|
+
* SpecificIntegerValue: <code>NEVER</code>, <code>MAYBE</code>, or
|
|
687
|
+
* <code>ALWAYS</code>.
|
|
688
|
+
*/
|
|
689
|
+
public int lessThan(SpecificIntegerValue other)
|
|
690
|
+
{
|
|
691
|
+
return lessThan((IntegerValue)other);
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
/**
|
|
695
|
+
* Returns whether this IntegerValue is less than or equal to the given
|
|
696
|
+
* SpecificIntegerValue: <code>NEVER</code>, <code>MAYBE</code>, or
|
|
697
|
+
* <code>ALWAYS</code>.
|
|
698
|
+
*/
|
|
699
|
+
public int lessThanOrEqual(SpecificIntegerValue other)
|
|
700
|
+
{
|
|
701
|
+
return lessThanOrEqual((IntegerValue)other);
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
|
|
705
|
+
// Derived binary methods.
|
|
706
|
+
|
|
707
|
+
/**
|
|
708
|
+
* Returns whether this IntegerValue and the given SpecificIntegerValue are
|
|
709
|
+
* different: <code>NEVER</code>, <code>MAYBE</code>, or <code>ALWAYS</code>.
|
|
710
|
+
*/
|
|
711
|
+
public final int notEqual(SpecificIntegerValue other)
|
|
712
|
+
{
|
|
713
|
+
return -equal(other);
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
/**
|
|
717
|
+
* Returns whether this IntegerValue is greater than the given
|
|
718
|
+
* SpecificIntegerValue: <code>NEVER</code>, <code>MAYBE</code>, or
|
|
719
|
+
* <code>ALWAYS</code>.
|
|
720
|
+
*/
|
|
721
|
+
public final int greaterThan(SpecificIntegerValue other)
|
|
722
|
+
{
|
|
723
|
+
return -lessThanOrEqual(other);
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
/**
|
|
727
|
+
* Returns whether this IntegerValue is greater than or equal to the given
|
|
728
|
+
* SpecificIntegerValue: <code>NEVER</code>, <code>MAYBE</code>, or
|
|
729
|
+
* <code>ALWAYS</code>.
|
|
730
|
+
*/
|
|
731
|
+
public final int greaterThanOrEqual(SpecificIntegerValue other)
|
|
732
|
+
{
|
|
733
|
+
return -lessThan(other);
|
|
734
|
+
}
|
|
735
|
+
|
|
736
|
+
|
|
737
|
+
// Similar binary methods, but this time with particular arguments.
|
|
738
|
+
|
|
739
|
+
/**
|
|
740
|
+
* Returns the generalization of this IntegerValue and the given other
|
|
741
|
+
* ParticularIntegerValue.
|
|
742
|
+
*/
|
|
743
|
+
public IntegerValue generalize(ParticularIntegerValue other)
|
|
744
|
+
{
|
|
745
|
+
return generalize((SpecificIntegerValue)other);
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
|
|
749
|
+
/**
|
|
750
|
+
* Returns the sum of this IntegerValue and the given ParticularIntegerValue.
|
|
751
|
+
*/
|
|
752
|
+
public IntegerValue add(ParticularIntegerValue other)
|
|
753
|
+
{
|
|
754
|
+
return add((SpecificIntegerValue)other);
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
/**
|
|
758
|
+
* Returns the difference of this IntegerValue and the given ParticularIntegerValue.
|
|
759
|
+
*/
|
|
760
|
+
public IntegerValue subtract(ParticularIntegerValue other)
|
|
761
|
+
{
|
|
762
|
+
return subtract((SpecificIntegerValue)other);
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
/**
|
|
766
|
+
* Returns the difference of the given ParticularIntegerValue and this IntegerValue.
|
|
767
|
+
*/
|
|
768
|
+
public IntegerValue subtractFrom(ParticularIntegerValue other)
|
|
769
|
+
{
|
|
770
|
+
return subtractFrom((SpecificIntegerValue)other);
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
/**
|
|
774
|
+
* Returns the product of this IntegerValue and the given ParticularIntegerValue.
|
|
775
|
+
*/
|
|
776
|
+
public IntegerValue multiply(ParticularIntegerValue other)
|
|
777
|
+
{
|
|
778
|
+
return multiply((SpecificIntegerValue)other);
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
/**
|
|
782
|
+
* Returns the quotient of this IntegerValue and the given
|
|
783
|
+
* ParticularIntegerValue.
|
|
784
|
+
*/
|
|
785
|
+
public IntegerValue divide(ParticularIntegerValue other)
|
|
786
|
+
{
|
|
787
|
+
return divide((SpecificIntegerValue)other);
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
/**
|
|
791
|
+
* Returns the quotient of the given ParticularIntegerValue and this
|
|
792
|
+
* IntegerValue.
|
|
793
|
+
*/
|
|
794
|
+
public IntegerValue divideOf(ParticularIntegerValue other)
|
|
795
|
+
{
|
|
796
|
+
return divideOf((SpecificIntegerValue)other);
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
/**
|
|
800
|
+
* Returns the remainder of this IntegerValue divided by the given
|
|
801
|
+
* ParticularIntegerValue.
|
|
802
|
+
*/
|
|
803
|
+
public IntegerValue remainder(ParticularIntegerValue other)
|
|
804
|
+
{
|
|
805
|
+
return remainder((SpecificIntegerValue)other);
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
/**
|
|
809
|
+
* Returns the remainder of the given ParticularIntegerValue divided by this
|
|
810
|
+
* IntegerValue.
|
|
811
|
+
*/
|
|
812
|
+
public IntegerValue remainderOf(ParticularIntegerValue other)
|
|
813
|
+
{
|
|
814
|
+
return remainderOf((SpecificIntegerValue)other);
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
/**
|
|
818
|
+
* Returns this IntegerValue, shifted left by the given ParticularIntegerValue.
|
|
819
|
+
*/
|
|
820
|
+
public IntegerValue shiftLeft(ParticularIntegerValue other)
|
|
821
|
+
{
|
|
822
|
+
return shiftLeft((SpecificIntegerValue)other);
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
/**
|
|
826
|
+
* Returns this IntegerValue, shifted right by the given ParticularIntegerValue.
|
|
827
|
+
*/
|
|
828
|
+
public IntegerValue shiftRight(ParticularIntegerValue other)
|
|
829
|
+
{
|
|
830
|
+
return shiftRight((SpecificIntegerValue)other);
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
/**
|
|
834
|
+
* Returns this unsigned IntegerValue, shifted right by the given
|
|
835
|
+
* ParticularIntegerValue.
|
|
836
|
+
*/
|
|
837
|
+
public IntegerValue unsignedShiftRight(ParticularIntegerValue other)
|
|
838
|
+
{
|
|
839
|
+
return unsignedShiftRight((SpecificIntegerValue)other);
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
/**
|
|
843
|
+
* Returns the given ParticularIntegerValue, shifted left by this IntegerValue.
|
|
844
|
+
*/
|
|
845
|
+
public IntegerValue shiftLeftOf(ParticularIntegerValue other)
|
|
846
|
+
{
|
|
847
|
+
return shiftLeftOf((SpecificIntegerValue)other);
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
/**
|
|
851
|
+
* Returns the given ParticularIntegerValue, shifted right by this IntegerValue.
|
|
852
|
+
*/
|
|
853
|
+
public IntegerValue shiftRightOf(ParticularIntegerValue other)
|
|
854
|
+
{
|
|
855
|
+
return shiftRightOf((SpecificIntegerValue)other);
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
/**
|
|
859
|
+
* Returns the given unsigned ParticularIntegerValue, shifted right by this
|
|
860
|
+
* IntegerValue.
|
|
861
|
+
*/
|
|
862
|
+
public IntegerValue unsignedShiftRightOf(ParticularIntegerValue other)
|
|
863
|
+
{
|
|
864
|
+
return unsignedShiftRightOf((SpecificIntegerValue)other);
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
/**
|
|
868
|
+
* Returns the given ParticularLongValue, shifted left by this IntegerValue.
|
|
869
|
+
*/
|
|
870
|
+
public LongValue shiftLeftOf(ParticularLongValue other)
|
|
871
|
+
{
|
|
872
|
+
return shiftLeftOf((SpecificLongValue)other);
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
/**
|
|
876
|
+
* Returns the given ParticularLongValue, shifted right by this IntegerValue.
|
|
877
|
+
*/
|
|
878
|
+
public LongValue shiftRightOf(ParticularLongValue other)
|
|
879
|
+
{
|
|
880
|
+
return shiftRightOf((SpecificLongValue)other);
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
/**
|
|
884
|
+
* Returns the given unsigned ParticularLongValue, shifted right by this
|
|
885
|
+
* IntegerValue.
|
|
886
|
+
*/
|
|
887
|
+
public LongValue unsignedShiftRightOf(ParticularLongValue other)
|
|
888
|
+
{
|
|
889
|
+
return unsignedShiftRightOf((SpecificLongValue)other);
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
/**
|
|
893
|
+
* Returns the logical <i>and</i> of this IntegerValue and the given
|
|
894
|
+
* ParticularIntegerValue.
|
|
895
|
+
*/
|
|
896
|
+
public IntegerValue and(ParticularIntegerValue other)
|
|
897
|
+
{
|
|
898
|
+
return and((SpecificIntegerValue)other);
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
/**
|
|
902
|
+
* Returns the logical <i>or</i> of this IntegerValue and the given
|
|
903
|
+
* ParticularIntegerValue.
|
|
904
|
+
*/
|
|
905
|
+
public IntegerValue or(ParticularIntegerValue other)
|
|
906
|
+
{
|
|
907
|
+
return or((SpecificIntegerValue)other);
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
/**
|
|
911
|
+
* Returns the logical <i>xor</i> of this IntegerValue and the given
|
|
912
|
+
* ParticularIntegerValue.
|
|
913
|
+
*/
|
|
914
|
+
public IntegerValue xor(ParticularIntegerValue other)
|
|
915
|
+
{
|
|
916
|
+
return xor((SpecificIntegerValue)other);
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
/**
|
|
920
|
+
* Returns whether this IntegerValue and the given ParticularIntegerValue are
|
|
921
|
+
* equal: <code>NEVER</code>, <code>MAYBE</code>, or <code>ALWAYS</code>.
|
|
922
|
+
*/
|
|
923
|
+
public int equal(ParticularIntegerValue other)
|
|
924
|
+
{
|
|
925
|
+
return equal((SpecificIntegerValue)other);
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
/**
|
|
929
|
+
* Returns whether this IntegerValue is less than the given
|
|
930
|
+
* ParticularIntegerValue: <code>NEVER</code>, <code>MAYBE</code>, or
|
|
931
|
+
* <code>ALWAYS</code>.
|
|
932
|
+
*/
|
|
933
|
+
public int lessThan(ParticularIntegerValue other)
|
|
934
|
+
{
|
|
935
|
+
return lessThan((SpecificIntegerValue)other);
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
/**
|
|
939
|
+
* Returns whether this IntegerValue is less than or equal to the given
|
|
940
|
+
* ParticularIntegerValue: <code>NEVER</code>, <code>MAYBE</code>, or
|
|
941
|
+
* <code>ALWAYS</code>.
|
|
942
|
+
*/
|
|
943
|
+
public int lessThanOrEqual(ParticularIntegerValue other)
|
|
944
|
+
{
|
|
945
|
+
return lessThanOrEqual((SpecificIntegerValue)other);
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
|
|
949
|
+
// Derived binary methods.
|
|
950
|
+
|
|
951
|
+
/**
|
|
952
|
+
* Returns whether this IntegerValue and the given ParticularIntegerValue are
|
|
953
|
+
* different: <code>NEVER</code>, <code>MAYBE</code>, or <code>ALWAYS</code>.
|
|
954
|
+
*/
|
|
955
|
+
public final int notEqual(ParticularIntegerValue other)
|
|
956
|
+
{
|
|
957
|
+
return -equal(other);
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
/**
|
|
961
|
+
* Returns whether this IntegerValue is greater than the given
|
|
962
|
+
* ParticularIntegerValue: <code>NEVER</code>, <code>MAYBE</code>, or
|
|
963
|
+
* <code>ALWAYS</code>.
|
|
964
|
+
*/
|
|
965
|
+
public final int greaterThan(ParticularIntegerValue other)
|
|
966
|
+
{
|
|
967
|
+
return -lessThanOrEqual(other);
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
/**
|
|
971
|
+
* Returns whether this IntegerValue is greater than or equal to the given
|
|
972
|
+
* ParticularIntegerValue: <code>NEVER</code>, <code>MAYBE</code>, or
|
|
973
|
+
* <code>ALWAYS</code>.
|
|
974
|
+
*/
|
|
975
|
+
public final int greaterThanOrEqual(ParticularIntegerValue other)
|
|
976
|
+
{
|
|
977
|
+
return -lessThan(other);
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
|
|
981
|
+
// Implementations for Value.
|
|
982
|
+
|
|
983
|
+
public final IntegerValue integerValue()
|
|
984
|
+
{
|
|
985
|
+
return this;
|
|
986
|
+
}
|
|
987
|
+
|
|
988
|
+
public final Value generalize(Value other)
|
|
989
|
+
{
|
|
990
|
+
return this.generalize(other.integerValue());
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
public final int computationalType()
|
|
994
|
+
{
|
|
995
|
+
return TYPE_INTEGER;
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
public final String internalType()
|
|
999
|
+
{
|
|
1000
|
+
return String.valueOf(ClassConstants.INTERNAL_TYPE_INT);
|
|
1001
|
+
}
|
|
1002
|
+
}
|