1 16 17 package org.apache.jetspeed.util.types; 18 19 20 27 28 29 public class MetaInfo { 30 31 32 33 35 private String _title; 36 37 private String _description; 38 39 private String _image; 40 41 43 45 public String getTitle() { 46 return this._title; 47 } 48 49 50 public void setTitle ( String _title ) { 51 this._title = _title; 52 } 53 54 public String getDescription() { 55 return this._description; 56 } 57 58 59 public void setDescription ( String _description ) { 60 this._description = _description; 61 } 62 63 public String getImage() { 64 return this._image; 65 } 66 67 68 public void setImage ( String _image ) { 69 this._image = _image; 70 } 71 72 } | Popular Tags |