Uses of Class
quicktime.util.UtilException

Packages that use UtilException
quicktime.std.image   
quicktime.std.movies   
quicktime.std.music   
quicktime.std.qtcomponents   
quicktime.util   
 

Uses of UtilException in quicktime.std.image
 

Methods in quicktime.std.image that throw UtilException
 java.lang.String ImageDescription.getName()
          Return name of the compression algorithm.
 void ImageDescription.setName(java.lang.String name)
          Set the name of the compression algorithm.
 java.lang.String CodecInfo.getTypeName()
          Get the compression algorithm used by the component.
 java.lang.String CodecName.getTypeName()
          Returns the type name in string.
 

Uses of UtilException in quicktime.std.movies
 

Methods in quicktime.std.movies that throw UtilException
 java.lang.String AtomData.getCString(int offset)
          Returns the C string found at the offset as a java.lang.String
 java.lang.String AtomData.getPString(int offset)
          Returns the Pascal string found at the offset as a java.lang.String
 

Uses of UtilException in quicktime.std.music
 

Methods in quicktime.std.music that throw UtilException
 void MusicData.setSize(int newSize)
          Resets the size of the MusicData object to the new size (in bytes).
 java.lang.String QTMIDIPort.getPortName()
          Return the name of the output port.
 void QTMIDIPort.setPortName(java.lang.String name)
          Set the name of the output port.
 java.lang.String SynthesizerDescription.getName()
          Return text name of synthesizer type
 java.lang.String ToneDescription.getSynthesizerName()
          Returns the current name of the described instrument's synthesiser.
 void ToneDescription.setSynthesizerName(java.lang.String name)
          Sets the current name of the described instrument's synthesiser.
 java.lang.String ToneDescription.getInstrumentName()
          Returns the current name of the described instrument.
 void ToneDescription.setInstrumentName(java.lang.String name)
          Sets the current name of the described instrument.
 

Uses of UtilException in quicktime.std.qtcomponents
 

Methods in quicktime.std.qtcomponents that throw UtilException
 java.lang.String XMLElement.getName()
          get the name of the element if element was not recognized by the parser
 java.lang.String XMLContent.getString()
          get string kind content
 java.lang.String XMLAttribute.getName()
          returns the attribute name of the XMLAttribute if not recognized by the parser
 java.lang.String XMLAttribute.getValueString()
          returns the valueString of the XMLAttribute always available
 

Uses of UtilException in quicktime.util
 

Methods in quicktime.util that throw UtilException
static void QTHandle.reserveMemory(int size)
          Use reserve memory before you allocate a handle that you intend to keep locked for long periods of time.
 void QTHandle.setSize(int size)
          Resizes the handle to the specified size.
 void QTHandle.concatenate(QTHandleRef hand)
          Concatenates the supplied handle to this handle, resize the size of this handle to accomodate the second handle's data.
 void QTVector.remove(int pos)
          remove element at specified position
 void QTVector.removeAll()
           
 void QTPointer.setSize(int newSize)
          This method will resize the memory that a pointer points to.
 void QTPointer.concatenate(QTPointerRef ptr)
          Concatenates the supplied pointer to this pointer.
static void UtilException.checkError(int err)
          This method will throw an exception if the incoming err argument is a non-zero value.
static void EndianOrder.flipNativeToBigEndian(java.lang.Object src, int srcOffset, EndianDescriptor ed)
          This will flip iff the current runtime architecture is little endian the supplied src object's fields according to the characteristics of the supplied EndianDescriptor.
static void EndianOrder.flipBigEndianToNative(java.lang.Object src, int srcOffset, EndianDescriptor ed)
          This will flip, iff the current runtime architecture is little endian, the supplied src object's fields according to the characteristics of the supplied EndianDescriptor.
static void EndianOrder.flipNativeToLittleEndian(java.lang.Object src, int srcOffset, EndianDescriptor ed)
          This will flip, iff the current runtime architecture is big endian, the supplied src object's fields according to the characteristics of the supplied EndianDescriptor.
static void EndianOrder.flipLittleEndianToNative(java.lang.Object src, int srcOffset, EndianDescriptor ed)
          This will flip, iff the current runtime architecture is big endian, the supplied src object's fields according to the characteristics of the supplied EndianDescriptor.
static void EndianOrder.flipNativeToBigEndian(java.lang.Object src, int srcOffset, java.lang.Object dest, int destOffset, EndianDescriptor ed)
          This will flip, iff the current runtime architecture is little endian, the supplied src object's fields according to the characteristics of the supplied EndianDescriptor and copy these flipped values to the destination object.
static void EndianOrder.flipBigEndianToNative(java.lang.Object src, int srcOffset, java.lang.Object dest, int destOffset, EndianDescriptor ed)
          This will flip, iff the current runtime architecture is little endian, the supplied src object's fields according to the characteristics of the supplied EndianDescriptor and copy these flipped values to the destination object.
static void EndianOrder.flipNativeToLittleEndian(java.lang.Object src, int srcOffset, java.lang.Object dest, int destOffset, EndianDescriptor ed)
          This will flip, iff the current runtime architecture is big endian, the supplied src object's fields according to the characteristics of the supplied EndianDescriptor and copy these flipped values to the destination object.
static void EndianOrder.flipLittleEndianToNative(java.lang.Object src, int srcOffset, java.lang.Object dest, int destOffset, EndianDescriptor ed)
          This will flip, iff the current runtime architecture is big endian, the supplied src object's fields according to the characteristics of the supplied EndianDescriptor and copy these flipped values to the destination object.
static void QTUtils.checkFreeMemory()
          This call will ensure that a reserved amount of application heap memory on the MacOS is free.
static void QTUtils.endianFlip(java.lang.Object src, int srcOffset, EndianDescriptor ed)
          This will flip the supplied src object's fields according to the characteristics of the supplied EndianDescriptor.
static void QTUtils.endianFlip(java.lang.Object src, int srcOffset, java.lang.Object dest, int destOffset, EndianDescriptor ed)
          This will flip the supplied src object's fields according to the characteristics of the supplied EndianDescriptor and copy these flipped values to the destination object.
 java.lang.String StringHandle.toJavaString()
          Returns the String found in the Handle as a java.lang.String
 void StringHandle.fromJavaString(java.lang.String str)
          Sets the String found in the handle to the java.lang.String characters.