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

junit test


A set of Java classes used to test individual methods in a Java class. Used to build test cases when using agile development methodology.
Source: eclipsetutorial.sourceforge.net


To view all 26 definitions, please sign in.