2
votes
2answers
26 views
Understanding UML of DoFactory Design Pattern - Decorator
I am trying to understand UML diagram describing Decorator Pattern at link below
http://www.dofactory.com/Patterns/PatternDecorator.aspx
I don't understand why there is a "Aggreg …
0
votes
3answers
120 views
combining decorator and state pattern in java - question about OO design
I am in the middle of solving a problem where I think it's best suited for a decorator and a state pattern. The high level setting is something like a sandwich maker and dispenser, …
4
votes
2answers
29 views
When is it appropriate to create a Decorator for an object, and when is it appropriate to rewrite your object to allow Strategies to be applied?
For example, suppose I have a Product class that I can add to a shopping cart. I may want to be able to package it together with another item when it is also in the cart and add a …
1
vote
3answers
58 views
Subselects in Oracle Query
Hi,
could anyone tell me if it makes a difference to Oracle 10g whether I use:
SELECT col1 FROM myTable WHERE col2 = 'someval' AND col3 = "someotherval"
or
SELECT col1 FROM
…
0
votes
1answer
78 views
Is it possible to redefine reverse in a Django project?
I have some custom logic that needs to be executed every single time a URL is reversed, even for third-party apps. My project is a multitenant web app, and the tenant is identified …
1
vote
2answers
47 views
Python decorators and class methods and evaluation — django memoize
I have a working memoize decorator which uses Django's cache backend to remember the result of a function for a certain amount of time. I am specifically applying this to a class …
0
votes
2answers
78 views
Use a Descriptor (EDIT: Not a single decorator) for multiple attributes?
Hi,
Python 2.5.4. Fairly new to Python, brand new to decorators as of last night. If I have a class with multiple boolean attributes:
class Foo(object):
_bool1 = True
_bo …
1
vote
2answers
137 views
Decorating Instance Methods in Python
Here's the gist of what I'm trying to do. I have a list of objects, and I know they have an instance method that looks like:
def render(self, name, value, attrs)
# Renders a wi …
3
votes
2answers
72 views
Python decorators on class members fail when decorator mechanism is a class
When creating decorators for use on class methods, I'm having trouble when the decorator mechanism is a class rather than a function/closure. When the class form is used, my decora …
0
votes
3answers
65 views
How to enforce unicode arguments for methods?
I have a model class with getter and setter methods, and the occasional static methods. I would like to enforce the usage of unicode strings as arguments for specific methods and u …
1
vote
3answers
85 views
How to keep help strings the same when applying decorators?
How can I keep help strings in functions to be visible after applying a decorator?
Right now the doc string is (partially) replaced with that of the inner function of the decorato …
1
vote
5answers
199 views
Python: static variable decorator
I'd like to create a decorator like below, but I can't seem to think of an implementation that works. I'm starting to think it's not possible, but thought I would ask you guys firs …
1
vote
1answer
63 views
Java: List<E> decorator implementation with notification
Hi,
I need to implement List decorator class, which notify registered listeners in case of any change in list. I have subclassed AbstractListDecorator from org.apache.commons.coll …
1
vote
3answers
102 views
template meta-programming OR operation
I have a class that can be decorated with a set of add-on templates to provide additional functionality. Each add-on has an identifying addon_value that the base class needs to kno …
0
votes
2answers
69 views
decorator with a base that requires a constructor argument
I have a decorator-like pattern with a base that requires a constructor parameter. The decorator is constructed such that it can take an arbitrary number of add-on components as te …
