jtulach@1326: /** jtulach@1326: * Back 2 Browser Bytecode Translator jtulach@1326: * Copyright (C) 2012 Jaroslav Tulach jtulach@1326: * jtulach@1326: * This program is free software: you can redistribute it and/or modify jtulach@1326: * it under the terms of the GNU General Public License as published by jtulach@1326: * the Free Software Foundation, version 2 of the License. jtulach@1326: * jtulach@1326: * This program is distributed in the hope that it will be useful, jtulach@1326: * but WITHOUT ANY WARRANTY; without even the implied warranty of jtulach@1326: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the jtulach@1326: * GNU General Public License for more details. jtulach@1326: * jtulach@1326: * You should have received a copy of the GNU General Public License jtulach@1326: * along with this program. Look for COPYING file in the top folder. jtulach@1326: * If not, see http://opensource.org/licenses/GPL-2.0. tzezula@1324: */ tzezula@1324: tzezula@1324: package org.apidesign.bck2brwsr.dew; tzezula@1324: tzezula@1324: import javax.tools.JavaFileObject; tzezula@1324: tzezula@1324: /** tzezula@1324: * tzezula@1324: * @author Tomas Zezula tzezula@1324: */ tzezula@1324: interface InferableJavaFileObject extends JavaFileObject { tzezula@1324: String infer(); tzezula@1324: }