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