1 package org.lsst.ccs.utilities.structs;
2
3 /**
4 * A <TT>Pair</TT> whee the first element is a String.
5 * @author bamade
6 *
7 */
8 // Date: 18/11/12
9
10 public class ViewValue extends Pair<String, Object> {
11 public ViewValue(String view, Object value) {
12 super(view, value);
13 }
14
15 public String getView() {
16 return getX();
17 }
18
19 public Object getValue() {
20 return getY();
21 }
22
23 }
24