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