Documentation

Trace:

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
jvx:code_snippets [2020/07/01 13:37]
cduncan [Change XML Files Quickly]
jvx:code_snippets [2024/11/18 10:16] (current)
admin
Line 535: Line 535:
 </​file>​ </​file>​
  
-Dispatch ​Events:+Dispatch ​events:
  
 <file java> <file java>
Line 653: Line 653:
 ==== Remote Calls to JVx Without UI ==== ==== Remote Calls to JVx Without UI ====
  
-JVx is a full-stack application framework, but all parts are independent. It is no problem to use only the communication classes or the Swing controls without GenUI. This snippet shows how it is possible to use JVx only on server side. You have full session handling and the client is built with your preferred UIor if your client has no UI.+JVx is a full-stack application framework, but all parts are independent. It is no problem to use only the communication classes or the Swing controls without GenUI. This snippet shows how it is possible to use JVx only on server side. You have full session handling and the client is built with your preferred UI or if your client has no UI.
  
-Use JVx on server-side as usual. Integrate it into an application server like Tomcator use it standalone.+Use JVx on server side as usual. Integrate it into an application server like Tomcat or use it standalone.
  
 Use the communication classes to access server objects and actions. A simple object call could be implemented like the following snippet. Use the communication classes to access server objects and actions. A simple object call could be implemented like the following snippet.
Line 837: Line 837:
 import java.io.IOException;​ import java.io.IOException;​
  
-import ​javax.rad.genui.UIDimension;​ +import ​jvx.rad.genui.UIDimension;​ 
-import ​javax.rad.genui.UIInsets;​ +import ​jvx.rad.genui.UIInsets;​ 
-import ​javax.rad.genui.celleditor.UIDateCellEditor;​ +import ​jvx.rad.genui.celleditor.UIDateCellEditor;​ 
-import ​javax.rad.genui.celleditor.UIImageViewer;​ +import ​jvx.rad.genui.celleditor.UIImageViewer;​ 
-import ​javax.rad.genui.celleditor.UINumberCellEditor;​ +import ​jvx.rad.genui.celleditor.UINumberCellEditor;​ 
-import ​javax.rad.genui.component.UIButton;​ +import ​jvx.rad.genui.component.UIButton;​ 
-import ​javax.rad.genui.component.UILabel;​ +import ​jvx.rad.genui.component.UILabel;​ 
-import ​javax.rad.genui.container.UIGroupPanel;​ +import ​jvx.rad.genui.container.UIGroupPanel;​ 
-import ​javax.rad.genui.container.UIPanel;​ +import ​jvx.rad.genui.container.UIPanel;​ 
-import ​javax.rad.genui.container.UISplitPanel;​ +import ​jvx.rad.genui.container.UISplitPanel;​ 
-import ​javax.rad.genui.control.UIEditor;​ +import ​jvx.rad.genui.control.UIEditor;​ 
-import ​javax.rad.genui.layout.UIBorderLayout;​ +import ​jvx.rad.genui.layout.UIBorderLayout;​ 
-import ​javax.rad.genui.layout.UIFormLayout;​ +import ​jvx.rad.genui.layout.UIFormLayout;​ 
-import ​javax.rad.io.IFileHandle;​ +import ​jvx.rad.io.IFileHandle;​ 
-import ​javax.rad.model.ColumnDefinition;​ +import ​jvx.rad.model.ColumnDefinition;​ 
-import ​javax.rad.model.ColumnView;​ +import ​jvx.rad.model.ColumnView;​ 
-import ​javax.rad.model.ModelException;​ +import ​jvx.rad.model.ModelException;​ 
-import ​javax.rad.model.RowDefinition;​ +import ​jvx.rad.model.RowDefinition;​ 
-import ​javax.rad.model.condition.ICondition;​ +import ​jvx.rad.model.condition.ICondition;​ 
-import ​javax.rad.model.condition.LikeIgnoreCase;​ +import ​jvx.rad.model.condition.LikeIgnoreCase;​ 
-import ​javax.rad.model.datatype.StringDataType;​ +import ​jvx.rad.model.datatype.StringDataType;​ 
-import ​javax.rad.model.reference.ReferenceDefinition;​+import ​jvx.rad.model.reference.ReferenceDefinition;​
  
 import com.sibvisions.apps.showcase.Showcase;​ import com.sibvisions.apps.showcase.Showcase;​
Line 1740: Line 1740:
 The above method tries to find the first equals condition with the given column name. The above method tries to find the first equals condition with the given column name.
  
-The method doesn'​t work with recursion because usually this is not necessary. If you want to know the different condition types, simply check ''​toString()''​ of ''​javax.rad.model.condition.BaseCondition''​.+The method doesn'​t work with recursion because usually this is not necessary. If you want to know the different condition types, simply check ''​toString()''​ of ''​jvx.rad.model.condition.BaseCondition''​.
  
 ==== Connection Property Changed Listener ==== ==== Connection Property Changed Listener ====
Line 1799: Line 1799:
  * 11.08.2016 - [JR] - creation  * 11.08.2016 - [JR] - creation
  */  */
-package ​javax.rad.application;​+package ​jvx.rad.application;​
  
-import ​javax.rad.ui.IComponent;​ +import ​jvx.rad.ui.IComponent;​ 
-import ​javax.rad.ui.container.IDesktopPanel;​ +import ​jvx.rad.ui.container.IDesktopPanel;​ 
-import ​javax.rad.util.IRunnable;​+import ​jvx.rad.util.IRunnable;​
 import javax.swing.JComponent;​ import javax.swing.JComponent;​
 import javax.swing.SwingUtilities;​ import javax.swing.SwingUtilities;​
Line 1898: Line 1898:
  * 11.08.2016 - [JR] - creation  * 11.08.2016 - [JR] - creation
  */  */
-package ​javax.rad.application;​+package ​jvx.rad.application;​
  
-import ​javax.rad.application.genui.UILauncher;​ +import ​jvx.rad.application.genui.UILauncher;​ 
-import ​javax.rad.remote.IConnection;​+import ​jvx.rad.remote.IConnection;​
  
 import com.sibvisions.rad.application.Application;​ import com.sibvisions.rad.application.Application;​
Line 1983: Line 1983:
 package com.sibvisions.forum;​ package com.sibvisions.forum;​
  
-import ​javax.rad.application.SimpleTestLauncher;​ +import ​jvx.rad.application.SimpleTestLauncher;​ 
-import ​javax.rad.genui.UIFactoryManager;​ +import ​jvx.rad.genui.UIFactoryManager;​ 
-import ​javax.rad.genui.container.UIPanel;​ +import ​jvx.rad.genui.container.UIPanel;​ 
-import ​javax.rad.genui.layout.UIBorderLayout;​ +import ​jvx.rad.genui.layout.UIBorderLayout;​ 
-import ​javax.rad.model.reference.ReferenceDefinition;​+import ​jvx.rad.model.reference.ReferenceDefinition;​
  
 import org.junit.BeforeClass;​ import org.junit.BeforeClass;​
This website uses cookies for visitor traffic analysis. By using the website, you agree with storing the cookies on your computer.More information