In software engineering, the template method pattern is a behavioral design pattern that defines the program skeleton of an algorithm in a method, called template method, which defers some steps to subclasses.

learn more… | top users | synonyms

0
votes
4answers
85 views

C# Refactoring the same action with different details using design patterns

I try to find the way for refactoring my code but no idea how to do this. For example, we have several classes class A { string name; int year; } class B { long id; string ...
1
vote
3answers
46 views

The meaning of `this` in JS template method pattern

Why does the marked line fail to find protectedACMember? var Module = (function (ns) { function AbstractClass() { this.protectedACMember = "abstract"; ...
3
votes
3answers
91 views

template method pattern - naming conventions

I have this abstract class named as RenderableEntity . I have a public method render() that has some logic wrapped around abstract protected render() method. How should I name this abstract render() ...
2
votes
1answer
135 views

Is it possible to use the template method pattern in the constructor? [duplicate]

Possible Duplicate: Calling virtual functions inside constructors I have a class Shape and its subclass Sphere : //Shape : class Shape { public: Shape(const string& ...
0
votes
2answers
158 views

Concrete method in super class-abstract class

I have an abstract class Shape, some sub classes and some methods to calculate area, perimeter and to draw the shape that are overridden. I'm trying to find a Template Method in the abstract class ...
0
votes
3answers
84 views

OOP - 'Default' bad class name?

I am implementing a template method type of pattern and have several classes to implement the behaviour. As an example, my structure is as follows: TemplateAbstract Type CustomType1 ...
4
votes
4answers
88 views

Is it possible to have a method which derived classes cannot call, but consumers of a class can call?

I'm implementing the template method pattern. There are a couple of settings that clients can change on this template method; but I would like to prevent implementers of the template method from ...
2
votes
2answers
108 views

Template method invocation order in python

What would be the simplest way to unit-test run function? Here I'm not interested in what fun* functions do, but only if the order of their invocation is correct. from mock import Mock (many, ...
0
votes
3answers
56 views

Template method need an object declared in the child constructor

a child class extending a mother class which, in its constructor call a template method instianted in the child class because it need a value obtained in the child constructor. How Can I do something ...
0
votes
1answer
317 views

Difference between Template Method Pattern and using Abstract (base) classes?

After a several hour (re)search, I just can't come up with a explainable difference between a normal Abstract class and the use of a Template Pattern. The only thing I see is: while using an Abstract ...
-1
votes
1answer
89 views

How can I loop through a List<T> using the template-method pattern?

I'm looking for an example implementation of the template-method pattern in Java. Suppose, for example, I'd like to create a generic class that can loop through a List<T> and execute a template ...
0
votes
1answer
106 views

Implement a workchain with templatemethod pattern?

I have a hierarchy of worker classes, all of which do some kind of processing to a workpiece. The idea is, that each worker does some pre processing, pushes the workpiece to the subclass and then does ...
13
votes
1answer
208 views

Why does GoF advise using protected (as opposed to private) virtual methods in a C++ Template Method Pattern implementation?

From Gang of Four on the Template Method Pattern: Three implementation issues are worth noting: Using C++ access control. In C++, the primitive operations that a template method calls can ...
2
votes
3answers
1k views

Objective-C - Template methods pattern?

So I've been reading about template methods on Objective-C and I am trying to understand what's so special about them. From my understanding any method in a Base class can be over-ridden and super can ...
8
votes
5answers
357 views

What's the simplest way to satisfy a pure abstract method with methods from other base classes

Edit: Per some comments, by simple I mean a) less code, b) easy to maintain, and c) hard to get wrong. Edit #2: Also, using containment instead of private inheritance is not objectionable if it does ...
19
votes
2answers
496 views

Inheriting methods' docstrings in Python

I have an OO hierarchy with docstrings that take as much maintenance as the code itself. E.g., class Swallow(object): def airspeed(self): """Returns the airspeed (unladen)""" ...
3
votes
3answers
893 views

Python naming conventions for attributes and methods meant to be overwritten

I have some object oriented code in Python, where some classes are meant to be extended to provide the missing custom bits of code (a la Template Method pattern, but also with variables), that will ...
1
vote
2answers
790 views

What design pattern is this - Adapter, Provider, Delegate, Template Methods, or …?

Here's a simple design patterns question: As part of my current project, I have written an interface that performs a database search (using webservices and relevant client stubs) and returns the ...
3
votes
5answers
76 views

How to change method defaults in Python?

I'm building a class, Child, that inherits from another class, Parent. The Parent class has a loadPage method that the Child will use, except that the Child will need to run its own code near the end ...
5
votes
1answer
1k views

what's the difference between the patterns Strategy, Visitor and Template Method?

I'm in a class where we just learned about these design patterns. However I couldn't see any difference between them. They sound just like the same, creating concrete classes over the abstract one. ...
3
votes
1answer
737 views

Template method in javascript

I want, in javascript, to implement the template method pattern. I have a PropertyDecorator with some subclasses: OpenButtonDecorator, SeeButtonDecorator and so on. I want to have in Property ...
1
vote
4answers
333 views

template method pattern and long parameter lists in c++

After the helpful answers to my last question I started using the template method pattern for a class with a lot of different options. Without having implemented them all, my current declarations for ...
3
votes
1answer
2k views

typedef inheritance from a pure abstract base

Edit: Found duplicate I've whittled down some problem code to the simplest working case to illustrate the following: my typedef in a pure abstract base class is not being inherited by the derived ...
1
vote
2answers
253 views

Java client/server application with 3 patterns

I am a college student, and I have to complete following task by the end of the month... I have to write a client/server application in java that implements 3 patterns: Hollywood principle, Facade ...
1
vote
4answers
195 views

private overrides of private methods pattern? (ANSWER: NVI)

What's the accepted jargon (if any) for describing methods meant to be invoked only virtually and from other methods in the base? I've occasionally seen this referred to as a callback, but that seems ...
1
vote
3answers
1k views

Difference between Template Method (separation) and Strategy pattern?

My teacher is a really good one and I tend to understand his points, but this one just goes over my head. He explains Template Method in two variants; - Unification: the standard variant, that is ...