6
votes
1answer
226 views
WPF - Is there a good reason that Setter.Value isn’t a ContentProperty?
Every time I write out a setter whose Value property value isn't describable inline, I curse the fact that the API doesn't mark the Setter class with [ContentProperty("Value")], wh …
5
votes
7answers
7k views
How to generate getters and setters in Visual Studio?
By "generate", I mean auto-generation of the code necessary for a particuliar selected (set of) variable(s).
But any more explicit explication or comment on good practice is welco …
3
votes
4answers
549 views
Setter Methods
Is it necessary for setter methods to have one argument? Usually setter methods accept one argument as the value of a certain property of an Object. What if I want to test first th …
3
votes
8answers
398 views
Data verifications in Getter/Setter or elsewhere ?
I'm wondering if it's a good idea to make verifications in getters and setters or elsewhere in the code.
This might surprise you be when it comes to optimizations and speed-ing …
2
votes
8answers
351 views
[C++] getter and setter, pointers or references? and good syntax to use?
Hi,
I would like to know a good syntax for C++ getters and setters.
private:
YourClass *pMember;
the setter is easy I guess:
void Member(YourClass *value){
this->pMember …
2
votes
2answers
202 views
How do I modify the set method signature that Eclipse auto generates?
My current project has the coding convention that instance variables are never referred to with the this. prefix and that parameters should never hide instance variables.
This res …
2
votes
8answers
236 views
Modifying setter argument - is it hack or not?
Is it normal to modify setter arguments? Let's imagine that we have setString method. And we really want to keep a trimmed form of the string. So a string with trailing spaces is i …
1
vote
3answers
137 views
C#: Problem calling method inside a string property setter
I have a string property that defines a filename for an xml file. When the user inputs this filename into the property, I have the setter calling a parseXml() function immediatly …
1
vote
1answer
71 views
Setter.Value instead of Setter in Silverlight
I know I can write a Setter in Silverlight like this:
<Setter Property="Background" Value="{StaticResource MyBrush}" />
However, due to other considerations, I have to wri …
1
vote
3answers
433 views
Objective-C Setter Memory Management
Still a little confused about Objective-C memory management. I think my confusion stems from what exactly the autorelease means.
NSString *theBackendResponse = [[NSString alloc] i …
1
vote
6answers
1k views
getter and setter for class in class c#
Hello. I a little problem.
Assuming we have a class InnerClass with attributes and getter/setter. We also have a class OuterClass containing the InnerClass.
e.g.
class InnerClas …
1
vote
3answers
167 views
Is it possible to have class.property = x return something other than x?
Let's say I have a Ruby class:
class MyClass
def self.property
return "someVal"
end
def self.property=(newVal)
# do something to set "property"
success = true
return …
1
vote
2answers
478 views
Rhino Mocks - Verify Property Set when Property has no Get
If you have a property:
public class Fred
{
public string UserName
{
set
{
userName=value;
}
}
}
how do you use Rhino Mocks to check that
fred= …
0
votes
3answers
71 views
How to set custom property as XAML value?
I have this library with custom Color properties. I wanna be able to use these properties in XAML like this:
<Style TargetType="{x:Type eg:MyWindow}">
<Setter …
0
votes
1answer
60 views
Flex + Cairngrom + getter setter on a bound VO
I feel like this should be a simple thing, but here I am asking the question after a good amount of frustration.
Ok I have a project I'm doing in Cairngorm in Flex 3. In one of t …
