src/share/classes/com/sun/tools/javap/Messages.java

Tue, 19 May 2009 11:50:54 -0700

author
jjg
date
Tue, 19 May 2009 11:50:54 -0700
changeset 283
cd0630109de5
child 554
9d9f26857129
permissions
-rw-r--r--

6824493: experimental support for additional info for instructions
Reviewed-by: mcimadamore

jjg@283 1 /*
jjg@283 2 * Copyright 2007-2009 Sun Microsystems, Inc. All Rights Reserved.
jjg@283 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jjg@283 4 *
jjg@283 5 * This code is free software; you can redistribute it and/or modify it
jjg@283 6 * under the terms of the GNU General Public License version 2 only, as
jjg@283 7 * published by the Free Software Foundation. Sun designates this
jjg@283 8 * particular file as subject to the "Classpath" exception as provided
jjg@283 9 * by Sun in the LICENSE file that accompanied this code.
jjg@283 10 *
jjg@283 11 * This code is distributed in the hope that it will be useful, but WITHOUT
jjg@283 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jjg@283 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
jjg@283 14 * version 2 for more details (a copy is included in the LICENSE file that
jjg@283 15 * accompanied this code).
jjg@283 16 *
jjg@283 17 * You should have received a copy of the GNU General Public License version
jjg@283 18 * 2 along with this work; if not, write to the Free Software Foundation,
jjg@283 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jjg@283 20 *
jjg@283 21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
jjg@283 22 * CA 95054 USA or visit www.sun.com if you need additional information or
jjg@283 23 * have any questions.
jjg@283 24 */
jjg@283 25
jjg@283 26 package com.sun.tools.javap;
jjg@283 27
jjg@283 28 import java.util.Locale;
jjg@283 29
jjg@283 30 /**
jjg@283 31 * Access to javap messages.
jjg@283 32 *
jjg@283 33 * <p><b>This is NOT part of any API supported by Sun Microsystems. If
jjg@283 34 * you write code that depends on this, you do so at your own risk.
jjg@283 35 * This code and its internal interfaces are subject to change or
jjg@283 36 * deletion without notice.</b>
jjg@283 37 */
jjg@283 38 public interface Messages {
jjg@283 39 String getMessage(String key, Object... args);
jjg@283 40
jjg@283 41 String getMessage(Locale locale, String key, Object... args);
jjg@283 42 }

mercurial