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 import org.epics.util.array.ListDouble;
8
9 /**
10 * Double array with alarm, timestamp, display and control information.
11 *
12 * @author carcassi
13 */
14 public interface VDoubleArray extends VNumberArray, VType {
15
16 /**
17 * {@inheritDoc }
18 * @return the data
19 */
20 @Override
21 ListDouble getData();
22
23 }