src/share/classes/com/sun/tools/javah/TypeSignature.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2002, 2010, 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) 2002, 2011, 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
*** 36,46 **** import javax.lang.model.type.TypeKind; import javax.lang.model.type.TypeMirror; import javax.lang.model.type.TypeVariable; import javax.lang.model.type.TypeVisitor; import javax.lang.model.util.Elements; ! import javax.lang.model.util.SimpleTypeVisitor7; /** * Returns internal type signature. * * <p><b>This is NOT part of any supported API. --- 36,46 ---- import javax.lang.model.type.TypeKind; import javax.lang.model.type.TypeMirror; import javax.lang.model.type.TypeVariable; import javax.lang.model.type.TypeVisitor; import javax.lang.model.util.Elements; ! import javax.lang.model.util.SimpleTypeVisitor8; /** * Returns internal type signature. * * <p><b>This is NOT part of any supported API.
*** 243,253 **** return 1 + dimensions(((ArrayType) t).getComponentType()); } String qualifiedTypeName(TypeMirror type) { ! TypeVisitor<Name, Void> v = new SimpleTypeVisitor7<Name, Void>() { @Override public Name visitArray(ArrayType t, Void p) { return t.getComponentType().accept(this, p); } --- 243,253 ---- return 1 + dimensions(((ArrayType) t).getComponentType()); } String qualifiedTypeName(TypeMirror type) { ! TypeVisitor<Name, Void> v = new SimpleTypeVisitor8<Name, Void>() { @Override public Name visitArray(ArrayType t, Void p) { return t.getComponentType().accept(this, p); }