Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
11answers
9k views

Is there a way to simulate the C++ 'friend' concept in Java?

I would like to be able to write a Java class in one package which can access non-public methods of a class in another package without having to make it a subclass of the other class. Is this ...
13
votes
7answers
33k views

Getters/setters in Java

I'm new to Java, but have some OOP experience with ActionScript 3, so I'm trying to migrate relying on stuff I know. In ActionScript 3 you can create getters and setters using the get and set ...
10
votes
8answers
235 views

Is returning a reference for accessor idiomatic?

In C++, it is possible to create an accessor which returns a reference to a private field. class Cls { private: int _attr; public: int& attr() { return _attr; } }; such ...
8
votes
7answers
9k views

“Read only” Property Accessor in C#

I have the following class: class SampleClass { private ArrayList mMyList; SampleClass() { // Initialize mMyList } public ArrayList MyList { get { return mMyList;} ...
5
votes
2answers
128 views

attr_accessor strongly typed Ruby on Rails

Just wondering if anyone can shed some light on the basics of getter setters in Ruby on Rails with a view on strongly typed. I am very new to ruby on rails and predominately have a good understanding ...
5
votes
1answer
294 views

MATLAB Lazy Evaluation in Dependent Property

I have a class with a few properties that are dependent, but that I'd really like to calculate only once. I've just about concluded that using lazy evaluation on a dependent class property in MATLAB ...
5
votes
6answers
549 views

Accessor with different set and get types?

Simple question, hopefully a simple answer: I'd like to do the following: private DateTime m_internalDateTime; public var DateTimeProperty { get { return m_internalDateTime.ToString(); } // ...
4
votes
4answers
177 views

Definition of friend class and accessor sections

When defining a class as a friend class, does it matter in which accessor section the definitions is placed, and if so does that change the members the friend has access to? class aclass { private: ...
4
votes
3answers
395 views

Underscores not displayed in wpf

On my whole application, I've some underscores (_) which are not displayed. It's due to the accessor. But how can I disable it? Application wide? I don't have them on labels, textboxes, ... Thank ...
4
votes
3answers
594 views

How to avoid GeneratedSerializationConstructorAccessor problems?

We have a Java App that receives SOAP requests, and after a lot of requests we notice that the GC stops the world to unload a lot of GeneratedSerializationConstructorAccessor classes. This is a big ...
4
votes
3answers
1k views

C# set accessor accessible to all types in assembly, and get assessor only to derivated types. How to?

This property in a type with no access modifier (thus internal access): class SomeType { private int length; internal int Length { get { return length; } set length = value; } ...
4
votes
4answers
706 views

Is there a way for Ruby accessors to return something other than the set variable?

I want to do some checking in a writer accessor. My first idea was returning a boolean. class MyClass def var=(var) @var = var # some checking return true end end m = MyClass.new ...
3
votes
6answers
227 views

Is there a way to automatically generate getters and setters if they aren't present in C++?

I'm experienced with Objective-C, and in Objective-C you can let the compiler generate getters and setters for you if they aren't already present (@synthesize). Is there a way to do this in C++, or ...
3
votes
2answers
105 views

Properties without 'property type' in C#

I am converting a Delphi code to a C#. I have a complex classes structure where a class is the main 'trunk' of all its children. In Delphi I can define the private/protected field with a type and ...
3
votes
5answers
600 views

What is the best way to access properties from the same class, via accessors or directly?

This is something I'm not much consistent about and always curious about what other people do. How do you access internal properties (private or public)? For example you've got this property : ...
2
votes
1answer
52 views

Does key-value coding support declared property's custom accessor name?

Key-Value coding of Cocoa makes get/set operation to properties simple. Anyway documentation says it only recognized pre-defined naming patterns. I think Declared Property could be supported by this ...
2
votes
2answers
66 views

Ruby - Protected method

I have the following Ruby program: class Access def retrieve_public puts "This is me when public..." end private def retrieve_private puts "This is me when privtae..." end protected def ...
2
votes
1answer
103 views

Perl: Class::Struct Without the Type Constraints

I'm toying around with some code where bundling coderefs with variables makes sense, but using full blown OOD doesn't. Basically, I'm writing functional code but resorting to a select few OO-style ...
2
votes
2answers
157 views

Hash keys as accessors in a class

I'm working on a class that reads some sensor information and returns it as a hash. I would like to use the hash keys as accessors, but I'm not having much luck getting it work. Here are the ...
2
votes
3answers
1k views

PHP's _get & _set or unique get and set functions for each variable?

PHP has _get and _set functions built in. Is it better to write my own get and set functions for each variable or use the built in functions with a ton of if else if? What are the pros and cons of ...
1
vote
4answers
56 views

I wrote Accessors and Mutators methods, but still I cant access private variables! why?

I wrote my class with its private variables and then I wrote the accessor and mutator methods needed to access those variables, but that does not work when I run it after writing the main class. Why ...
1
vote
1answer
98 views

Why is my default attribute accessor not being overwritten?

I have an Article model. The database schema has several columns including 'title'. I am trying to provide my own getter in place of the method_missing-provided getter. At present I am trying simply: ...
1
vote
1answer
30 views

UnitTest WorkflowInstanceID Exception

I am unit testing a StateMachineWorkflow and I create my test methods by clicking in my test project and I make Add - UnitTest. In the project window I select the workflow that I want to test and all ...
1
vote
4answers
56 views

What's the fastest way to interpret a nested javascript object attribute accessor string?

Say I have a nested object structure like: var o = { a: { b: { c: 1 } } }; and I have a an accessor String like "a.b.c". What's the fastest function to return the specified nested value (to any ...
1
vote
2answers
113 views

VS 2010 (and publicize.exe) create xxx_accessor.exe instead of .dll

I'm having a strange problem with private accessors and VS2010. Normally, VS and publicize.exe create a xyz_accessor.dll and xyz_accessor.pdb. Unitl yesterday, my VS also did this. But then I built ...
1
vote
4answers
94 views

Databinding issue with textbox and accessors

I am wondering what am I missing? The binding is not displaying at all in the textbox. These are my codes: XAML Namespace: xmlns:c="clr-namespace:mySystem.Workspace" DataContext and Resources: ...
1
vote
4answers
858 views

c# property get,set with different types

I have such an enum and a property. public enum Type { Hourly = 1, Salary = 2, None = 3 }; public string EmployeeType ...
1
vote
2answers
173 views

Why do I get a “parse error before '@' token” when I try to build this simple XCode project?

Complete newbie question. I'm learning Objective-C from Kochan's book. When I try to build the following very simple project, I keep getting a parse error before '@' token referring to the ...
1
vote
2answers
226 views

Method to access/set a session object in C# .net

I currently have the following code: public MyObject SessionStore { get { if (Session["MyData"] == null) Session["MyData"] = new MyObject(); return (MyData) ...
1
vote
2answers
400 views

Serializing private member data

This is not a duplicate of this question. I have to serialize the Property which is "ReadOnly". I can't do anything on this class, because this is "System.Web.Security.MembershipUser" class, of course ...
1
vote
1answer
177 views

Do methods which return Reference Types return references or cloned copy?

I've been learning Java these days and what I've read just is "Be careful not to write accessor methods that return references to mutable objects" which is really interesting. And now I am wondering ...
1
vote
1answer
363 views

Please help with C++ syntax for const accessor by reference

Right now my implementation returns the thing by value. The member m_MyObj itself is not const - it's value changes depending on what the user selects with a Combo Box. I am no C++ guru, but I want to ...
1
vote
3answers
226 views

Objective-C :: using a method to change an object

I have a class called "CardSet", containing an NSMutableArray* cardSet to hold "cards", which I extend to make "DeckCards". I'd like "CardSet" to have a method called "(void)addCard:(Card*)" (and ...
1
vote
8answers
457 views

“Forward-unbreakable” accessor class templates [C++]

Unless I am thoroughly mistaken, the getter/setter pattern is a common pattern used for two things: To make a private variable so that it can be used, but never modified, by only providing a ...
0
votes
2answers
66 views

c++ int accessor return 0 even if mutator sets properly

I'm stuck at a problem I feel stupid about as it's basically just two lines of code in midst of a 2000 line working OOP script. Cut to the chase - I have an Entity class which provides various ...
0
votes
0answers
20 views

Why does the MSTest accessor file contain a “desktop” reference

I am using VS2010 to create a new unit test project to test my solution. After I created the unit tests, the VS created a .accessor file. I know it is used to help test the private or protect members. ...
0
votes
4answers
58 views

Abstract classes and accessors

Main Question: I have a reference type (object/class) where I would like to specify accessors' implementation details, but I don't want the type to be instantiable, only extendible. Abstract Classes ...
0
votes
2answers
37 views

Accessor that returns value vs accessor that returns reference?

From my understanding both of the following getter methods reference the actual object. So what is the difference between the two? When and why would you want to use the second getter method? - ...
0
votes
1answer
91 views

On eclipse C++ code style single line format

I have a problem with eclipse's code style, here is the problem: when I write an accessor or a modifier in C++ code, for example: string GetName() { return name; } then I press ctrl+shift+f and ...
0
votes
2answers
108 views

Why am I getting a null pointer exception when attempting to access an object?

I am just trying to access a static object, containing an employee's information, from the main driver class. But when I try to do so using its getter method, I get the old employee information data ...
0
votes
1answer
62 views

Trying to make build rules to create accessor class to resx file

I have resources.resx file in my C++/CLI project and want to create a build to to automatically build an accessor class to help access the resources when needed. I have searched a lot but haven't ...
0
votes
2answers
89 views

Odd warning and missing _Accessor when compiling on new computer

I had to resurface my development computer recently, including reinstalling VS2010. So far as I can tell, I reinstalled everything the same as previously. However, when I compile my project I get a ...
0
votes
2answers
171 views

Rails: difference between attr_accessor and attr_accessible

What is the difference? Also, why does this not work: The variables such as base_path are not being set. class Cvit < ActiveRecord::Base attr_accessible ...
0
votes
1answer
80 views

Selenium Accessor not storing variable

I would like to store a value that's inside the inner HTML of a span tag of id="ctl00_body_BatchEditor_LblBatchIdentifyingNumber" with the Selenium IDE. And then I want to take that variable and use ...
0
votes
1answer
148 views

django-tables2 linkColumn accessor

I have been using django-tables2 which I like, but i run into some problems I am trying to make a table in which cells link out to a different table, or an outside link the example in the ...
0
votes
2answers
188 views

Writing a simple class with accessors and mutators

I am very much a newbie to Java. I have been asked to Write a java class for a very simple Course class, named Course, that has the data members name and credit hours (e.g. "Programming and Logic I", ...
0
votes
3answers
680 views

Objective-C: Custom BOOL accessor (getter & setter) methods

I know someone already asked about Writing getter and setter for BOOL variable. But, if I'm defining a custom getter & setter methods setImmediate & isImmediate, respectively, I'd like ...
0
votes
1answer
2k views

How do I access my Application Delegate's window accessor method from another object?

As mentioned before - I'm an Objective-C newbie of the first order but having read 4 physical books on the subject and a bucket-load of ebooks and documentation I still can't find what I'm looking ...
0
votes
0answers
64 views

UNIT TEST - how to regenerate accessor

I'm using mvc and writing unit tests, but I have problem when I'm testing private methods. I use Accessor and when I commit my changes other people working on same project can't run my test because ...
0
votes
0answers
282 views

Java Null-pointer-safe accessor [closed]

Possible Duplicate: Java “?” Operator for checking null - What is it? (Not Ternary!) I just read this article, which claims that: Take the latest version of Java, which tries ...

1 2