1 /*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19
20 package org.apache.myfaces.custom.fisheye;
21
22 /**
23 * @author Thomas Spiegl
24 */
25 public class FishEyeItem {
26 private String _caption;
27 private String _iconSrc;
28 private String _target;
29
30 public FishEyeItem(String caption, String iconSrc) {
31 _caption = caption;
32 _iconSrc = iconSrc;
33 }
34
35 public FishEyeItem(String caption, String iconSrc, String target) {
36 _caption = caption;
37 _iconSrc = iconSrc;
38 _target = target;
39 }
40
41 public String getCaption() {
42 return _caption;
43 }
44
45 public void setCaption(String caption) {
46 _caption = caption;
47 }
48
49 public String getIconSrc() {
50 return _iconSrc;
51 }
52
53 public void setIconSrc(String iconSrc) {
54 _iconSrc = iconSrc;
55 }
56
57 public String getTarget() {
58 return _target;
59 }
60
61 public void setTarget(String target) {
62 _target = target;
63 }
64 }