< prev index next >

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

Print this page
rev 17275 : 8181417: Code cleanups in com.sun.jdi

*** 1,7 **** /* ! * Copyright (c) 1998, 2016, 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
*** 76,87 **** * @author Gordon Hirsch * @author James McIlree * @since 1.3 */ public interface ReferenceType ! extends Type, Comparable<ReferenceType>, Accessible ! { /** * Gets the fully qualified name of this type. The returned name * is formatted as it might appear in a Java programming langauge * declaration for objects of this type. --- 76,86 ---- * @author Gordon Hirsch * @author James McIlree * @since 1.3 */ public interface ReferenceType ! extends Type, Comparable<ReferenceType>, Accessible { /** * Gets the fully qualified name of this type. The returned name * is formatted as it might appear in a Java programming langauge * declaration for objects of this type.
*** 613,623 **** * been prepared. * * @since 1.4 */ List<Location> allLineLocations(String stratum, String sourceName) ! throws AbsentInformationException; /** * Returns a List containing all {@link Location} objects * that map to the given line number. * <P> --- 612,622 ---- * been prepared. * * @since 1.4 */ List<Location> allLineLocations(String stratum, String sourceName) ! throws AbsentInformationException; /** * Returns a List containing all {@link Location} objects * that map to the given line number. * <P>
*** 848,854 **** * * @see #constantPoolCount() * @since 1.6 */ byte[] constantPool(); - } --- 847,852 ----
< prev index next >