1 /**
2 * Copyright (C) 2010-14 pvmanager developers. See COPYRIGHT.TXT
3 * All rights reserved. Use is subject to license terms. See LICENSE.TXT
4 */
5 package org.epics.vtype;
6
7 /**
8 * Scalar short with alarm, timestamp, display and control information.
9 * Auto-unboxing makes the extra method for the primitive type
10 * unnecessary.
11 *
12 * @author carcassi
13 */
14 public interface VShort extends VNumber, VType {
15 /**
16 * {@inheritDoc }
17 */
18 @Override
19 Short getValue();
20 }