Posts

Showing posts with the label Reflection

Reflection API : in Java

Image
Reflection API : in Java What is an API? Application program interface (API) is a set of routines, protocols, and tools for building software applications. An API specifies how software components should interact. Additionally, APIs are used when programming graphical user interface (GUI) components. A good API makes it easier to develop a program by providing all the building blocks. A programmer then puts the blocks together,and build his own application. An example, You are buying an item in online through your credit card. You will provide credit card details and press continue button. It will tell you whether your information is correct or not. To provide these results, there are lot of things in the background. The application will send your credit card details to a remote application which will validate your information and send the result back your application. API is used in this scenario. Java application programming interface (API) is a list of all...