| author | Vrishali Doke | 2012-05-14 05:24:59 (EDT) |
|---|---|---|
| committer | Stephan Born | 2012-06-15 10:40:26 (EDT) |
| commit | cb9f4832adc4b5c4b765204297660219b0dea41d (patch) (side-by-side diff) | |
| tree | 3f5f0897815bab5c2e56f136754d70005d701262 | |
| parent | 7522af8dbd29e49ae3787a917c0dc9d700d933e0 (diff) | |
| download | org.eclipse.stardust.documentation-cb9f4832adc4b5c4b765204297660219b0dea41d.zip org.eclipse.stardust.documentation-cb9f4832adc4b5c4b765204297660219b0dea41d.tar.gz org.eclipse.stardust.documentation-cb9f4832adc4b5c4b765204297660219b0dea41d.tar.bz2 | |
CRNT-24748 - Updated DemoJFC.java class file
git-svn-id: http://emeafrazerg/svn/ipp/product/trunk/stardust/documentation@56298 8100b5e0-4d52-466c-ae9c-bdeccbdeaf6b
| -rw-r--r-- | org.eclipse.stardust.docs.dev/html/handbooks/tutorial/jfc/jfc-example.html | 11 |
1 files changed, 2 insertions, 9 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 712f077..a39a440 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 @@ -83,8 +83,8 @@ 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
+ * This class takes string as input in JFC panel and displays output as a simple String.
+ *
*/
public class DemoJFC extends JPanel {
@@ -158,13 +158,6 @@ public class DemoJFC extends JPanel { System.out.println("after adding fields");
}
- //if we create Person as structured data, then this method can be used. Currently not used.
- public void setPerson(PersonDetails person)
- {
- System.out.println("setperson called");
- this.person = person;
- nameField.setText(person.getName());
- }
//completion method for JFC application, saves data
public PersonDetails save() {
|

