Categories:
Audio (13)
Biotech (29)
Bytecode (35)
Database (77)
Framework (7)
Game (7)
General (512)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (86)
JavaBeans (16)
JDBC (89)
JDK (337)
JSP (20)
Logging (103)
Mail (54)
Messaging (8)
Network (71)
PDF (94)
Report (7)
Scripting (83)
Security (32)
Server (119)
Servlet (17)
SOAP (24)
Testing (50)
Web (19)
XML (301)
Other Resources:
JDK 1.1 Source Code Directory
JDK 1.1 source code directory contains Java source code for JDK 1.1 core classes:
"C:\fyicenter\jdk-1.1.8\src".
Here is the list of Java classes of the JDK 1.1 source code:
✍: FYIcenter
⏎ java/lang/reflect/Modifier.java
/* * @(#)Modifier.java 1.7 01/12/10 * * Copyright 2002 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package java.lang.reflect; /** * The Modifier class provides static methods and constants to decode * class and member access modifiers. * * @see Class#getModifiers() * @see Member#getModifiers() * * @author Nakul Saraiya */ public class Modifier { /** * Return true if the specified integer includes the <tt>public</tt> * modifier. */ public static boolean isPublic(int mod) { return (mod & PUBLIC) != 0; } /** * Return true if the specifier integer includes the <tt>private</tt> * modifier. */ public static boolean isPrivate(int mod) { return (mod & PRIVATE) != 0; } /** * Return true if the specifier integer includes the <tt>protected</tt> * modifier. */ public static boolean isProtected(int mod) { return (mod & PROTECTED) != 0; } /** * Return true if the specifier integer includes the <tt>static</tt> * modifier. */ public static boolean isStatic(int mod) { return (mod & STATIC) != 0; } /** * Return true if the specifier integer includes the <tt>final</tt> * modifier. */ public static boolean isFinal(int mod) { return (mod & FINAL) != 0; } /** * Return true if the specifier integer includes the <tt>synchronized</tt> * modifier. */ public static boolean isSynchronized(int mod) { return (mod & SYNCHRONIZED) != 0; } /** * Return true if the specifier integer includes the <tt>volatile</tt> * modifier. */ public static boolean isVolatile(int mod) { return (mod & VOLATILE) != 0; } /** * Return true if the specifier integer includes the <tt>transient</tt> * modifier. */ public static boolean isTransient(int mod) { return (mod & TRANSIENT) != 0; } /** * Return true if the specifier integer includes the <tt>native</tt> * modifier. */ public static boolean isNative(int mod) { return (mod & NATIVE) != 0; } /** * Return true if the specifier integer includes the <tt>interface</tt> * modifier. */ public static boolean isInterface(int mod) { return (mod & INTERFACE) != 0; } /** * Return true if the specifier integer includes the <tt>abstract</tt> * modifier. */ public static boolean isAbstract(int mod) { return (mod & ABSTRACT) != 0; } /** * Return a string describing the access modifier flags in * the specified modifier. For example: * <pre> * public final synchronized * private transient volatile * </pre> * The modifier names are return in canonical order, as * specified by <em>The Java Language Specification<em>. */ public static String toString(int mod) { StringBuffer sb = new StringBuffer(); int len; if ((mod & PUBLIC) != 0) sb.append("public "); if ((mod & PRIVATE) != 0) sb.append("private "); if ((mod & PROTECTED) != 0) sb.append("protected "); /* Canonical order */ if ((mod & ABSTRACT) != 0) sb.append("abstract "); if ((mod & STATIC) != 0) sb.append("static "); if ((mod & FINAL) != 0) sb.append("final "); if ((mod & TRANSIENT) != 0) sb.append("transient "); if ((mod & VOLATILE) != 0) sb.append("volatile "); if ((mod & NATIVE) != 0) sb.append("native "); if ((mod & SYNCHRONIZED) != 0) sb.append("synchronized "); if ((mod & INTERFACE) != 0) sb.append("interface "); if ((len = sb.length()) > 0) /* trim trailing space */ return sb.toString().substring(0, len-1); return ""; } /* * Access modifier flag constants from <em>The Java Virtual * Machine Specification</em>, Table 4.1. */ public static final int PUBLIC = 0x00000001; public static final int PRIVATE = 0x00000002; public static final int PROTECTED = 0x00000004; public static final int STATIC = 0x00000008; public static final int FINAL = 0x00000010; public static final int SYNCHRONIZED = 0x00000020; public static final int VOLATILE = 0x00000040; public static final int TRANSIENT = 0x00000080; public static final int NATIVE = 0x00000100; public static final int INTERFACE = 0x00000200; public static final int ABSTRACT = 0x00000400; }
⏎ java/lang/reflect/Modifier.java
Â
⇒ Backup JDK 1.1 Installation Directory
⇠JDK 1.1 classes.zip - Java Core Classes
2018-11-17, 91508👍, 0💬
Popular Posts:
JDK 11 jdk.jconsole.jmod is the JMOD file for JDK 11 JConsole tool, which can be invoked by the "jco...
Oracle Business Intelligence (BI) Beans enables developers to productively build business intelligen...
The Digester package lets you configure an XML -> Java object mapping module, which triggers certain...
Commons VFS provides a single API for accessing various different file systems. It presents a unifor...
Commons DBCP provides Database Connection Pooling. JAR File Size and Download Location: File name: c...