Tagged Questions

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 ...
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 ...
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
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 ...
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
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 ...