com.sun.java.util.jar.pack.ConstantPool.ClassEntry Java Examples
The following examples show how to use
com.sun.java.util.jar.pack.ConstantPool.ClassEntry.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Package.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
InnerClass(ClassEntry thisClass, ClassEntry outerClass, Utf8Entry name, int flags) { this.thisClass = thisClass; this.outerClass = outerClass; this.name = name; this.flags = flags; this.predictable = computePredictable(); }
Example #2
Source File: Package.java From jdk8u_jdk with GNU General Public License v2.0 | 5 votes |
InnerClass(ClassEntry thisClass, ClassEntry outerClass, Utf8Entry name, int flags) { this.thisClass = thisClass; this.outerClass = outerClass; this.name = name; this.flags = flags; this.predictable = computePredictable(); }
Example #3
Source File: Package.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
Class(int flags, ClassEntry thisClass, ClassEntry superClass, ClassEntry[] interfaces) { this.magic = JAVA_MAGIC; this.version = defaultClassVersion; this.flags = flags; this.thisClass = thisClass; this.superClass = superClass; this.interfaces = interfaces; boolean added = classes.add(this); assert(added); }
Example #4
Source File: Package.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
InnerClass(ClassEntry thisClass, ClassEntry outerClass, Utf8Entry name, int flags) { this.thisClass = thisClass; this.outerClass = outerClass; this.name = name; this.flags = flags; this.predictable = computePredictable(); }
Example #5
Source File: Package.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
Class(int flags, ClassEntry thisClass, ClassEntry superClass, ClassEntry[] interfaces) { this.magic = JAVA_MAGIC; this.version = defaultClassVersion; this.flags = flags; this.thisClass = thisClass; this.superClass = superClass; this.interfaces = interfaces; boolean added = classes.add(this); assert(added); }
Example #6
Source File: ClassReader.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
void readHeader() throws IOException { cls.flags = readUnsignedShort(); cls.thisClass = readClassRef(); cls.superClass = readClassRefOrNull(); int ni = readUnsignedShort(); cls.interfaces = new ClassEntry[ni]; for (int i = 0; i < ni; i++) { cls.interfaces[i] = readClassRef(); } }
Example #7
Source File: ClassReader.java From jdk8u_jdk with GNU General Public License v2.0 | 5 votes |
void readHeader() throws IOException { cls.flags = readUnsignedShort(); cls.thisClass = readClassRef(); cls.superClass = readClassRefOrNull(); int ni = readUnsignedShort(); cls.interfaces = new ClassEntry[ni]; for (int i = 0; i < ni; i++) { cls.interfaces[i] = readClassRef(); } }
Example #8
Source File: Package.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
Class(int flags, ClassEntry thisClass, ClassEntry superClass, ClassEntry[] interfaces) { this.magic = JAVA_MAGIC; this.version = defaultClassVersion; this.flags = flags; this.thisClass = thisClass; this.superClass = superClass; this.interfaces = interfaces; boolean added = classes.add(this); assert(added); }
Example #9
Source File: Package.java From jdk8u_jdk with GNU General Public License v2.0 | 5 votes |
Class(int flags, ClassEntry thisClass, ClassEntry superClass, ClassEntry[] interfaces) { this.magic = JAVA_MAGIC; this.version = defaultClassVersion; this.flags = flags; this.thisClass = thisClass; this.superClass = superClass; this.interfaces = interfaces; boolean added = classes.add(this); assert(added); }
Example #10
Source File: Package.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
Class(int flags, ClassEntry thisClass, ClassEntry superClass, ClassEntry[] interfaces) { this.magic = JAVA_MAGIC; this.version = defaultClassVersion; this.flags = flags; this.thisClass = thisClass; this.superClass = superClass; this.interfaces = interfaces; boolean added = classes.add(this); assert(added); }
Example #11
Source File: Package.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
InnerClass(ClassEntry thisClass, ClassEntry outerClass, Utf8Entry name, int flags) { this.thisClass = thisClass; this.outerClass = outerClass; this.name = name; this.flags = flags; this.predictable = computePredictable(); }
Example #12
Source File: Package.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
InnerClass(ClassEntry thisClass, ClassEntry outerClass, Utf8Entry name, int flags) { this.thisClass = thisClass; this.outerClass = outerClass; this.name = name; this.flags = flags; this.predictable = computePredictable(); }
Example #13
Source File: ClassReader.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
void readHeader() throws IOException { cls.flags = readUnsignedShort(); cls.thisClass = readClassRef(); cls.superClass = readClassRefOrNull(); int ni = readUnsignedShort(); cls.interfaces = new ClassEntry[ni]; for (int i = 0; i < ni; i++) { cls.interfaces[i] = readClassRef(); } }
Example #14
Source File: Package.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
Class(int flags, ClassEntry thisClass, ClassEntry superClass, ClassEntry[] interfaces) { this.magic = JAVA_MAGIC; this.version = defaultClassVersion; this.flags = flags; this.thisClass = thisClass; this.superClass = superClass; this.interfaces = interfaces; boolean added = classes.add(this); assert(added); }
Example #15
Source File: Package.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
Class(int flags, ClassEntry thisClass, ClassEntry superClass, ClassEntry[] interfaces) { this.magic = JAVA_MAGIC; this.version = defaultClassVersion; this.flags = flags; this.thisClass = thisClass; this.superClass = superClass; this.interfaces = interfaces; boolean added = classes.add(this); assert(added); }
Example #16
Source File: ClassReader.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 5 votes |
void readHeader() throws IOException { cls.flags = readUnsignedShort(); cls.thisClass = readClassRef(); cls.superClass = readClassRefOrNull(); int ni = readUnsignedShort(); cls.interfaces = new ClassEntry[ni]; for (int i = 0; i < ni; i++) { cls.interfaces[i] = readClassRef(); } }
Example #17
Source File: ClassReader.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
void readHeader() throws IOException { cls.flags = readUnsignedShort(); cls.thisClass = readClassRef(); cls.superClass = readClassRefOrNull(); int ni = readUnsignedShort(); cls.interfaces = new ClassEntry[ni]; for (int i = 0; i < ni; i++) { cls.interfaces[i] = readClassRef(); } }
Example #18
Source File: Package.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
Class(int flags, ClassEntry thisClass, ClassEntry superClass, ClassEntry[] interfaces) { this.magic = JAVA_MAGIC; this.version = defaultClassVersion; this.flags = flags; this.thisClass = thisClass; this.superClass = superClass; this.interfaces = interfaces; boolean added = classes.add(this); assert(added); }
Example #19
Source File: Package.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
InnerClass(ClassEntry thisClass, ClassEntry outerClass, Utf8Entry name, int flags) { this.thisClass = thisClass; this.outerClass = outerClass; this.name = name; this.flags = flags; this.predictable = computePredictable(); }
Example #20
Source File: Package.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
InnerClass(ClassEntry thisClass, ClassEntry outerClass, Utf8Entry name, int flags) { this.thisClass = thisClass; this.outerClass = outerClass; this.name = name; this.flags = flags; this.predictable = computePredictable(); }
Example #21
Source File: Package.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 5 votes |
InnerClass(ClassEntry thisClass, ClassEntry outerClass, Utf8Entry name, int flags) { this.thisClass = thisClass; this.outerClass = outerClass; this.name = name; this.flags = flags; this.predictable = computePredictable(); }
Example #22
Source File: Package.java From dragonwell8_jdk with GNU General Public License v2.0 | 5 votes |
Class(int flags, ClassEntry thisClass, ClassEntry superClass, ClassEntry[] interfaces) { this.magic = JAVA_MAGIC; this.version = defaultClassVersion; this.flags = flags; this.thisClass = thisClass; this.superClass = superClass; this.interfaces = interfaces; boolean added = classes.add(this); assert(added); }
Example #23
Source File: ClassReader.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
void readHeader() throws IOException { cls.flags = readUnsignedShort(); cls.thisClass = readClassRef(); cls.superClass = readClassRefOrNull(); int ni = readUnsignedShort(); cls.interfaces = new ClassEntry[ni]; for (int i = 0; i < ni; i++) { cls.interfaces[i] = readClassRef(); } }
Example #24
Source File: Package.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
Class(int flags, ClassEntry thisClass, ClassEntry superClass, ClassEntry[] interfaces) { this.magic = JAVA_MAGIC; this.version = defaultClassVersion; this.flags = flags; this.thisClass = thisClass; this.superClass = superClass; this.interfaces = interfaces; boolean added = classes.add(this); assert(added); }
Example #25
Source File: Package.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
Class(int flags, ClassEntry thisClass, ClassEntry superClass, ClassEntry[] interfaces) { this.magic = JAVA_MAGIC; this.version = defaultClassVersion; this.flags = flags; this.thisClass = thisClass; this.superClass = superClass; this.interfaces = interfaces; boolean added = classes.add(this); assert(added); }
Example #26
Source File: Package.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
InnerClass(ClassEntry thisClass, ClassEntry outerClass, Utf8Entry name, int flags) { this.thisClass = thisClass; this.outerClass = outerClass; this.name = name; this.flags = flags; this.predictable = computePredictable(); }
Example #27
Source File: ClassReader.java From hottub with GNU General Public License v2.0 | 5 votes |
void readHeader() throws IOException { cls.flags = readUnsignedShort(); cls.thisClass = readClassRef(); cls.superClass = readClassRefOrNull(); int ni = readUnsignedShort(); cls.interfaces = new ClassEntry[ni]; for (int i = 0; i < ni; i++) { cls.interfaces[i] = readClassRef(); } }
Example #28
Source File: ClassReader.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
void readHeader() throws IOException { cls.flags = readUnsignedShort(); cls.thisClass = readClassRef(); cls.superClass = readClassRefOrNull(); int ni = readUnsignedShort(); cls.interfaces = new ClassEntry[ni]; for (int i = 0; i < ni; i++) { cls.interfaces[i] = readClassRef(); } }
Example #29
Source File: Package.java From hottub with GNU General Public License v2.0 | 5 votes |
Class(int flags, ClassEntry thisClass, ClassEntry superClass, ClassEntry[] interfaces) { this.magic = JAVA_MAGIC; this.version = defaultClassVersion; this.flags = flags; this.thisClass = thisClass; this.superClass = superClass; this.interfaces = interfaces; boolean added = classes.add(this); assert(added); }
Example #30
Source File: Package.java From hottub with GNU General Public License v2.0 | 5 votes |
InnerClass(ClassEntry thisClass, ClassEntry outerClass, Utf8Entry name, int flags) { this.thisClass = thisClass; this.outerClass = outerClass; this.name = name; this.flags = flags; this.predictable = computePredictable(); }