This pattern is used to represent the state of an object.
50
votes
3answers
11k views
How to prevent Custom Views from losing state across screen orientation changes
I've successfully implemented onRetainNonConfigurationInstance() for my main activity to save and restore certain critical components across screen orientation changes.
But it seems, my custom views ...
19
votes
2answers
12k views
How to preserve control state within tab items in a TabControl
I am a newcomer to WPF, attempting to build a project that follows the recommendations of Josh Smith's excellent article describing The Model-View-ViewModel Design Pattern.
Using Josh's sample code ...
2
votes
1answer
1k views
Using static variables instead of Application state in ASP.NET
I plane to use static variables instead of Application state in ASP.NET and am wondering if this is correct approach:
[Global.asax.cs]
...
public class Global : System.Web.HttpApplication
{
...
4
votes
3answers
18k views
Android save Checkbox State in ListView with Cursor Adapter
I cant find a way to save the checkbox state when using a Cursor adapter. Everything else works fine but if i click on a checkbox it is repeated when it is recycled. Ive seen examples using array ...
32
votes
2answers
15k views
Android: how to add a custom button state
For instance, the default button has the following dependencies between its states and background images:
<?xml version="1.0" encoding="utf-8"?>
<selector ...
26
votes
7answers
8k views
Advantages of stateless programming?
I've recently been learning about functional programming (specifically Haskell, but I've gone through tutorials on Lisp and Erlang as well). While I found the concepts very enlightening, I still don't ...
6
votes
2answers
8k views
Maintain state of a dynamic list of checkboxes in ASP.NET MVC
I have a class called "PropertyFeature" which simply contains PropertyFeatureID and Description. It's a proper model created through LINQ to SQL mapped to an SQL Server database table. An example ...
7
votes
5answers
5k views
what does it mean when they say http is stateless
I am studing java for web and it mentions http is stateless.
what does that mean and how it effects the programming
I was also studying the spring framework and there it mentions some beans have to ...
11
votes
3answers
11k views
Android : How to update the selector(StateListDrawable) programmatically
I want to update the selector for a button programmatically.
I can do this with the xml file which is given below
<?xml version="1.0" encoding="utf-8"?>
<selector
...
8
votes
2answers
8k views
Detecting outgoing call and call hangup event in android
I have a requirement wherein I want to detect two kind of events related to Calls in Android
Whenever an outgoing call is made, my application should get to know this along with the called number
...
4
votes
3answers
7k views
How do I get state of a outgoing call in android phone?
I noticed in the class TelephonyManager there are CALL_STATE_IDLE, CALL_STATE_OFFHOOK and CALL_STATE_RINGING. They seem to be used for incoming calls.
What I actually want to do is to be notified ...
11
votes
1answer
2k views
How to preserve iPhone application state before terminating the application?
I have developed an iPhone application with tab bar and navigation controllers.
It is working fine for now.
Now I want the application to save its state before quitting.
Suppose I have 6 tabs and ...
129
votes
4answers
16k views
See :hover state in Chrome Developer Tools
I want to see the :hover style for an anchor I'm hovering on in Chrome. In Firebug, there's a Style dropdown that allows me to select the different states for an element. I can't seem to find anything ...
16
votes
4answers
1k views
Does C++ support compile-time counters?
For the purpose of introspection, sometimes I've wanted to automatically assign serial numbers to types, or something similar.
Unfortunately, template metaprogramming is essentially a functional ...
10
votes
3answers
11k views
Android ListView State List not showing default item background
Have read over a number of related questions here at SO, as well as looked through the Android docs and source to try to figure this out, but I am stumped, although given that the listSelector seems ...
4
votes
2answers
3k views
Handling standby on iPad using Javascript
Good evening all good folks.
I searched for a while in the Apple documentation regarding iPad events. However I found nothing in regards of how to determine if/when the iPad is changing from an awake ...
2
votes
1answer
206 views
is it possible to do 'stateless' programming in matlab / how to avoid checking data integrity?
My day to day work flow is something like this:
acquire raw data (~50GB)
parse raw data timing-information and build raw data structure (struct / object) from timing-information (what event occurred ...
9
votes
3answers
1k views
How to persist objects between requests in PHP
I've been using rails, merb, django and asp.net mvc applications in the past. What they have common (that is relevant to the question) is that they have code that sets up the framework. This usually ...
5
votes
3answers
2k views
How do you pass or share variables between django views?
I'm kind of lost as to how to do this:
I have some chained select boxes, with one select box per view. Each choice should be saved so that a query is built up. At the end, the query should be run.
...
2
votes
0answers
1k views
Accessing CallManager in Android
I am trying to use Java reflection to access CallManager and detect the time when a phone starts ringing for outgoing calls. Everything is running ok, except that all states I can detect is IDLE. I ...
2
votes
6answers
4k views
Replace individual list elements in Haskell?
I have a list of elements and I wish to update them:
from this: ["Off","Off","Off","Off"]
to this: ["Off","Off","On","Off"]
As I am somewhat new to Haskell, I have been using (x:xs)!!y to extract ...
1
vote
1answer
481 views
State transition diagram for reader writer problem
I'm not understanding my professor means when he says the write flag and read flag. Does 0 mean it is triggered?
He wants us to draw a state transition diagram but I think I can do that myself if I ...
27
votes
1answer
2k views
STArray documentation for newbies and State/ST related questions
I have a hard time to understand STArray from the documentation and other howtos/discussion I've found through Google. I've got some more related questions below.
According to the documentation, ...
8
votes
3answers
9k views
In javascript, how can I uniquely identify one browser window from another which are under the same cookiedbased sessionId
The users of my web application may have more than one browser window open and pointed to the same page. I would like the state of certain in things in the page (loaded via ajax) to be retained ...
7
votes
2answers
20k views
Android — How to properly handle onPause/onResume methods?
I have an app that starts playing sounds and begins/resumes gameplay in the onResume() method, but what I'm noticing is that if my app was the last run application when I put the phone into standby ...
4
votes
5answers
3k views
maintain state with spring between requests
I am new to spring so sorry if this is a beginners question, but the manual is not clear (at least not for me)
My question is: how do I share state between requests in spring?
I can send data from ...
18
votes
1answer
8k views
android fragment onRestoreInstanceState
Am I missing something or do Fragments not have a onRestoreInstanceState() method? If not, how do I go about attaining something similar?
4
votes
3answers
20k views
jQuery “active” class assignment
All I am trying to accomplish is to be able to have an unordered list of links in which one is clicked, the parent list item is assigned the class "active." Once another link is clicked within that ...
3
votes
4answers
2k views
ASP.net session state service information
Where can you get information on the ASP.NET State Service e.g. how it works, performance, behaviour characteristics etc.
Have looked on internet but cant find in depth information or an article ...
7
votes
2answers
715 views
How to simulate a corrupt state exception in .NET 4?
Well, in .NET 4 Microsoft added the HandleProcessCorruptedStateExceptions attribute:
HandleProcessCorruptedStateExceptionsAttribute Class
I want to test this feature. How can I bring my application ...
3
votes
3answers
3k views
Android: Saving a state during Android lifecycle
I am refering to http://developer.android.com/reference/android/app/Activity.html.
I have an activity which can be "interrupted" by the user, e.g. the user opens the menu to call the preferences ...
2
votes
2answers
687 views
App States with BOOL flags
I've got 5 states in my app, and I use BOOL flags to mark them. But it isn't straightforward, because I have to write 5 lines to change all flags when I want to change state.
Can you write some ideas ...
2
votes
0answers
66 views
I had multiple triggers A,B which caused transitions between two states S1 and S2, would that pose any problems? [closed]
I looked into some state diagrams online and don't see any with multiple events which lead to transitions between two states...
For example I have two states A and B and a number of events that can ...
2
votes
2answers
578 views
HttpApplicationState - Why does Race condition exist if it is thread safe?
I just read an article that describes how HttpApplicationState has AcquireRead() / AcquireWrite() functions to manage concurrent access. It continues to explain, that in some conditions however we ...
1
vote
3answers
2k views
onRestoreInstanceState not called when screen wake up?
I've wrote all the needed code to save my Activity state (a simple form with EditText widgets) and restore it on phone rotation and it works great.
My problem is on managing screen on/off changes: ...
39
votes
14answers
3k views
How can you do anything useful without mutable state?
I've been reading a lot of stuff about functional programming lately, and I can understand most of it, but the one thing I just can't wrap my head around is stateless coding. It seems to me that ...
28
votes
1answer
861 views
Maintaining complex state in Haskell
Suppose you're building a fairly large simulation in Haskell. There are many different types of entities whose attributes update as the simulation progresses. Let's say, for the sake of example, that ...
17
votes
5answers
2k views
Functional Reactive F# - Storing States in Games
I am a student currently learning about Functional Reactive paradigm using F#. It's radically new viewpoint for me. Yesterday I learned about creating a simple ping-pong game using this paradigm. The ...
10
votes
5answers
2k views
Haskell and State
Haskell is a pure functional programming language.
My question is:
What are the advantages and disadvantages of using Haskell to solve problems involving lots of state, for example GUI programming or ...
26
votes
5answers
2k views
ST Monad == code smell?
I'm working on implementing the UCT algorithm in Haskell, which requires a fair amount of data juggling. Without getting into too much detail, it's a simulation algorithm where, at each "step," a ...
6
votes
4answers
3k views
IOS Saving State For Complex Apps
I'm building a fairly complex business application on the iPad IOS 4.2: 4 tabs, with potentially deep navigational paths on each tab.
In the opinion of some of your more experienced IOS developers, ...
16
votes
3answers
1k views
How are mutable arrays implemented in Haskell?
I've read many research papers on this topic, and they usually argue that arrays are implemented using Monads. But none of these papers gave a clear definition of how the "type" Array itself should be ...
12
votes
2answers
2k views
Combine state with IO actions
Suppose I have a state monad such as:
data Registers = Reg {...}
data ST = ST {registers :: Registers,
memory :: Array Int Int}
newtype Op a = Op {runOp :: ST -> (ST, a)}
...
7
votes
2answers
8k views
ExtJS: Login with 'Remember me' functionality
I'm trying to create a simple login window with the very common 'Remember me' functionality. The login validation is done AJAX style, thus the browser won't remember my input.
My approach is to use ...
11
votes
3answers
635 views
Clojure namespace management - Is there a way to save and restore the state of clojure repl namespaces, imports etc.?
Clojure has a large number functions/macros for working with namespaces and java package imports. To my (limited) understanding the set up of namespaces can be considered state in a clojure process ...
7
votes
8answers
3k views
comparison of ways to maintain state
There are various ways to maintain user state using in web development.
These are the ones that I can think of right now:
Query String
Cookies
Form Methods (Get and Post)
Viewstate (ASP.NET only I ...
6
votes
2answers
2k views
Tools for experimental Protocol Design & Development?
Are there any open source, high level tools that would facilitate and simplify development of experimental network protocols (TCP/UDP) using a GUI?
Basically, something like a dynamic state machine ...
4
votes
1answer
1k views
HttpWebRequest and HttpWebResponse : maintaining state of logged in request for consecutive queries
I have a few HttpWebRequests and HttpWebResponses chained together, also using CookieContainer.
The code simulates a user going through three different 'I agree' pages which set the cookie info, ...
11
votes
15answers
2k views
What kind of problems are state machines good for? [closed]
What kind of programming problems are state machines most suited for?
I have read about parsers being implemented using state machines, but would like to find out about problems that scream out to be ...
5
votes
1answer
1k views
Basic State Machine setup using Stateless
I have some fairly simple state needs (for now). I think I would like to model these using the Stateless api. (But I don't really know much about state machines, so I could be wrong.)
But I am ...