public interface RawShort extends RawMemory
RawShort interface provides methods for setting and getting the value of a register or memory area
holding a short value. A RawShort instance can be obtained from a MMIODevice instance.short get()
throws java.io.IOException,
PeripheralNotAvailableException
short value at the memory area associated with this object.short value.java.io.IOException - if the associated memory area is not readable.PeripheralNotAvailableException - if the peripheral is not currently available (has been released).void set(short value)
throws java.io.IOException,
PeripheralNotAvailableException
short value at the memory area associated with this object.value - short data to set.java.io.IOException - if the associated memory area is not writable.PeripheralNotAvailableException - if the peripheral is not currently available (has been released).Copyright (c) 1990, 2013, Oracle and/or its affiliates. All rights reserved.