Decorator is an object-oriented design pattern that allows adding behavior to existing classes in a dynamic fashion.
0
votes
1answer
42 views
Python setter to also return a value
I was wondering if it would be possible to have a property setter to also return a value. The code below tries to explain superficially the problem.
Basically I need to set a property to an object, ...
0
votes
2answers
12 views
How to decorate property with ExpandableObject in C#
I am trying to display this class instance in the Xceed PropertyGrid per the instructions here:
PG.SelectedObject = new Order()
{
ShipAddress = "Luisenstr. 48",
...
1
vote
1answer
18 views
Creating two or more sitemesh decorators in struts 2 app?
i am creatig a struts 2 application using sitemesh 2.4 plugin in which i want to apply multiple decorator acording to requested resource.
decorators.xml
<?xml version="1.0" encoding="UTF-8"?>
...
0
votes
0answers
20 views
SiteMesh in Spring returns HTTP 404 not found when using <jsp:forward>
I've successfully made SiteMesh work with seeing my index.jsp file (inside WebContent) being decorated the way I wanted.
The Problem
I want to check if SiteMesh can decorate the view files inside ...
0
votes
1answer
39 views
Decorate a JLabel with Decorator pattern
I am trying to decorate a JLabel but the proprieties i set don't work .
Decorator Class :
public class Decorator extends JComponent{
public Decorator(JComponent c){
setLayout(new ...
-1
votes
1answer
19 views
how to use commit_manually decorator in a Django class based view
is it possible to use the decorator commit_manually in a Django class based view?
0
votes
0answers
39 views
Servlet generalisation vs. decoration: what is better? [closed]
My team is building a Java webapp. It is a temporary solution and needs to be low maintenance and reliable above all. We've run into a bit of a situation: we want to make classes as small as possible, ...
0
votes
1answer
23 views
How to “decorate” textView (and classes that extend it) with new features?
Since Android lacks some features on some of its views (like using a different font, or allowing to set the shadow using dp units), I had to extend each of the views i wanted and add some code to ...
2
votes
2answers
39 views
Two different ways to implement Decorator pattern in PHP
While doing some tutorials on Decorator pattern, I've encountered two different implementations.
Implementation 1 (referred to as I1)
Implementation 2 (referred to as I2)
In short,
I1's parent ...
1
vote
2answers
36 views
Decorator args and kwargs returned within tuple
I have the following decorator and class.
def auth(fn):
def check_headers(self):
print 'checking headers...'
#self.headers work done here
def inner(self, *args, **kwargs):
...
0
votes
2answers
76 views
C# patterns subclasses
I have class Person, two child classes Staff and Student, interface IPerson. Also I have a class Database and class Gateway. Class Database has
private string id = "username";
and method
public ...
0
votes
2answers
68 views
Properties with and without sugar
Please don't laugh. I am desperate.
Here is a canonical example of a python class with a getter and a setter (from Wikipedia):
class Student(object):
# Initializer
def __init__(self, name):
...
0
votes
1answer
20 views
How do I implement a decorator in my app?
I am trying to implement this in my app.
The article says that I must create a decorator - but it doesn't go into much detail about exactly how to do that. This is the code:
module CartDecorator
...
0
votes
2answers
27 views
django check if logged in ,decorator for class_based views
I know I can check if a user is logged in using request.user.is_authenticated(), and I want to use a decorator for my class_based views, like the decorator for function views: login_required,what ...
0
votes
2answers
42 views
Python decorating property setter with list
globalList = []
class MyList:
def __init__(self):
self._myList = [1, 2, 3]
@property
def myList(self):
return self._myList + globalList
@myList.setter
def ...
0
votes
2answers
94 views
Use Decorator Pattern for asp.net controls
I've created some custom textboxes which are inherited from textbox.
For the next step I want to register javascript with a wrapper.
Decorator pattern allow me to do if only I can inherit it from ...
0
votes
1answer
30 views
Python property setter decoration of a list object
globalList = []
class MyList:
def __init__(self):
self.myList = [1, 2, 3]
@property
def myList(self):
return self.myList.extend(globalList)
@myList.setter
def ...
1
vote
2answers
47 views
When should I use decorator / observer?
There is these two pattern : observer and decorator. Both enables me to add an action after something was done (or before for the decorator). But their implementation differs. So when should I use a ...
1
vote
2answers
69 views
Explain this higher-order function behavior
Can someone explain why version 1 and 2 execute at the same speed? I expected versions 2, 3, and 4 to take about the same amount of time.
def fib(n):
return n if n in [0, 1] else ...
2
votes
1answer
43 views
Python descriptors (__get__, __set__) on function parameters
Normally a descriptor is used on a class attribute like so:
class Owner(object):
attr = Attr()
When getting Owner.attr, Attr.__get__(self, instance, owner) is called where self = Owner.attr, ...
0
votes
1answer
28 views
Using `greenlet` as decorator
Would it make sense to use greenlet.greenlet as a decorator, converting a regular function to a greenlet as follows:
from greenlet import greenlet
@greenlet
def f(args):
# ...
z = g.switch(u)
...
1
vote
0answers
53 views
Using Decorator for Data Driven Tests
I am trying to parametrize a function using decorator. Finally I am able to get it run as expected after lot of hit and trials. But still I am not satisfied as though it is working, it doesn't seem to ...
0
votes
1answer
16 views
StructureMap EnrichWith without specifying concrete class
I have three assembly:
Interfaces
Implementations
Authorizations
My Authorizations assembly contains decorators for the different Interfaces and Implementations.
I know I can use something like ...
2
votes
2answers
70 views
Python: renaming method names on-the-fly
I have many files using classes with the following syntax:
o = module.CreateObject()
a = o.get_Field
and now the implementation has changed from 'get_XXX' and 'set_XXX' to just 'XXX':
o = ...
0
votes
1answer
48 views
check if something is an attribute or decorator in python
I want to wrap a model class of a legacy codebase. The model class has a dictionary with meta-information and properties that access that dictionary as well as attributes. I want to unify the access ...
2
votes
1answer
27 views
Why is the permalink decorator no longer recommended in django?
I was reading the django dev documentation. Here it says permalink decorator is no longer recommended, use reverse inside your get_absolute_url method to generate full url for a model instance(scroll ...
2
votes
1answer
50 views
How to transport a variable from a popup to window while relying on a function
Consider the following:
Window opens a popup
Popup contains a javascript function which can be triggered by a button
Function takes two predefined arguments and dismisses the popup
This is what ...
1
vote
3answers
66 views
Custom decorator in flask not working?
I have the following code:
import datetime
from flask.app import Flask
app = Flask(__name__)
app.config.from_object(__name__)
app.debug = True
def track_time_spent(name):
def decorator(f):
...
2
votes
1answer
91 views
C# Decorators - Interfaces or Abstract Classes?
This thread, Decorator pattern implementation, has an implementation of a decorator using abstract classes. I don't like it for the simple fact that a CondimentDecorator is NOT a Beverage in the ...
3
votes
3answers
114 views
AngularJS - What are “decorators” and how are they used?
I'm curious what exactly decorators are in AngularJS. There isn't much information online for decorators save for a blurb in the AngularJS documentation and a brief (albeit interesting) mention in a ...
0
votes
2answers
35 views
python log exceptions decorator for non stable functions
I want to log exception in problem functions (html parsing of mutable pages), so i think best solution here some kind of decorator which log exception to file, with time, type of exception,line of ...
1
vote
2answers
42 views
objects not being passed to function in flask route
I have a function and a flask route setup. However, when I go to "simplepage", I get an error "NameError: global name 'aaa' is not defined". Why aren't any of the objects being passed to testfun? Is ...
2
votes
3answers
59 views
Dependency decorator with no duplictates
In a code below i have written depends decorator which just takes as a parametr some functions and call them before calling decorated function. So when when i use this script i get on output:
using f
...
4
votes
2answers
70 views
What is the right way to put a docstring on Python property?
Should I make several docstrings, or just one (and where should I put it)?
@property
define x(self):
return 0
@x.setter
define x(self, values):
pass
I see that property() accepts a doc ...
2
votes
0answers
78 views
Injecting function call after __init__ with decorator
I'm trying to find the best way to create a class decorator that does the following:
Injects a few functions into the decorated class
Forces a call to one of these functions AFTER the decorated ...
2
votes
2answers
52 views
Modules that rely on each other
I have a bind_form custom decorator that assigns a specified django form to a function. This decorator will allow validation to be 'automatically' performed on function arguments - e.g., check if age ...
1
vote
3answers
39 views
Contract.Requires and the Decorator Pattern. How to avoid overchecking conditions?
I currently have a command handling interface that is implemented by a few different classes for different command types. I'm using the Decorator Pattern in conjunction with an IoC container (Unity in ...
4
votes
1answer
75 views
Dynamically add a decorator to class
I have a rather large and involved decorator to debug PyQt signals that I want to dynamically add to a class. Is there a way to add a decorator to a class dynamically?
I might be approaching this ...
4
votes
3answers
184 views
How can I send variables to Jinja template from a Flask decorator?
Many routes around my blueprinted flask app will need to send 'sidebar data' to jinja.
I'm looking for the most efficient way to do this. Their has to be something better than importing my ...
0
votes
2answers
35 views
decorator to set attributes of function
I want different functions to be executable only if the logged in user has the required permission level.
To make my life more complexly simply I want to use decorators. Below I attempy to set ...
2
votes
2answers
57 views
How to operate decorator on derived python class?
I would like to use a decorator to do something with a derived class (e.g. register the class or something). Here is my code:
from functools import wraps
class Basic(object):
def __init__(self):
...
1
vote
1answer
79 views
Decorator pattern - how do I NOT call the copy constructor at initialization?
I have an issue trying to use the decorator pattern. The constructors are printing out addresses for debugging. Compiled with:
g++ -g -o go Decorator.cpp
My simplified code:
#include ...
0
votes
0answers
37 views
Authentication decorators in Django
In Django, are authentication decorators considered business logic? I have a few extra parameters in my models, which require additional authentication decorators.
1
vote
1answer
70 views
Copying complex data structures in Java
I am using Composite pattern in my Java program, such that a Component is being extended by three classes.
Leaf class extends Component
Composite extends Component
Decorator extends Component (for ...
1
vote
2answers
87 views
Head First Design Patterns - Decorator Pattern Description/Cost
I am quite new to OO Design Patterns and relatively new to Java.
My question is about the Decorator example in Head First Designer Patterns Starbuzz example.
I'm having trouble understanding how ...
2
votes
1answer
55 views
property decorator initialization in python
I was wondering if anyone knew if there are any subtle differences in using @property and a regular property?
Are there any problems that may occur with initialization for a property when using the ...
0
votes
1answer
122 views
Need A Good Example for Displaytag export with grouping column
I want a good example which show the use of decorator to export reports with displaytag.
I viewed the example provided by displaytag titled "What You See Is What You Get" Exports"
but onclick of ...
3
votes
2answers
79 views
Decorate a char* and char const* by pointer acquisition : good practice?
Hello I wanted to poll the public about my idea of doing a string class (like std::string) that would have a feature of being able to work on buffers provided by the client.
What are the dangers that ...
1
vote
1answer
67 views
Passing a parameter to the decorator in python
Why is this decorator with a parameter not working?
def decAny( f0 ):
def wrapper( s0 ):
return "<%s> %s </%s>" % ( any, f0(), any )
return wrapper
@decAny( 'xxx' )
def ...
0
votes
1answer
26 views
Dynamicaly decoratoring methods in a class on Python
I'm thinking about creating a decorator for a class, which can add a decorator dynamically to specific methods that start with a certain word, instead of manually adding the decorator to each method.
...


