src/share/classes/com/sun/jdi/PrimitiveType.java

Print this page




  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.jdi;
  27 
  28 /**
  29  * The type associated with non-object values in a target VM.
  30  * Instances of one of the sub-interfaces of this interface will be
  31  * returned from {@link Value#type} for all {@link PrimitiveValue} objects.
  32  *
  33  * @see PrimitiveValue
  34  *
  35  * @author Robert Field
  36  * @author Gordon Hirsch
  37  * @author James McIlree
  38  * @since  1.3
  39  */

  40 public interface PrimitiveType extends Type {
  41 }


  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.jdi;
  27 
  28 /**
  29  * The type associated with non-object values in a target VM.
  30  * Instances of one of the sub-interfaces of this interface will be
  31  * returned from {@link Value#type} for all {@link PrimitiveValue} objects.
  32  *
  33  * @see PrimitiveValue
  34  *
  35  * @author Robert Field
  36  * @author Gordon Hirsch
  37  * @author James McIlree
  38  * @since  1.3
  39  */
  40 @jdk.Supported
  41 public interface PrimitiveType extends Type {
  42 }