All Questions
4 questions
2
votes
2
answers
2k
views
How to go about calling parent's instance method from child instance?
This question is a continuation of a question originally posted here.
I'm trying my hand at creating a Snake clone with JavaFX. One of the
requirements for the game is to have a sort of powerup food, ...
1
vote
0
answers
162
views
Proper Separation of Concerns in GUI Development
The Situation
I'm developing a JavaFX desktop application that can be described in three parts:
The Data
The GUI
The Process
The GUI is a means of seeing and editing the data and the process is a, ...
1
vote
0
answers
255
views
GUI that builds an object - how to design the GUI?
I'm currently writing the GUI for my application. As I understand in a MVC-like application are the following components for each feature:
Business data: a complex object hierarchy containing all the ...
4
votes
1
answer
920
views
Should I use JavaFx properties? [closed]
I'm usually very careful to keep my Model, View, and Controller code separate. The thing is JavaFx properties are so convenient to bind them all together. The issue is that it makes my entire code ...