Ejemplo n.º 1
0
 /**
  * @param o
  * @exception IOException
  * @exception DicomException
  */
 public void write(DicomOutputStream o) throws DicomException, IOException {
   writeBase(o);
   short[] v = getShortValues();
   if (v != null) {
     for (int j = 0; j < v.length; ++j) {
       o.writeSigned16(v[j]);
     }
   }
 }