Source code: com/sonoma/objects/spParagraph.java
1 /*
2 * dbParagraph.java
3 *
4 * Created on October 5, 2001, 5:27 AM
5 */
6
7 package com.sonoma.objects;
8
9 /**
10 *
11 * @author Administrator
12 * @version
13 */
14 public class spParagraph {
15 private String msCiteTitle;
16 private String[] msURLTitle;
17 private String[] msURL;
18 private String[] msPictureFile;
19 private String[] msContent;
20 /** Creates new dbParagraph */
21 public spParagraph() {
22 }
23 public void setTitle(String value){
24 msCiteTitle = value;
25 }
26 public String getTitle(){
27 return msCiteTitle;
28 }
29 public void setURLTitle(String[] value){
30 msURLTitle = value;
31 }
32 public String[] getURLTitle(){
33 return msURLTitle;
34 }
35 public void setURL(String[] value){
36 msURL = value;
37 }
38 public String[] getURL(){
39 return msURL;
40 }
41 public void setPictureFile(String[] value){
42 msPictureFile = value;
43 }
44 public String[] getPictureFile(){
45 return msPictureFile;
46 }
47 public void setContent(String[] value){
48 msContent = value;
49 }
50 public String[] getContent(){
51 return msContent;
52 }
53 }