Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there anything similar to WPF and MVVM in Java world?

Tags:

java

.net

mvvm

wpf

Is there anything similar to WPF and MVVM in Java world?

like image 882
Ivan Avatar asked Jun 06 '10 15:06

Ivan


People also ask

Should I use MVVM for WPF?

The Windows Presentation Framework (WPF) takes full advantage of the Model-View-ViewModel (MVVM) pattern. Though it is possible to create WPF applications without using the MVVM pattern, a little investment in learning can make building WPF applications much simpler.

What is MVVM Architecture in WPF?

MVVM (Model-View-ViewModel) MVVM is a way of creating client applications that leverages core features of the WPF platform, allows for simple unit testing of application functionality, and helps developers and designers work together with less technical difficulties.

Where is MVVM used?

The pattern is often used in Windows and web graphics presentation software. The MVVM pattern is used in Windows Presentation Foundation (WPF), which runs on Microsoft's . NET. Silverlight, a Microsoft WPF internet equivalent multimedia plug-in, also uses MVVM.


1 Answers

Have you seen eFace ?

eFace is a XAML/WPF solution in Java. The first release is available for download now : http://www.soyatec.com/eface/installation/.

JavaFX provides some of the capabilities of WPF. See this SO answer for more details.

like image 108
Brian Agnew Avatar answered Oct 13 '22 18:10

Brian Agnew