mcimadamore@80: /* mcimadamore@80: * Copyright 2008 Sun Microsystems, Inc. All Rights Reserved. mcimadamore@80: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. mcimadamore@80: * mcimadamore@80: * This code is free software; you can redistribute it and/or modify it mcimadamore@80: * under the terms of the GNU General Public License version 2 only, as mcimadamore@80: * published by the Free Software Foundation. Sun designates this mcimadamore@80: * particular file as subject to the "Classpath" exception as provided mcimadamore@80: * by Sun in the LICENSE file that accompanied this code. mcimadamore@80: * mcimadamore@80: * This code is distributed in the hope that it will be useful, but WITHOUT mcimadamore@80: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or mcimadamore@80: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License mcimadamore@80: * version 2 for more details (a copy is included in the LICENSE file that mcimadamore@80: * accompanied this code). mcimadamore@80: * mcimadamore@80: * You should have received a copy of the GNU General Public License version mcimadamore@80: * 2 along with this work; if not, write to the Free Software Foundation, mcimadamore@80: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. mcimadamore@80: * mcimadamore@80: * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, mcimadamore@80: * CA 95054 USA or visit www.sun.com if you need additional information or mcimadamore@80: * have any questions. mcimadamore@80: */ mcimadamore@80: mcimadamore@80: package com.sun.tools.javac.api; mcimadamore@80: mcimadamore@136: import java.util.Locale; mcimadamore@80: mcimadamore@80: /** mcimadamore@80: * This interface must be implemented by any javac class that has non-trivial mcimadamore@80: * formatting needs (e.g. where toString() does not apply because of localization). mcimadamore@80: * mcimadamore@80: * @author Maurizio Cimadamore mcimadamore@80: */ mcimadamore@80: public interface Formattable { mcimadamore@80: mcimadamore@80: /** mcimadamore@80: * Used to obtain a localized String representing the object accordingly mcimadamore@80: * to a given locale mcimadamore@80: * mcimadamore@136: * @param locale locale in which the object's representation is to be rendered mcimadamore@136: * @param messages messages object used for localization mcimadamore@80: * @return a locale-dependent string representing the object mcimadamore@80: */ mcimadamore@136: public String toString(Locale locale, Messages messages); mcimadamore@80: /** mcimadamore@80: * Retrieve a pretty name of this object's kind mcimadamore@80: * @return a string representing the object's kind mcimadamore@80: */ mcimadamore@80: String getKind(); mcimadamore@80: }