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

Print this page




  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  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 of all primitive float values accessed in
  30  * the target VM. Calls to {@link Value#type} will return an
  31  * implementor of this interface.
  32  *
  33  * @see FloatValue
  34  *
  35  * @author James McIlree
  36  * @since  1.3
  37  */
  38 public interface FloatType extends PrimitiveType
  39 {
  40 }


  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  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 of all primitive float values accessed in
  30  * the target VM. Calls to {@link Value#type} will return an
  31  * implementor of this interface.
  32  *
  33  * @see FloatValue
  34  *
  35  * @author James McIlree
  36  * @since  1.3
  37  */
  38 @jdk.Supported
  39 public interface FloatType extends PrimitiveType {
  40 }