1
vote
0answers
44 views

State Design Pattern Implementation

I am trying to apply the State Design Pattern to an instant messenger program that I am building. The program is built on top of an existing instant messenger API. I am essentially creating a wrapper ...
0
votes
0answers
15 views

StateListDrawable containig Drawables with different bounds

Suppose I have a StateListDrawable. I want to add 2 drawables inside it: the first if it is clicked, second for any other state. I tried it as following (pseudo-code): Drawable clickdDrawable = ...
0
votes
3answers
68 views

Replace words in Strings

I have a on/off button that I want to change the value of a String, if the String contains randomnessOn it will change to randomnessOff and vice versa. I can't just override the String because it ...
1
vote
0answers
37 views

any experience with Statecharts frameworks for Java? [closed]

Does anybody have experience on things like Yakindu or Kieler? I have started playing with Yakindu and so far I like it, but I can't find many references and feedback to it.
1
vote
1answer
61 views

Java state machine library for extending a generic state machine

I have a messaging program where we take in field values from a GUI and transform it into a generic message. The generic message will contain a certain type of state machine based on the type of ...
0
votes
0answers
222 views

Too many “java.lang.Thread.State: WAITING (parking)” when dump thread on Java game server by Netty

I am running a Socket Game Server base on Netty framework. This time, the server have a serious problem: CPU usage 0% and didn't accept anymore connection suddenly. The average CCU is about 1000 I ...
2
votes
2answers
92 views

Java StateBased Game - Run outside of eclipse

I have created a game using LWJGL and Slick2d. I tried exporting my game as a runnable JAR, but when I double click the JAR nothing happens. Is there any way to find out why it isn't working or ...
1
vote
1answer
70 views

Can guard condition be a method call?

I want to make a state diagram. I saw this link on wikipedia about guard conditions - wiki. Can I have a method call (getKeyCount() == 0) instead of a guard condition (key_count == 0)?
0
votes
1answer
385 views

Breadth First Search algorithm gets stuck in infinite loop

I am trying to implement a Breadth First Search algorithm for 8puzzle. I am somehow not able to get in the `is(RequiredState(see))` condition where my search terminates. My program gets stuck in an ...
1
vote
2answers
204 views

Is implementing state pattern a good design choice for simple chess game? [closed]

I am trying to write an offline no AI no GUI synchronized command-line chess game that two users play (or one user play both white & black). That means there's only 1 thread. The chess game ...
-6
votes
4answers
85 views

Java - Boolean state not changing

I've got this code here: if ( event.getSource() == Square0 ) { if ( PlayerOneTurn == true ) Square0.setBackground(Color.red); if ( PlayerOneTurn == true ) ...
0
votes
1answer
131 views

What is an example of state pattern in Core Java/JSF/Servlets?

I just learnt about the State pattern . I would like to know where in core Java / JSF/Servlets code s can I see this pattern being implemented ? I want to see how the state transition is implemented ...
2
votes
1answer
93 views

Who defines state transitions in the state pattern?

I understand that the State pattern can be used to model objects that changes behavior depending on the state and the various states that the Context can have is encapsulated in concrete classes that ...
0
votes
2answers
84 views

Unable to pause when trying to save EditText

Hi people of Stack...... I am trying to get my app to save the text with the EditText box so that when the user closes the app and re-opens it there entry fields stay saved, but I am getting an NPE ...
1
vote
0answers
43 views

global environment handled w/ multiple invocations of script engine

We am curious about how global variables are handled by script engines. We am looking for a script engine that does not preserve the state of global variables upon invocation. Are there such engines ...
0
votes
1answer
66 views

By reference vs by value java

I am trying to solve the famous 8-puzzle, where a 3*3 square is filled with 1 empty slot and 8 numbers, solving is to return it to the original state. to do this, I have a "state" of arraylist which ...
1
vote
3answers
333 views

Saving a “CHECK” checkbox state on starting app

Hi I got a problem with "saving status of my checkbox". In my case: check status- enables sounds, uncheck status - disables them. On my options.xml I got set up: <CheckBox ...
7
votes
2answers
168 views

Idiomatic way of keeping a stateful lookup table with indexes in Clojure

I am fairly new to Clojure and functional programming in general and I've been struggling with the following problem. I'd like to assign a unique and stable index to a series of tokens (strings). ...
2
votes
4answers
89 views

Java:Can reading from a HashMap change its state?

Concurrent updates to non-synchronized HashMap can obviously cause a livelock or other data corruptions; to avoid this, one should use the concurrent version or implement a synchronization mechanism. ...
1
vote
0answers
233 views

Android network connectivity states missing.

I'm trying to assess my phones ability to connect to my wifi network. I want to figure out how long it takes to authenticate to my wifi access point, how long it is taking to obtain an IP address, ...
2
votes
1answer
379 views

Setting the SWT Button to pressed state programmatically?

I am trying to set a SWT Button into a "pressed" state programmatically. Is that possible somehow? Update: What I am trying to achieve - is render draw a Button in it's selected state onto an Image. ...
0
votes
3answers
1k views

How to implement a FSM - Finite State Machine in Java

I have something to do for work and I need your help. We want to implement a FSM - Finite State Machine, to identify char sequence(like: A, B, C, A, C), and tell if it accepted. We think to implement ...
0
votes
2answers
122 views

Storing variables through onDestroy() event

I'm looking for a way to store the state of my variables that may have been changed from there initiation variable (ever by user activating a function or other) through the onDestroy() event so that ...
6
votes
2answers
101 views

Where to put application state?

Where in the code do I best put object creation (stateful objects) and where not? In what layers? For example, I once put an object reference inside a Hibernate DAO class and I was told that this was ...
0
votes
1answer
247 views

Enum State pattern for android

I'm trying to create a Enum STATE pattern so I can set the current state of my operations. In C# (i think) I used this pattern: Enum State { STARTED, STOPPED, PAUSED }; State _s; public foo() { ...
0
votes
0answers
105 views

Change UI State in netbeans. Does Netbeans have a state window concept for Java?

I am creating a UI application which has multiple UI states. I was wondering if I could manage states using netbeans functionality. I had used flex before and they do have a way of managing states. A ...
2
votes
1answer
141 views

Web Application needs to remember object states - Suggestion for solution needed

I am building a software system, which is using Javascript to display an editable queue of server task (say program xyz is doing stuff on the server one task at a time). Browser UI (O-O JavaScript ...
0
votes
0answers
145 views

How to check a thread's state programmatically in Java 1.4

For Thread t, in Java 1.5 we can call: t.getState() to get its state. How can I do this in Java 1.4?
0
votes
1answer
91 views

Tracking file state while editing files with Desktop.getDesktop().edit(File file)

Is it somehow possible to keep track of the current file state when opening/editing a file by calling Desktop.getDesktop().edit(File myFile)? My goal is to lock a shared file (which is stored in a ...
1
vote
1answer
41 views

App wont store state when returned home

When i connect my android phone to my computer, compile my project in eclipse and upload my app to my deivce everything works fine. Including pressing the home button, if i press home, and come back ...
0
votes
3answers
601 views

How to save the state of a checkbox without extra variables?

I have over 100 different checkboxes in 6 activites and i would like to save the state of each, so that when i switch from one activity to another, it remains checked. Do i really have to create over ...
0
votes
1answer
84 views

Simplest way to enforce “single-use”, two step Builder implementation of a factory class in java

Hi guys : I have a builder class, which should only be used once. For example, there is a "setup" constructor, and then a "to..." method which specifies the type of object to be built. For example ...
0
votes
2answers
56 views

Should I have two different variables in one class that represent almost the same thing

At first I had a class A that took a list B as constructor argument. This list B was kept within class A in a variable. Another class that used this class A needed the data in list B, but in a ...
1
vote
1answer
3k views

Test if a javax.swing.JButton is pressed down

I would like to check whether a certain javax.swing.JButton (regular push-button) is pressed down (before it was released). Is there any option at all to check whether a button is down? The most ...
1
vote
4answers
217 views

Java, how to make a thread that watches the state of a program?

I want to create a thread that will be constantly running in the background checking the state of a program as it runs. I just want to know how to keep it running and how to make the thread.
0
votes
1answer
151 views

Maintaining state in a spring application?

Just looking for a bit if theory regarding maintaining state of something in a spring application. For example imagine a game of poker running as a web app. There are a number of things to consider. ...
0
votes
1answer
524 views

Can I draw State-Transition diagrams in JSF2 Web App?

I'm looking for a way to draw state-transition diagrams in my JSF2 project. I would like to be able to load state and transition data and transform them in a graph that can be displayed on my web ...
0
votes
1answer
2k views

Android How to Save states of my listview

Is there a listviewObject.saveViewStates(view) function I can use? I have listviews, I have other listviews with custom adapters, but neither of these save states of the view. There is a lot of ...
2
votes
2answers
852 views

Android: How to ignore or disable savedInstanceState?

I want to ignore or disable savedInstanceState so that the state of current activity won't save when I go to the next activity. public void onCreate(Bundle savedInstanceState){ ...
1
vote
2answers
304 views

preserving component state across multiple request cycles

Question about component state management with Apache Wicket 1.4.x I have a bookmarkable, stateful page that contains a form with a set search criteria. The user search for items matching the ...
2
votes
5answers
1k views

How to extend states from multiple classes

(Please note: knowledge of the trading card game Magic: The Gathering will be a plus here. Sorry, I don't know how to put it any easier.) I have hit upon a problem using Java, which I'll describe as ...
2
votes
0answers
67 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 ...
1
vote
2answers
367 views

Android storage: OnSavedInstanceState not working?

I've read around SO and can't seem to find any answers regarding my problem. I've got an ArrayList of custom objects which implements Parcelable called listOfBuddies. I'm attempting to save it's state ...
2
votes
4answers
480 views

What is the best approach for implementing enable/disable methods in Java?

In Java, given a pair of public methods, enableFoo and disableFoo, that set a boolean field named isEnabledFoo to true or false, respectively, should the method check to see if Foo is already enabled ...
9
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 ...
1
vote
3answers
108 views

Might a State pattern help if I have only a few states?

If something has only two to three states, is it overkill to use the State pattern? Thanks in advance
2
votes
2answers
1k views

State pattern and Hibernate without Enum

I've searched for the implementation of the State pattern in Java with Hibernate and found several references to a solution using Enums in order to provide a flexible way to add new States to the ...
1
vote
2answers
1k views

Problem with getLastNonConfigurationInstance() - Seems to only ever return null

public class XPBN extends Activity{ private Map _map; @Override public void onCreate(Bundle savedInstanceState){ super.onCreate(savedInstanceState); ...
5
votes
2answers
3k views

Finite State Machine (FSM) and Android's Java

i'm willing to develop a soccer game for Android. Because the complexity of the AI, i really think i need to design it using a FSM (Finite State Machine) and not with a monster switch. Googling ...
0
votes
2answers
777 views

Minimizing a supplementary JFrame when main application JFrame gets minimized

The application I'm working on contains a main JFrame, from which users might eventually open another supplementary frame. I am trying to implement such a behavior of the app where the supplementary ...

1 2