Tagged Questions
The object-state tag has no wiki summary.
5
votes
4answers
1k views
How use bit/bit-operator to control object state?
I want to create light object data-package to pass between client and server applications.
It is a so simple task, that I can control with only 1 byte, so
each bit in a byte will have a different ...
3
votes
2answers
252 views
Serialize & print the entire state of an object while debugging
While debugging an ASP.NET application, I want to get a print-out of the entire state of a very large object. I want all the properties and values in that object and the same for every ...
3
votes
2answers
2k views
save and restore state of a tab bar controller
I have an application that has a UITabBarController with two tabs, each having its own navigation controller. Now I want to store the state of the application when the user closes it, so that when the ...
2
votes
3answers
61 views
Is there an easy way to remove the same object from 2 linked lists?
I have 2 linked lists.
I have the same object in both of those lists. By same object, I mean the object has the same state, but is referenced by a different object pointer.
I can call ...
1
vote
2answers
131 views
Getting the real State of SelfTracking Entities, including Navigation Properties
I would like to change the display of objects if they have unsaved changes. I thought I could just use ChangeTracker.State, but that doesn't change to Modified if I change a Navigation Property.
For ...
0
votes
1answer
16 views
Hibernate flush() and Cascade.PERSIST
I have been working on Hibernate since sometime and I never really paid attention to the flush() method until yesterday.
I understand that flush() is invoked automatically when the transaction is ...
0
votes
2answers
104 views
how to maintain the state of the object in web service
Is it possible to send the object to the web service and the web service returns the object?
is it possible to maintain the state of the object while sending it to the user through web service?
can ...