langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/util/Names.java
changeset 41637 7b24b4c32ee6
parent 36526 3b41f1c69604
child 42407 f3702cff2933
equal deleted inserted replaced
41636:086a3c7a6b56 41637:7b24b4c32ee6
     1 /*
     1 /*
     2  * Copyright (c) 1999, 2015, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1999, 2016, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    85     public final Name equals;
    85     public final Name equals;
    86     public final Name error;
    86     public final Name error;
    87     public final Name family;
    87     public final Name family;
    88     public final Name finalize;
    88     public final Name finalize;
    89     public final Name forName;
    89     public final Name forName;
       
    90     public final Name forRemoval;
    90     public final Name getClass;
    91     public final Name getClass;
    91     public final Name getClassLoader;
    92     public final Name getClassLoader;
    92     public final Name getComponentType;
    93     public final Name getComponentType;
    93     public final Name getDeclaringClass;
    94     public final Name getDeclaringClass;
    94     public final Name getMessage;
    95     public final Name getMessage;
   240         equals = fromString("equals");
   241         equals = fromString("equals");
   241         error = fromString("<error>");
   242         error = fromString("<error>");
   242         family = fromString("family");
   243         family = fromString("family");
   243         finalize = fromString("finalize");
   244         finalize = fromString("finalize");
   244         forName = fromString("forName");
   245         forName = fromString("forName");
       
   246         forRemoval = fromString("forRemoval");
   245         getClass = fromString("getClass");
   247         getClass = fromString("getClass");
   246         getClassLoader = fromString("getClassLoader");
   248         getClassLoader = fromString("getClassLoader");
   247         getComponentType = fromString("getComponentType");
   249         getComponentType = fromString("getComponentType");
   248         getDeclaringClass = fromString("getDeclaringClass");
   250         getDeclaringClass = fromString("getDeclaringClass");
   249         getMessage = fromString("getMessage");
   251         getMessage = fromString("getMessage");