Tagged Questions
The class-attributes tag has no wiki summary.
7
votes
2answers
345 views
documenting class attributes
I'm writing a lightweight class whose attributes are intended to be publicly accessible, and only sometimes overridden in specific instantiations. There's no provision in the Python language for ...
6
votes
2answers
145 views
Class attribute evaluation and generators
How exactly does Python evaluate class attributes? I've stumbled across an interesting quirk (in Python 2.5.2) that I'd like explained.
I have a class with some attributes that are defined in terms ...
5
votes
7answers
716 views
Real world use of custom .NET attributes
What kind of things have you used custom .NET attributes for in the real world?
I've read several articles about them, but I have never used custom attributes.
I feel like I might be overlooking ...
4
votes
2answers
358 views
C# Class and Oracle Mapping Parameters
I have a type declared in an Oracle Database:
CREATE OR REPLACE TYPE t_project_code_changes AS TABLE OF obj_project_code_change;
I map to this type in C# like so
...
4
votes
1answer
227 views
Overriding inheritance on intrinsic attributes in C#
After wrestling with a bunch of uncaught exceptions when trying to serialize my classes and subclasses, I've finally understood what my problem had been: [Serializable] isn't inherited by subclasses ...
3
votes
1answer
25 views
How can I read the attributes assigned to the properties of a class?
Given the following class
Public Class Customer
Inherits XPBaseObject
Private _CustomerID As Integer = -1
<Key(True), _
Custom("AllowNull", "True"), _
Custom("AutoInc", ...
3
votes
2answers
62 views
How to reference the type of a private class from an assembly-level attribute?
I have defined an assembly level attribute class FooAttribute like this:
namespace Bar
{
[System.AttributeUsage (System.AttributeTargets.Assembly, AllowMultiple=true)]
public sealed class ...
3
votes
1answer
40 views
Why class level attributes work with Null
I would think the following would throw NullPointerException
class N {
static int i;
public static void main( String ... args ) {
System.out.println( ((N)null).i );
}
}
But ...
3
votes
2answers
177 views
Can I mark a class as not my code so the debugger steps over it?
I have a utility class that has been thoroughly tested, and I do not want the VS debugger to step into any of its methods. I think I have heard of a way to mark something as not my code so that the ...
3
votes
2answers
232 views
Perl class attribute composition?
Suppose I have multiple roles, each one defining a set of items:
package A;
use Moose::Role;
sub items () { qw/apple orange/ }
package B;
use Moose::Role;
with 'A';
sub items () { qw/watermelon/ }
...
3
votes
2answers
2k views
Overwriting the class on a `Html.EditorFor`
by the default with
<%: Html.EditorFor(m => m.ConfirmationHeadline) %>
the output is:
<input type="text" value=""
name="ConfirmationHeadline" id="ConfirmationHeadline"
...
3
votes
4answers
152 views
Class attributes with a “calculated” name
When defining class attributes through "calculated" names, as in:
class C(object):
for name in (....):
exec("%s = ..." % (name,...))
is there a different way of handling the numerous ...
2
votes
3answers
85 views
why superclass attributes are not available in the current class' namespace?
Example:
class A:
a = 1
class B(A):
b = 2
y = b # works fine
x = a # NameError: name 'a' is not defined
x = A.a # works fine
z = B()
z.a # works fine
B.a # works fine
Why is x ...
2
votes
2answers
51 views
Python paradigm for “derived fields”/“class attributes from calculations”
I have a class that, let's say, computes a person's insurance risk, and a few other variables are computed during computation. I will need access to the risk and the other variables later.
class ...
2
votes
3answers
211 views
What's the simplest most elegant way to utilize a custom attribute
So a little confession, I've never written an attribute class. I understand they serve the purpose of decorating classes with flags or extra functionality possibly.
Can someone give me a quick ...
2
votes
2answers
116 views
Python - Referencing class attribute from another class attribute
In python, I want to have a class attribute which is a dictionary with initialized values.
I wrote the code like the below.
class MetaDataElement:
(MD_INVALID, MD_CATEGORY, MD_TAG) = range(3)
...
2
votes
4answers
226 views
Dynamically create class attributes
I need to dynamically create class attributes from a DEFAULTS dictionary.
defaults = {
'default_value1':True,
'default_value2':True,
'default_value3':True,
}
class Settings(object):
...
2
votes
2answers
675 views
Redirecting function definitions in python
This is a very contrived example as it's not easy to explain the context in which I have ended up implementing this solution. However, if anyone can answer why this particular peculiarity happens, I'd ...
1
vote
4answers
235 views
Is it acceptable to use single quotes around values in HTML attributes? [closed]
Possible Duplicate:
HTML single quotes a “problem”?
As in,
<span class='classname'>Hi</span>
instead of
<span class="classname">Hi</span>
Works, ...
1
vote
1answer
298 views
Inheritable attributes in ruby classes
Greets to all!
I want to describe each kind of product by a class:
# Base product class
class BaseProduct
prop :name, :price # Common properties for all inheritable products
end
class Cellphone ...
1
vote
2answers
487 views
How does one document class attributes using Doxygen?
I'm attempting to document class attributes using Doxygen. Currently, the protected attributes show up in the list at the top of the page for the specific class. I'd like to put an explanation for ...
1
vote
2answers
190 views
Reflection and attributes — removal? modification? OR windows service in full trust?
I want to remove the security permissions from a class I don't have access to the source for. Is it possible to, via reflection, remove or modify the attribute?
...
1
vote
2answers
69 views
Implementing class descriptors by subclassing the `type` class
I'd like to have some data descriptors as part of a class. Meaning that I'd like class attributes to actually be properties, whose access is handled by class methods.
It seems that Python doesn't ...
1
vote
1answer
659 views
Ruby - update class attributes hash when a property changes
I'm trying to write a ruby class that works similarly to rails activerecord model in the way that attributes are handled:
class Person
attr_accessor :name, :age
# init with Person.new(:name ...
1
vote
6answers
175 views
Python and object/class attrs - what's going on?
Can someone explain why Python does the following?
>>> class Foo(object):
... bar = []
...
>>> a = Foo()
>>> b = Foo()
>>> a.bar.append(1)
>>> b.bar
[1]
...
1
vote
3answers
228 views
Setting attributes of a class during construction from **kwargs
Python noob here,
Currently I'm working with SQLAlchemy, and I have this:
from __init__ import Base
from sqlalchemy.schema import Column, ForeignKey
from sqlalchemy.types import Integer, String
from ...
1
vote
3answers
810 views
Python: Inheritance of a class attribute (list)
inheriting a class attribute from a super class and later changing the value for the subclass works fine:
class Unit(object):
value = 10
class Archer(Unit):
pass
print Unit.value
print ...
1
vote
1answer
104 views
Redirecting function definitions in python
Pointing the class method at the instance method is clearly causing problems:
class A(dict):
def __getitem__(self, name):
return dict.__getitem__(self, name)
class B(object):
def ...
0
votes
2answers
50 views
Creating constant in objective-c that is called like a class property? (e.g. classA.KEY_FOR_ITEM1)
What would be the way to create a constant in objective-c that is called like a class property? (e.g. classA.KEY_FOR_ITEM1)
That is I see the advice re how to create a constant here ...
0
votes
1answer
83 views
Add an attribute to an existing C# class without losing existing extension methods?
I have an existing partial class that has extension methods applied to it, in one project.
I want to add an attribute to that class within a different project, but when I create a second partial ...
0
votes
1answer
292 views
Webservice expose a complex type to the client in wsdl
I have (to make things easy) 2 classes
1) abstract class A
2) inherited class B from A.
now i'm using a method "callMethod(A argument)"
which is exposing my abstract class in the wsdl.
But the ...
0
votes
2answers
60 views
How can I apply one or more attributes to all classes in a project?
Hi
How can I apply an attribute to all classes in a particular project?!
And is it enough to apply CLSCompliant attribute to just one class or do I have to apply to all classes?
Thanks for your ...
0
votes
2answers
361 views
Remove class attribute in inherited class Python
Consider such code:
class A ():
name = 7
description = 8
color = 9
class B(A):
pass
Class B now has (inherits) all attributes of class A. For some reason I want B not to inherit ...
0
votes
2answers
110 views
Passing object instance data to Attribute
I would like to pass certain data from an instance of an object to its attribute, and I have troubles inderstanding how to implement it. Here's a sample:
[AuthenticateAttribute]
public class ...
0
votes
5answers
151 views
Possibility of Implementing Minimize-to-Tray in C# in an Attribute
Attributes are awesome. But is it possible to create a C# attribute class that, when tagged, makes your application minimize to the system tray?
Technically, the attribute would need to be placed on ...
0
votes
2answers
105 views
Comments within style= attributes - safe?
I am working on a CMS that generates CSS "style='xyz'" statements from user input.
The user input will be validated but as an additional safeguard, I want to check the validity of the values on ...