Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what is tempplate pattern

Answer Posted / prashant

Template pattern allows abstract representation of methods.
Implementation of these methods is left to the classes that
inherit these abstract methods. We define only a template
for the method without defining any algorithm

Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Where to store local variables?

1077


Is 0 an irrational number?

1043


What is overloading and overriding in java?

1196


What is a dot notation?

1009


How do you convert boolean to boolean?

1132


Name few java.lang classes introduced with java 8 ?

963


How many bytes is double?

953


What is an anonymous class in java?

1081


Which is the best sorting technique in java?

963


What are JVM.JRE, J2EE, JNI?

1082


What is regex in java?

931


Give some features of interface?

1047


Does java return by reference?

982


Draw a UML class diagram for the code fragment given below: public class StringApplet extends Applet { private Label sampleString; private Button showTheString; private ButtonHandler bHandler; private FlowLayout layout; public StringApplet() { sampleString = new Label(" "); showTheString = new Button (" Show the String"); bHandler = new ButtonHandler(); layout = new FlowLayout(); showTheString.addActionListener(bHandler); setLayout(layout); add(sampleString); add(showTheString); } class ButtonHandler implements ActionListener { public void actionPerformed(ActionEvent e) { samplestring.setText("Good Morning"); } } } Note: The methods need not be indicated on the diagram.

2030


How do I type unicode?

949