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.ListInt;
8
9 /**
10 * Int array with alarm, timestamp, display and control information.
11 *
12 * @author carcassi
13 */
14 public interface VIntArray extends VNumberArray, VType {
15
16 @Override
17 ListInt getData();
18 }