Aggregation is a type of association that specifies a whole/part relationship between the aggregate (whole) and a component part. It…
September 1st, 2011
What is composition?
No Comments, Java Facts, by Daisy Williams.When one object is responsible for the lifecycle management of another object, this relationship is known as composition. Composition represents…
July 3rd, 2011
What are the limitations of enterprise beans?
No Comments, Java Facts, by Daisy Williams.Enterprise beans use the services provided by the EJB container. However, in order to avoid conflicts with these services, the…
December 9th, 2010
What is method overloading?
No Comments, Java Facts, SCBCD, by Daisy Williams.Method overloading is a feature that allows a programmer to implement polymorphism in Java. In method overloading, the name of…
December 8th, 2010
What is this keyword?
No Comments, Java Facts, SCBCD, by Daisy Williams.The this keyword refers to the currently executing instance of a class. It is commonly used to access members from…
December 2nd, 2010
What are the functions of transfer object?
No Comments, Java Facts, SCWCD, by Daisy Williams.The functions of a Transfer Object are as follows: It reduces network traffic by aggregating fine-grained remote objects and representing…
December 1st, 2010
What are the functions of business delegate?
No Comments, Java Facts, SCWCD, by Daisy Williams.The functions of a Business Delegate are as follows: It hides the implementation details of a business service, such as…
November 30th, 2010
What is an intercepting filter?
No Comments, Java Facts, SCWCD, by Daisy Williams.An intercepting filter is a pluggable component that is used to modify incoming requests from a client to a servlet…
October 10th, 2010
How to define methods with variable argument lists?
No Comments, Java Facts, SCBCD, by Daisy Williams.Java allows a method to take a variable number of arguments. This capability is referred to as var-args, varargs variable…
October 7th, 2010
What are numeric promotions?
No Comments, Java Facts, SCBCD, by Daisy Williams.Numeric promotions are used to convert the operands in a numeric expression to a common type before an operation is…