| author | Vrishali Doke | 2012-04-26 06:16:05 (EDT) |
|---|---|---|
| committer | Stephan Born | 2012-06-15 10:39:35 (EDT) |
| commit | 33d21de041920fb74329e3a30232237b775d0fec (patch) (side-by-side diff) | |
| tree | ac975adfa44baa01086b3523f4c32e603178758b | |
| parent | 27bfd895b5f2a8b9d964019e31511077aa2d103b (diff) | |
| download | org.eclipse.stardust.documentation-33d21de041920fb74329e3a30232237b775d0fec.zip org.eclipse.stardust.documentation-33d21de041920fb74329e3a30232237b775d0fec.tar.gz org.eclipse.stardust.documentation-33d21de041920fb74329e3a30232237b775d0fec.tar.bz2 | |
CRNT-24520 - Updated the text for zip file and the class files for package name changes
git-svn-id: http://emeafrazerg/svn/ipp/product/trunk/stardust/documentation@55826 8100b5e0-4d52-466c-ae9c-bdeccbdeaf6b
| -rw-r--r-- | org.eclipse.stardust.docs.dev/html/handbooks/tutorial/jfc/jfc-example.html | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/org.eclipse.stardust.docs.dev/html/handbooks/tutorial/jfc/jfc-example.html b/org.eclipse.stardust.docs.dev/html/handbooks/tutorial/jfc/jfc-example.html index c6701b6..712f077 100644 --- a/org.eclipse.stardust.docs.dev/html/handbooks/tutorial/jfc/jfc-example.html +++ b/org.eclipse.stardust.docs.dev/html/handbooks/tutorial/jfc/jfc-example.html @@ -34,7 +34,7 @@ You can download the example source code as well as the complete
model from the following link as a ZIP file:</p>
<ul>
- <li><a href="PLUGINS_ROOT/org.eclipse.stardust.docs.dev/html/examples/tutorials/jms/jms.zip">JMS Examples Sources</a></li>
+ <li><a href="PLUGINS_ROOT/org.eclipse.stardust.docs.dev/html/examples/tutorials/jfc/jfc.zip">JFC Examples Sources</a></li>
</ul>
<h2 id ="jfc">Working with JFC Application</h2>
@@ -69,7 +69,7 @@ activities GetDataUsingJFC and ShowJFCData, we need to create a class which cont access points. The following is the code snippet of DemoJFC class file.</p>
<pre>
-package ag.carnot.hydra.jfc;
+package java.com.examples.jfc;
import java.awt.GridLayout;
import java.util.Date;
@@ -82,6 +82,7 @@ import javax.swing.JTextArea; import javax.swing.JTextField;
/*
+ * @author:Manali
* This will take string as input from user using JFC and will display output as simple String (not using JFC).
* Model used - JFCSwingModel.DemoProcess
*/
@@ -258,12 +259,13 @@ public class DemoJFC extends JPanel { jfcapp.save();
}
-}
+}
+
</pre>
<p>Also, create a POJO class named <strong>PersonDetails</strong>. The following is the code snippet for PersonDetails class.</p>
<pre>
-package ag.carnot.hydra.jfc;
+package java.com.examples.jfc;
import java.util.Date;
@@ -405,6 +407,7 @@ public class PersonDetails }
}
+
</pre>
<p>You need to add these classes to src folder of your project.</p>
|

