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 string with alarm and timestamp. 9 * 10 * @author carcassi 11 */ 12 public interface VString extends Scalar, Alarm, Time, VType { 13 14 /** 15 * {@inheritDoc } 16 */ 17 @Override 18 String getValue(); 19 }