< prev index next >

src/jdk.jdi/share/classes/com/sun/jdi/Type.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1998, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 43,59 **** * {@link ArrayType#componentType()} * </BLOCKQUOTE> * <P> * The following table illustrates which subinterfaces of Type * are used to mirror types in the target VM -- ! * <TABLE BORDER=1 SUMMARY="Maps each type declared in target to a mirrored ! * instance of a subinterface of PrimitiveType or ReferenceType"> ! * <TR BGCOLOR="#EEEEFF"> * <TH id="primtype" colspan=3>Subinterfaces of {@link PrimitiveType}</TH> ! * <TR BGCOLOR="#EEEEFF"> ! * <TH id="declared" align="left" colspan=2>Type declared in target as</TH> ! * <TH id="mirrored" align="left">Is mirrored as an instance of</TH> * <TR> * <TD headers="primtype declared" colspan=2><CODE>boolean</CODE></TD> * <TD headers="primtype mirrored"> {@link BooleanType}</TD> * <TR> * <TD headers="primtype declared" colspan=2><CODE>byte</CODE></TD> --- 43,60 ---- * {@link ArrayType#componentType()} * </BLOCKQUOTE> * <P> * The following table illustrates which subinterfaces of Type * are used to mirror types in the target VM -- ! * <TABLE BORDER="1"> ! * <CAPTION style="display:none">Maps each type declared in target to a mirrored ! * instance of a subinterface of PrimitiveType or ReferenceType"</CAPTION> ! * <TR style="background-color:#EEEEFF"> * <TH id="primtype" colspan=3>Subinterfaces of {@link PrimitiveType}</TH> ! * <TR style="background-color:#EEEEFF"> ! * <TH id="declared" style="text-align:left" colspan=2>Type declared in target as</TH> ! * <TH id="mirrored" style="text-align:left">Is mirrored as an instance of</TH> * <TR> * <TD headers="primtype declared" colspan=2><CODE>boolean</CODE></TD> * <TD headers="primtype mirrored"> {@link BooleanType}</TD> * <TR> * <TD headers="primtype declared" colspan=2><CODE>byte</CODE></TD>
*** 77,92 **** * <TD headers="primtype declared" colspan=2><CODE>short</CODE></TD> * <TD headers="primtype mirrored">{@link ShortType}</TD> * <TR> * <TD headers="primtype declared" colspan=2><CODE>void</CODE></TD> * <TD headers="primtype mirrored">{@link VoidType}</TD> ! * <TR BGCOLOR="#EEEEFF"> * <TH id="reftype" colspan=3>Subinterfaces of {@link ReferenceType}</TH> ! * <TR BGCOLOR="#EEEEFF"> ! * <TH id="declared2" align="left">Type declared in target as</TH> ! * <TH id="example2" align="left">For example</TH> ! * <TH id="mirrored2" align="left">Is mirrored as an instance of</TH> * <TR> * <TD headers="reftype declared2"><I>a class</I></TD> * <TD headers="reftype example2"><CODE>Date</CODE></TD> * <TD headers="reftype mirrored2">{@link ClassType}</TD> * <TR> --- 78,93 ---- * <TD headers="primtype declared" colspan=2><CODE>short</CODE></TD> * <TD headers="primtype mirrored">{@link ShortType}</TD> * <TR> * <TD headers="primtype declared" colspan=2><CODE>void</CODE></TD> * <TD headers="primtype mirrored">{@link VoidType}</TD> ! * <TR style="background-color:#EEEEFF"> * <TH id="reftype" colspan=3>Subinterfaces of {@link ReferenceType}</TH> ! * <TR style="background-color:#EEEEFF"> ! * <TH id="declared2"style="text-align:left">Type declared in target as</TH> ! * <TH id="example2" style="text-align:left">For example</TH> ! * <TH id="mirrored2" style="text-align:left">Is mirrored as an instance of</TH> * <TR> * <TD headers="reftype declared2"><I>a class</I></TD> * <TD headers="reftype example2"><CODE>Date</CODE></TD> * <TD headers="reftype mirrored2">{@link ClassType}</TD> * <TR>
< prev index next >