Tagged Questions

0
votes
1answer
18 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 -> …
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
38 views

Setting string in setter method

Is there something I need to do differently in setting a string in a setter method? This is my class: class SavingsAccount { public: void setData(); void printAccountData …
0
votes
2answers
93 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 …
9
votes
12answers
514 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 …
6
votes
5answers
643 views

A line of java code and what it does?

So I have purchased the book "Java for Dummies" 4th Edition, and I must say it is probably the best 30 dollars I have ever spent on a book. I'm not new to coding, am actually fair …
0
votes
0answers
40 views

AS3 - multiple level loaded swfs , unloading and assigning xml

I have a Main Document class that instantiates 2 classes that control loading of two navigation grid swfs. These are populated by xml from navigation buttons on the main stage. A 3 …
3
votes
4answers
99 views

Constant instance variables?

I use 'property' to ensure that changes to an objects instance variables are wrapped by methods where I need to. What about when an instance has an variable that logically should …
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 …
0
votes
1answer
65 views

How to set ContextMenu of a bound item?

I am trying to achieve the following: <Style TargetType="ListBoxItem"> <Setter Property="ContextMenu"> <Setter.Value> <ContextMenu> …
6
votes
14answers
603 views

Simple Getter/Setter comments

What convention do you use to comment getters and setters? This is something I've wondered for quite some time, for instance: /** * (1a) what do you put here? * @param salary ( …
0
votes
1answer
50 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 …
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
1answer
70 views

How can I access a property with a protected setter in my asp.net-mvc controller from fluent-nhibernate?

Using S#arp Architecture 1.0RC... I have a controller that never seems to update one of my properties. My class is a User abstract class with a Manager property. Manager is subcl …

1 2 3 4 next
15 30 50 per page