Java Terms Flashcards
Abstract Window Toolkit (AWT)
A collection of graphical user interface (GUI) components that were implemented using native-platform versions of the components. These components provide that subset of functionality which is common to all native platforms. Largely supplanted by the Project Swing component set.
Abstract
A Java(TM) programming language keyword used in a class definition to specify that a class is not to be instantiated, but rather inherited by other classes. An abstract class can have abstract methods that are not implemented in the abstract class, but in subclasses.
Abstract Class
A class that contains one or more abstract methods, and therefore can never be instantiated. Abstract classes are defined so that other classes can extend them and make them concrete by implementing the abstract methods.
Abstract Method
A method that has no implementation.
Actual Parameter List
The arguments specified in a particular method call
Alpha Value
A value that indicates the opacity of a pixel.
API
Application Programming Interface. The specification of how a programmer writing an application accesses the behavior and state of classes and objects.
Appliances
Networked devices such as printers, Java(TM) technology-enabled terminals, and clients, that are managed using applications built using the Java Management API (JMAPI).
Applet
A program written in the Java(TM) programming language to run within a web browser compatible with the Java platform, such as HotJava(TM) or Netscape Navigator(TM).
Argument
A data item specified in a method call. An argument can be a literal value, a variable, or an expression.
Array
A collection of data items, all of the same type, in which each item’s position is uniquely designated by an integer.
ASCII
American Standard Code for Information Interchange. A standard assignment of 7-bit numeric codes to characters.
Atomic
Refers to an operation that is never interrupted or left in an incomplete state under any circumstance.
Bean
A reusable software component. Beans can be combined to create an application.
Binary Operator
An operator that has two arguments.