Categories:
Audio (13)
Biotech (29)
Bytecode (22)
Database (79)
Framework (7)
Game (7)
General (497)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (70)
JavaBeans (16)
JDBC (86)
JDK (338)
JSP (20)
Logging (90)
Mail (54)
Messaging (8)
Network (106)
PDF (82)
Report (7)
Scripting (75)
Security (67)
Server (112)
Servlet (17)
SOAP (24)
Testing (55)
Web (24)
XML (287)
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/awt/event/ActionEvent.java
/* * @(#)ActionEvent.java 1.14 01/12/10 * * Copyright 2002 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package java.awt.event; import java.awt.AWTEvent; import java.awt.Event; /** * The action semantic event. * @see ActionListener * * @version 1.14 12/10/01 * @author Carl Quinn */ public class ActionEvent extends AWTEvent { /** * The shift modifier constant. */ public static final int SHIFT_MASK = Event.SHIFT_MASK; /** * The control modifier constant. */ public static final int CTRL_MASK = Event.CTRL_MASK; /** * The meta modifier constant. */ public static final int META_MASK = Event.META_MASK; /** * The alt modifier constant. */ public static final int ALT_MASK = Event.ALT_MASK; /** * Marks the first integer id for the range of action event ids. */ public static final int ACTION_FIRST = 1001; /** * Marks the last integer id for the range of action event ids. */ public static final int ACTION_LAST = 1001; /** * An action performed event type. */ public static final int ACTION_PERFORMED = ACTION_FIRST; //Event.ACTION_EVENT String actionCommand; int modifiers; /* * JDK 1.1 serialVersionUID */ private static final long serialVersionUID = -7671078796273832149L; /** * Constructs an ActionEvent object with the specified source object. * @param source the object where the event originated * @param id the type of event * @param command the command string for this action event */ public ActionEvent(Object source, int id, String command) { this(source, id, command, 0); } /** * Constructs an ActionEvent object with the specified source object. * @param source the object where the event originated * @param id the type of event * @param command the command string for this action event * @param modifiers the modifiers held down during this action */ public ActionEvent(Object source, int id, String command, int modifiers) { super(source, id); this.actionCommand = command; this.modifiers = modifiers; } /** * Returns the command name associated with this action. */ public String getActionCommand() { return actionCommand; } /** * Returns the modifiers held down during this action event. */ public int getModifiers() { return modifiers; } public String paramString() { String typeStr; switch(id) { case ACTION_PERFORMED: typeStr = "ACTION_PERFORMED"; break; default: typeStr = "unknown type"; } return typeStr + ",cmd="+actionCommand; } }
⏎ java/awt/event/ActionEvent.java
⇒ Backup JDK 1.1 Installation Directory
2018-11-17, 38133👍, 0💬
Popular Posts:
JasperReports, the world's most popular open source business intelligence and reporting engine and J...
JDK 11 jdk.charsets.jmod is the JMOD file for JDK 11 Charsets module. JDK 11 Charsets module compile...
Where to find answers to frequently asked questions on Download and Installing of Older Versions? He...
Jetty provides an HTTP server, HTTP client, and javax.servlet container. These components are open s...
Batik is a Java-based toolkit for applications or applets that want to use images in the Scalable Ve...