A getter is public mutator method, used in object-oriented programming, which returns the value associated with a private member of a class.

learn more… | top users | synonyms (1)

0
votes
0answers
25 views

Naming convention for asynchronous getter

For synchronous getter functions, the naming convention is well-defined: var getFerby = function(){ .. return ferby; }; However, if the ferby I want is not locally (synchronously) ...
-1
votes
1answer
31 views

As3 beginner, Setter and Getter [closed]

I am currently making a simple falling object catcher game . I have created a class file and then a sub class to that file. I am trying to make it that for one of my objects/sub class to give more ...
1
vote
1answer
22 views

(How) can I make JAXB (MOXy) accept non-getters for marshalling?

JAXB can be efficiently used for dumping structures into XML with just few annotations. The poetry of JAXB is in not really needing to create some DTOs or or clutter the marshalled class too much with ...
2
votes
4answers
56 views

Getting a copy of an object

I don't fully understand when Java passes a copy/value and when it passes a "reference" (the pointer). I'm trying to assign a copy of a static object I have, but I'm not sure how to go about it. I ...
0
votes
0answers
16 views

Actionscript 3.0: Trying to adjust the falling speed of a class instance using the getter/setter methods (FIXED)

I'm very new to Actionscript 3.0 and am trying to create a function will determine how fast an object falls in catcher game example. I call this function ySpeed. Here's the code to my FallingObject ...
0
votes
3answers
28 views

get and set in java classes

i'm stumped. i want to optimise some code by including getters and setters. this is what i have so far: public class ThingHolder { private int updateCounter=0; private Object theThing; public Object ...
0
votes
1answer
31 views

Symfony override model getter with limit

Helo! The autogenerated getter of the base model is getting more than 5000 rows per queries. modellClass->getNameList() // returns more than 5000 row I am using echo_field to print the ...
-2
votes
3answers
69 views

Getters, Setters, Arrays

I am unsure if this is possible or not. I've done my research and didn't find much at all. This proves very difficult for me and I'm just hoping there is a way. Question: Is it possible to send the ...
0
votes
1answer
17 views

Calling getter in windows form from cpp class c++ returns nothing

I have a cpp class and a windows form. In cpp class I have declared getters(return char) and setters. The thing is that when I call the getters in form they seem to return nothing. I test the cpp in ...
0
votes
1answer
37 views

AS3: inline way to write get and set?

I was reading a tutorial and the user there was starting setters and getters like so function get f():Number; function set f(value:Number):void; inside an interface, then saving it in the ...
0
votes
1answer
52 views

C# property getter and setter implementation [duplicate]

What is the difference between the implementation of Class cl1 { public int var{get;set;} } and Class cl1 { public int var; } I mean, both are implemented like this - void Main() { ...
0
votes
0answers
41 views

How to use JAXB for generating getters with lazy initialization

I try to get beans generated with JAXB, where the getter-Methods have a implicit initialization (lazy initialization) like in the following example. public test.Address getAddress() { if ...
2
votes
2answers
32 views

Extends simple getter, setter Methods for Classes in C#

I have a abstract class 'Building': public abstract class Building { abstract public int ID {get;} abstract public string name {get;} } the class (for example) Headquarter : Building has the ...
9
votes
1answer
163 views

Why is a simple get-statement so slow?

A few years back, I got an assignment at school, where I had to parallelize a Raytracer. It was an easy assignment, and I really enjoyed working on it. Today, I felt like profiling the raytracer, to ...
-5
votes
0answers
24 views

Where is the error? [closed]

public class Student { private String name; private String cource; private int id; public int getId() { return id; } public String getName() { return name; } public String getCource() { ...
0
votes
1answer
33 views

Python Properties vs Combined Set/Get method

I know about properties in python and how they make it possible to use a classes attribute just like before but with some possible modification in between. Anyway, having done some perl recently I ...
0
votes
1answer
21 views

AS3 Extra Work When Getting/Setting a Property

I don't know if this has a special name or even possible. Consider this code; public dynamic class Foo { public function set (_key:String,_value:*):void { this[_key] = _value; ...
1
vote
1answer
65 views

Getters and math issue

I was attempting to experiment with getters in JavaScript, and tried to come up with the following to see just how getters would be useful in real world uses: Object.defineProperty(Number.prototype, ...
0
votes
1answer
22 views

Proper implementation of object parameters

I just want to make sure I'm doing this correctly. I'm a little confused between $this->parameter, $parameter and public $parameter Here's an example of what I'm doing. I want anything that's ...
1
vote
4answers
62 views

Use a variable returned in a getter method in another class

I am still learning but seem to fall at what should be very simple hurdles; my strong points seem to be with the logic of equations but I possess little skill at remembering and implementing functions ...
0
votes
2answers
52 views

Null exception on array

I'm very new to Java and programming and working on a class project, we're learning about i/o, arrays and objects and we have some pretty specific guidelines to follow. When the compiler gets to ...
0
votes
5answers
74 views

C# StackOverflowException when use getter

I have getter wich change first letter of string to capital. But I get StackOverflowException. namespace ConsoleApplication1 { class Program { class Human { ...
3
votes
2answers
62 views

Error in C++ class getters that return objects of other class

I am starting learning C++ and I can not solve this errors. I am trying to implement a class called IModeloDinamico that has as private members some objects of another class called FunctionParser ...
0
votes
0answers
14 views

Performing network requests in dynamic getters in Obj-C

So I am looking to create a custom accessor for an access token property in a class of mine. In the accessor I want to check to see if the access token is expired and if it is, then perform an API ...
-3
votes
1answer
56 views

Getters in Java [duplicate]

I am not really sure why I should use getter in this case. Consider the following example: public class Coin { private String sideUp; Coin() { sideUp = "heads"; } ...
0
votes
3answers
107 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
0answers
14 views

Getter using refernces and returning a constant variable

I have the following question: I define a class containing a private vector of (my) objects - i.e.: vector<myOtherClass> myVector; Then I would like to define a getter method which should not ...
2
votes
1answer
31 views

Can I access by property names in Velocity?

I got an example #set($organizationId = $layout.getGroup().getOrganizationId()) can I rewrite it as #set($organizationId = $layout.group.organizationId) ? Will it be exactly the same?
0
votes
1answer
50 views

javascript setters and getters

This has been driving me nuts! Its my first time using setters and gettings and im stumped. var Person = function () { var address = setPersonAddress(); this.setPersonAddress = function ...
2
votes
3answers
143 views

How to avoid getters/setters in classes with many instance variables

I'll try to keep it short. I have classes with many instance variables (30+) and hence many getters/setters. The classes by themselves are simple, but because of the getters/setters the LOC just ...
0
votes
2answers
107 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
1answer
25 views

Confused about reaching objects created in another class

public static void main(String[] args) { ReadAuthor ReadAuth = new ReadAuthor(); ReadCommands readCom = new ReadCommands(); } In ReadARticles class I have a method for creating arraylist of ...
-1
votes
3answers
74 views

Is it better to save getter value in variable instead of calling get many times?

I have Item item; which has getName() getter. I need to acces item.getName() in some loop. Is it better to call item.getName() in loop each time, or save it in additional variable and use that ...
0
votes
3answers
77 views

A private vector of pointers pointing to objects. How to access those objects with getter method?

My program is six iterations of a loop in which eight people vote for one another. Who each person votes for during each iteration is saved to the private class member voteList (a vector of pointers). ...
0
votes
3answers
107 views

Java: Generate custom Getters and Setters

I want to generate custom getters and setter, so I can handle variables better when I will be saving these instances into SQL database. I want to generate something like: public class Test extends ...
0
votes
3answers
57 views

Getter is crashing program

I am using a getter the same way that I always do (I think), and it crashes the program, but I cannot figure out why! Does anyone have any idea where my mistake is? its crashing on line 45 below: ...
0
votes
0answers
37 views

Explaination of automatically generated Getters of extJS MSVC

Stores, Models, Controllers and Views configurations automatically creates 'getters'. These getter have a specific behavior, In case of Views & Models, these getter return reference While in ...
-4
votes
5answers
72 views

Call a getter of Class1 from Class2

I have a very basic question regarding object-oriented programming. There are two classes - Class1 and Class2. I need to call a getter of Class1 from Class2 (please see the code). The problem is that ...
-3
votes
1answer
51 views

Initialize multiple array elements with getter on single index [closed]

Im trying to add 4 identifiers that I get from a user to an array with a method using getters. The user will continue to add more identifiers with each object. Basically: Please enter task ...
1
vote
3answers
65 views

Getters and setters for constants?

Is is possible to create getters and setters for constants? I want to refer to a constant directly, and have it instantiate itself if it's value is nil. A constant declared like this: // Prefs.h ...
0
votes
0answers
43 views

How to access properties of an object with dynamic macros in Velocity templates

I have a velocity template defined as follows: #macro(aMacro $par1) $par1 $par1.id #end ##dynamic macro call ==================== #set($macroName = "aMacro") #set( $call = "#$macroName('$p1')" ...
0
votes
0answers
38 views

Object is not persisting, leading to Null Reference Exception in C# WebForm

So I have a webform that with a variety of methods as well as a gridview. The function that builds the gridview also stores a subset of data in a List object. I need that at a later time so I created ...
5
votes
1answer
73 views

Python overriding getter without setter

class human(object): def __init__(self, name=''): self.name = name @property def name(self): return self._name @name.setter def name(self, value): ...
1
vote
6answers
106 views

why is my setter and getter methods not working?

I have been looking at my source code and can't figure out what is wrong with it. The problem I think is with the Circle class. When I call the mutators and accessors from the DriverCircle class it's ...
0
votes
0answers
70 views

Reload h:datatable on language change

I have a ViewScoped EJB: @ManagedBean(name = "myBean") @ViewScoped public class MyBean { private List<MyData> myDataList; the getter for the list only gets the value of the ArrayList public ...
0
votes
1answer
22 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 ...
0
votes
1answer
134 views

How to create new getter in the Magento grid

I have the following piece of code in my custom module grid. $this->addColumn('action', array( 'header' => Mage::helper('module')->__('Action'), 'width' ...
0
votes
0answers
64 views

auto generate empty functions from a given header in visual studio?

I am writing a class in C++ which has only vectors, and i want setters and getters for every vector. It would be really troublesome to write everyone of them..is there an easy way to generate all ...
2
votes
2answers
47 views

Field Subclass Accessing - Best Way Possible

So I've run into a bit of a problem dealing with preferences in a program. Considering the amount of times this will be used, having a single method would be best. A getter for each variable could ...
1
vote
3answers
39 views

Setter and Getter conventions

public class Score { private String score; public String getScore() { return score; } public void setScore(String score) { this.score = score; } } Working on ...

1 2 3 4 5 10