Public mutator methods in object-oriented programming, responsible for changing and returning the value of private class members, thus keeping with the principle of encapsulation.

learn more… | top users | synonyms (2)

-5
votes
3answers
48 views

How to call variable from other class in C#

How do I call a variable from other class to another? I have to call out to another class named StartGame. For an example, in class Ball. public class Ball { public int speedX { get; private set; ...
0
votes
1answer
21 views

Flex: Help me understand data Binding on getters and setters

Help me understand data Binding When I create a variable in a class: [Bindable] private var _name:String; and then generate getters and setters, I get: private var _name:String; ...
18
votes
4answers
309 views

Using getter/setter vs “tell, don't ask”?

Tell, don't ask principle here is often pasted to me when I use getters or setters, and people tell me not to use them. The site clearly explains what I should and what I shouldn't do, but it doesn't ...
0
votes
3answers
45 views

Is it generally considered a bad practice to alter the object's state via its getter method?

I've been thinking about this for a while during my past development. I am kind of against doing such things, I've normally declared a separate method that explicitly handle the logic. E.g. If a ...
0
votes
1answer
43 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
53 views

Accessing a const value from an instance in C#

I need to access a const class value in an instance of that class, without knowing the type of the class, and also be able to access it on the class itself. How can I do this? Example of what I want ...
0
votes
1answer
24 views

Properties that are read-only, but only outside of the class

Is there a way to create a property that can be changed within the class, but still accessed with objectName.propertyName outside of it? I'm curious if I can access the property without a get method ...
0
votes
1answer
22 views

Getter for mutable object

I read many articles as how to write right getter/ setter for mutable object as Date or Array. But when I changed this on public Date getDateTo() { return (Date) dateTo.clone(); } ...
1
vote
0answers
22 views

Difference between GetGetMethod method and GetMethod property?

.Net 4.5 has PropertyInfo.GetMethod as a property on PropertyInfo class. Is it doing anything different from PropertyInfo.GetGetMethod method? The documentation page is virtually blank. The only ...
0
votes
1answer
55 views

Defining a virtual attribute in Rails and making it available as a symbol

I've defined a couple of virtual attributes, defining both the setter and the getters methods: class Post < ActiveRecord::Base def shared_to_all # evaluates some expression of the attribute ...
1
vote
1answer
67 views

Values returning null when using getter

I'm trying to inderstand what I'm doing wrong here, but it realy doesn't make sense to me. I have a class calleld LatLongBean Here I'm trying to parse an XML feed. I have a method where I do all the ...
0
votes
3answers
65 views

how to use simple getter and setter with android

I have a class country with an arraylist that stores countries. I have created a get and set to add and get items from specified indexes from the array list but i wont work. Whenever i call an index ...
0
votes
3answers
75 views

How do I write setters and getters for an array? (c++)

Im writing a class within c++, however I am not certain on how to create the setters and getters for the arrays (sorry for it being a basic question!) I am getting the following error: expected ...
1
vote
1answer
40 views

Clarication needed for implementing properties with the revealing module pattern using Html5 getters and setters

I've searched a lot for how to do properties in Javascript. Most all of the revealing module pattern I've seen has exclusively exposed functions, and from experience I know if I expose an object, I'm ...
0
votes
2answers
80 views

Python 2.7: How to build getter/setter functions to access class attributes without inheritance?

this is probably a super nub question, apologies. I'm trying to achieve an effect in Python I am familiar with from PHP, which is building getter and setter functions for private attributes. In PHP I ...
0
votes
2answers
37 views

how to fill virtual form fields with non-split attribue

I have a form with 3 virtual attributes (phoneAreaCode, phonePrefix and phoneSuffix) splitting a phone number into segments which gets joined together and saved to the database as phoneNum. When a ...
2
votes
1answer
63 views

If I'm creating completely custom getter and setter methods do I still need an @property declaration?

So I want to have a "property" on a class but I don't want to just hold that property in memory, I want to actually store it as an NSUserDefault and retrieve it when you get that property. So as such ...
0
votes
2answers
88 views

Cannot keep track of the value of my property in Objective-c

I have a problem with one property in one class. I am coding with iOS 6.1 if it makes any difference. The class is UIViewController and the property is the declared in the header file like so: // ...
2
votes
2answers
73 views

NullPointerException while filling an array

This is a question about NullPointerException, what I'm tring to do is to set a symbol to every piece in my "pieces" array (the method setSymbol exists, and is a char value) I know this is null by ...
1
vote
1answer
93 views

Getter and setter for unique_ptr object (dependency injection)

I have a class MyClass that owns an instance of some DataProvider class and has a getter for this. For the sake of Dependency Injection I would prefer to have a getter and a setter. Additionally the ...
-3
votes
2answers
91 views

Cast a string to Class in java [closed]

I am Passing a string to a setter method PostPublication postPublication = new PostPublication(); /* * Class MessageCont = Class.forName(messageContext * ...
0
votes
1answer
93 views

Why does a python @property getter method run twice for each call and can I stop it?

I have a misbehaving iPython that runs getters twice (but not setters): class C(object): @property def foo(self): print 'running C.foo getter' return 'foo' @foo.setter ...
1
vote
1answer
54 views

creating an object out of array php codeigniter for login system

i have a simple question, i'm creating a simple login system, and i want to assign user info into model class after success login, example model class user extends CI_Model { public ...
0
votes
1answer
149 views

How do I set up a javascript Class with inheritance + private properties + getters / setters

I wish to use https://github.com/mozilla/BrowserQuest/blob/master/server/js/lib/class.js with private inheritable properties and also some getters and setters in there. Basically I want the getter / ...
2
votes
4answers
56 views

Override setter in Objective-c. Why check is equal parameter

Often find custom setter sintaxis like this: - (void)setParentCatalog:(Catalog *)parentCatalog { if (_parentCatalog != parentCatalog) { //??? _parentCatalog = parentCatalog; [self ...
0
votes
3answers
98 views

How do I return from a getter of an asynchronous property?

I have over-ridden a getter that requests an online service to get a result. How do I force the getter to return the result only from synchronous block ? @interface MyClass () @property (nonatomic, ...
1
vote
5answers
24 views

Resolving an approach for two setters affecting each other

I have a custom class, holding a string for gender, and a bool value for server interaction. .h @interface Member : NSObject ... @property (nonatomic, strong) NSString *gender; @property (nonatomic) ...
1
vote
3answers
41 views

How does getting and setting affect assigning of variables?

C# Homework question: we're doing an exercise in getting and setting, and accessing variables in a very convoluted manner. I have a user message being generated by an if...then loop: if (condition ...
0
votes
1answer
36 views

Inner class actionlistener

In different parts of my code, I will be running a similar variant of: _grid[4][4].addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent ...
0
votes
3answers
56 views

Extracting Value from an Array in Java

I have this code: _leftArray[0] = _square[6][4]; _leftArray[1] = _square[8][4]; _leftArray[2] = _square[9][5]; I want to be able to extract the values of the array. I'd like to write a method that ...
0
votes
1answer
25 views

Writing basic method that uses multidimensional array in Java

I have this little bit of code _grid[4][4].setText(_square[4][4].getTopColor() + ": " + _square[4][4].getHeight()); Eventually in my program, the text will change because the value of ...
0
votes
1answer
16 views

javascript ajax method: flushing setter

I've got a following javascript object: var UsersControl = { users: null, fetchData: function() { $.ajax({ type: "GET", dataType: "json", context: ...
0
votes
3answers
81 views

Changing a variable in another class without a static variable?

in the program that I am writing at the moment, I have 2 JFrames (each in a different class, each has a different purpose, however you could consider the widget frame to be a slave of some sort), one ...
0
votes
1answer
21 views

Renaming getter on renaming instance member?

In Eclipse one can generate a getter for an instance member, it then looks like this: private String abc; // generated using Source - Generate Getters and Setters public String getAbc() { return ...
1
vote
2answers
100 views

Override Setter in Subclass

I'm stuck with a problem here. I want to change the setter from a attribute from the superclass (parent class) in my subclass (child) however when I overide this method in my subclass I can't access ...
0
votes
0answers
116 views

Getter Setter - Null pointer Exception Android

I am setting the location values using getter setter in one class and using it in another activity class where i am getting null pointer exception. I am using singleton pattern for the same. Here is ...
0
votes
1answer
80 views

Passing a parameter to a getter/setter?

I have a subclass passing a parameter to the super class like so: public int CountMenuItems(List<string> Items) { //Returns sub-class total item count return Items.Count; } All my ...
0
votes
2answers
72 views

Using += and -= operators in the getter/setters of a Dictionary object

So, I have: Dictionary<some_enumerator, int> available_spaces; Dictionary<some_enumerator, int> occupied_spaces; Dictionary<some_enumerator, int> total_spaces; The idea being that ...
0
votes
3answers
80 views

Perform business logic after getters are called

I would like to write my business logic after the getters and setters are called (twice), because I use their object values inside the business logic. However Construct, Post construct, ...
2
votes
3answers
135 views

Property with getter always returns 0

This is blowing my mind. I have this class with the following properties: public IEnumerable<QuestionModel> Questions { get; set; } public int TotalQuestions { get { return ...
0
votes
1answer
58 views

Default Get method in custom java class

java n00b here. I have a custom Data type defined like this: public class MyData{ int value; int type; String name; public MyData(int newValue, int newType, string newName) { ...
4
votes
6answers
224 views

Magic getters and setters in Enterprise Architect

I'm using Enterprise Architect to make a UML class diagram and generate PHP5 code with it. Using this, one can make getters and setters for an attribute, which looks like this in the code (only ...
1
vote
1answer
127 views

Generate getters and setters for PHP in Enterprise Architect

I'm using Enterprise Architect to make a UML class diagram and generate PHP5 code. How can I generate getter and setter methods for a certain class?
0
votes
1answer
67 views

Best practice to ensure member variable string is uppercase in c# (getter toUpper)

So I wanted to pose this question to you guys, its a simple thing but i wanted to find a better way. We have data that should always be uppercase but we allow lower case inputs that should be ...
0
votes
1answer
81 views

C# class getting / setting IEnumerable variable statement error

I'm receiving build errors in the class properties when getting & setting an enumeration of another class that has it's own separate getters & setters. There are two of the same errors in the ...
1
vote
1answer
104 views

Generate Getters and setters without underscore (not prefix/suffix) + eclipse

My variable is private String category_code = null; My getter and setter is generated as public String getCategory_code() { return category_code; } public void ...
1
vote
2answers
34 views

Through which method is the value invoked if magic getter is combined with getter

If I use it like this (outside of a class): $user_agent = $user->user_agent; Method get_user_agent() is called in constructor. Here magic __get calls method get_user_agent and not ...
0
votes
4answers
97 views

How to force use of a setter method without using private ? (public for read, private for write) [duplicate]

I have a Circle class type of object for which I have a member 'r' to store the radius. Now because I use these objects a lot, I don't want to make the radius private because other classes would to ...
0
votes
1answer
43 views

JavaScript Object defineProperties and max

I'm learning the basics of OOP in JavaScript and I'm having some issues with this example: var Human = function (first, surname) { var x = {}; Object.defineProperties(x, { first: { ...
-6
votes
3answers
97 views

How do you use encapsulation to make code more maintainable and reusable? [closed]

Please show an example explaining how to demonstrate code maintainability using encapsulation? Why are getter and setter methods used for this?

1 2 3 4 5 9