1 38 39 package org.apache.cocoon.faces.samples.components.model; 40 41 42 import java.io.Serializable ; 43 44 45 50 51 public class ImageArea implements Serializable { 52 53 54 56 57 60 public ImageArea() { 61 } 62 63 64 72 public ImageArea(String alt, String coords, String shape) { 73 setAlt(alt); 74 setCoords(coords); 75 setShape(shape); 76 } 77 78 79 81 82 private String alt = null; 83 84 85 88 public String getAlt() { 89 return (this.alt); 90 } 91 92 93 98 public void setAlt(String alt) { 99 this.alt = alt; 100 } 101 102 103 private String coords = null; 104 105 106 109 public String getCoords() { 110 return (this.coords); 111 } 112 113 114 119 public void setCoords(String coords) { 120 this.coords = coords; 121 } 122 123 124 private String shape = null; 125 126 127 130 public String getShape() { 131 return (this.shape); 132 } 133 134 135 140 public void setShape(String shape) { 141 this.shape = shape; 142 } 143 144 145 } 146 | Popular Tags |