eclipsetutorial.sourceforge.net

Website:http://eclipsetutorial.sourceforge.net
Upvotes received0
Downvotes received0
Karma:0 (upvotes-downvotes)



0 earned Badges

No badges were found



Definitions (26)

1

0 Thumbs up   0 Thumbs down

Access Modifier


Reserved words "public", "private", "protected" in Java. Control whether classes and members may be accessed from any class, only this class, subclasses. Default is acc [..]
Source: eclipsetutorial.sourceforge.net

2

0 Thumbs up   0 Thumbs down

Agile development


Methodology for developing software that emphasizes, among other things, unit testing as part of development process.
Source: eclipsetutorial.sourceforge.net

3

0 Thumbs up   0 Thumbs down

API


The way one program uses another program. In Java, the API can be thought of as the collection of public methods for a class or package.
Source: eclipsetutorial.sourceforge.net

4

0 Thumbs up   0 Thumbs down

class


Main building block in Java. Contains members, including fields and methods. Classes are the "blueprint" for creating objects.
Source: eclipsetutorial.sourceforge.net

5

0 Thumbs up   0 Thumbs down

constructor


Special block of code used to create an instance of a class (or, if you prefer, an object whose type is the class). Used with the "new" keyword (e.g., Person p = new Person() calls the Per [..]
Source: eclipsetutorial.sourceforge.net

6

0 Thumbs up   0 Thumbs down

field


Member in a class that holds data (e.g., name, age, etc.). Usually marked private so that other programs cannot directly access.
Source: eclipsetutorial.sourceforge.net

7

0 Thumbs up   0 Thumbs down

IDE


Program, like Eclipse, that provides the different tools required to develop a software package.
Source: eclipsetutorial.sourceforge.net

8

0 Thumbs up   0 Thumbs down

JRE


A set of programs that allows you to run Java programs on a specific computer platform, such as Windows, Linux, or Mac OS. The two primary components of the JRE are the Java Virtual Machine (JVM) an [..]
Source: eclipsetutorial.sourceforge.net

9

0 Thumbs up   0 Thumbs down

JVM


The program that runs Java programs on a specific platform. Java source code is compiled into .class files. These contain the instructions used by the JVM to actually run the programs on a Windows [..]
Source: eclipsetutorial.sourceforge.net

10

0 Thumbs up   0 Thumbs down

Method


Member in a class that does some processing (e.g., like a subroutine or function in other languages).
Source: eclipsetutorial.sourceforge.net


To view all 26 definitions, please sign in.