You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
__mvvm(fx)__ is an application framework which provides you necessary components to implement the [MVVM](../../wiki/MVVM"MVVM") pattern with JavaFX.
3
+
**mvvmFX** is an application framework which provides you necessary components to implement the [MVVM](../../wiki/MVVM"MVVM") pattern with JavaFX.
4
4
5
-
__MVVM__ is the enhanced version of the [Presentation Model](http://martinfowler.com/eaaDev/PresentationModel.html"Presentation Model") pattern and was created by Microsoft engineers for [WPF](http://msdn.microsoft.com/en-us/library/ms754130.aspx"WPF"). JavaFX and WPF does have similarities like Databinding and descriptive UI declaration (FXML/XAML). Because of this fact we adopt best practices of the development with the Microsoft technology.
5
+
**MVVM** is the enhanced version of the [Presentation Model](http://martinfowler.com/eaaDev/PresentationModel.html"Presentation Model") pattern and was created by Microsoft engineers for [WPF](http://msdn.microsoft.com/en-us/library/ms754130.aspx"WPF"). JavaFX and WPF does have similarities like data binding and descriptive UI declaration (FXML/XAML). Because of this fact we adopted best practices of the development with the Microsoft technology and introduced new helpers to support the development of applications with JavaFX and MVVM.
@@ -20,7 +20,7 @@ This is the stable release that can be used in production.
20
20
<dependency>
21
21
<groupId>de.saxsys</groupId>
22
22
<artifactId>mvvmfx</artifactId>
23
-
<version>1.6.0</version>
23
+
<version>1.7.0</version>
24
24
</dependency>
25
25
```
26
26
@@ -32,7 +32,7 @@ Here we make bug fixes for the current stable release.
32
32
<dependency>
33
33
<groupId>de.saxsys</groupId>
34
34
<artifactId>mvvmfx</artifactId>
35
-
<version>1.6.1-SNAPSHOT</version>
35
+
<version>1.7.1-SNAPSHOT</version>
36
36
</dependency>
37
37
```
38
38
@@ -44,21 +44,23 @@ Here we develop new features. This release is unstable and shouldn't be used in
44
44
<dependency>
45
45
<groupId>de.saxsys</groupId>
46
46
<artifactId>mvvmfx</artifactId>
47
-
<version>1.7.0-SNAPSHOT</version>
47
+
<version>1.8.0-SNAPSHOT</version>
48
48
</dependency>
49
49
```
50
50
51
51
52
52
### Get Help
53
53
54
-
If you need help you can use the forums on [Google Groups](https://groups.google.com/forum/#!forum/mvvmfx-dev)for asking questions and interacting with the mvvmFX developers. Additionally you can create issues, report bugs and add feature requests on the issue tracker at [github](https://github.com/sialcasa/mvvmFX/issues).
54
+
The best way to get help with mvvmFX is to either ask questions on StackOverflow using the [tag "mvvmfx"](https://stackoverflow.com/questions/tagged/mvvmfx) or to use our [Google Groups](https://groups.google.com/forum/#!forum/mvvmfx-dev)mailing list. Additionally you can create issues, report bugs and add feature requests on the issue tracker at [github](https://github.com/sialcasa/mvvmFX/issues).
Copy file name to clipboardexpand all lines: examples/contacts-example/src/main/java/de/saxsys/mvvmfx/examples/contacts/model/countries/DataFxCountrySelector.java
0 commit comments