0
votes
1answer
19 views
Eclipse setting for generating getters and setters insertion point last member
It really annoys me already now... I can not find the setting to have by default insertion point at last member.
Why? Generating getters and setters would then be:
ALT+SHIFT+S -> …
0
votes
4answers
81 views
synthesize getters/setters in AS3
Hi,
Is there a way to synthesize getters/setters in AS3? It's very common that you have a class with lots of variables, especially in math calculations (Model in MVC pattern), tha …
2
votes
2answers
205 views
Magic __get getter for static properties in PHP
public static function __get($value)
does not work, and even if it did, it so happens that I already need the magic __get getter for instance properties in the same class.
This …
17
votes
18answers
1k views
Why use getters and setters?
What's the advantage of using getters and setters - that only get and set - instead of simply using public fields for those variables?
If getters and setters are ever doing more t …
0
votes
2answers
95 views
accessing struct variable inside getter setter in a c++ class
Okay, I have something like this in C++:
class MyClass{
private:
int someVariable;
int someOtherVariable;
struct structName{
int someStructVariable;
int someOtherSt …
1
vote
3answers
101 views
Custom getters in Ruby on Rails
I have a MailingList model that has_may :people
For most of my application, I only want to get people that are active
So @mailing_list.people should only return people that are a …
1
vote
3answers
183 views
Why does a readonly property still allow writing with KVC
I'm working through the "Key Value Coding" chapter in "Programming for Mac OS X". I've built an interface with a slider and a label, both bound to fido, an int. If I set the proper …
0
votes
1answer
76 views
Generating Indexed Property Getters/Setters in Eclipse
By default, eclipse generates getters/setters according to JavaBeans regular properties style:
* public void setName(String name)
* public String getName()
As of J2SE 5.0 JavaBe …
9
votes
12answers
515 views
What is the point of setters and getters in java?
Please forgive the length, but here are two programs, both the exact same, but one with and one without setters, getters, and constructors.
I've taken a basic C++ class before and …
0
votes
1answer
51 views
Proper way to modify an NSMutableDictionary instance variable?
Hello! I have an Objective-C NSMutableDictionary declared inside a class's @interface section, with getter/setter methods, like so:
@interface myClass : NSObject
{
NSMutable …
3
votes
4answers
782 views
Rhino Mocks AssertWasCalled (multiple times) on property getter using AAA.
I have a mocked object that is passed as a constructor argument to another object.
How can I test that a mocked object's property has been called? This is code I am using currentl …
1
vote
2answers
183 views
does the ‘getters and setters are evil’ fail for the view layer?
Many people know this article: more on getters and setters. I think it does a convincing job of portraying the evil side of getters/setters. I've also tested it by trying to conver …
0
votes
3answers
241 views
Setters/Getters, Visibility [ OOP ] in PHP
I'm in the process of reformatting my class ( seen below ) - I think I made the mistake of setting everything with the same visibility in my class, whereas properties should really …
2
votes
10answers
467 views
Java Interface Usage Guidelines — Are getters and setters in an interface bad?
What do people think of the best guidelines to use in an interface? What should and shouldn't go into an interface?
I've heard people say that, as a general rule, an interface mu …
0
votes
3answers
176 views
When is my C# property initialized?
I'm a little confused about when exactly my Property is being initialized.
Suppose I have a property declared like this:
private Dictionary<string, Dictionary<string,string …
