KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > openedit > store > LinkedFile


1 /*
2  * Created on Dec 30, 2004
3  */

4 package com.openedit.store;
5
6 /**
7  * @author cburkey
8  *
9  */

10 public class LinkedFile
11 {
12
13     public void setPath(String JavaDoc inPath)
14     {
15         fieldPath = inPath;
16     }
17
18     public String JavaDoc getPath()
19     {
20         return fieldPath;
21     }
22
23     public void setDescription(String JavaDoc inDescription)
24     {
25         fieldDescription = inDescription;
26     }
27
28     public String JavaDoc getDescription()
29     {
30         return fieldDescription;
31     }
32
33     protected String JavaDoc fieldDescription;
34     protected String JavaDoc fieldPath;
35
36 }
37
Popular Tags