KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > oddjob > designer > components > ExistsDC


1 /*
2  * (c) Rob Gordon 2005.
3  */

4 package org.oddjob.designer.components;
5
6 import org.oddjob.designer.elements.simple.FileAttribute;
7 import org.oddjob.designer.model.FieldGroup;
8 import org.oddjob.designer.model.FileSelection;
9 import org.oddjob.designer.model.FormDefinition;
10 import org.oddjob.designer.model.StandardForm;
11
12 /**
13  *
14  */

15 public class ExistsDC extends BaseDC {
16
17     private FileAttribute file = new FileAttribute();
18         
19     public FormDefinition form() {
20             return new StandardForm(tag())
21                 .addGroup(basePanel())
22                 .addGroup(
23                         new FieldGroup("File Details")
24                         .add(new FileSelection("File", file)));
25     }
26         
27     public void setFile(FileAttribute file) {
28         this.file = file;
29     }
30     
31     public FileAttribute getFile() {
32         return this.file;
33     }
34     
35 }
36
Popular Tags