dew/src/main/java/org/apidesign/bck2brwsr/dew/InferableJavaFileObject.java
author Jaroslav Tulach <jtulach@netbeans.org>
Thu, 03 Oct 2013 10:02:13 +0200
changeset 1326 8ae6a6c42b5f
parent 1324 263482b074e9
permissions -rw-r--r--
Fixing license
jtulach@1326
     1
/**
jtulach@1326
     2
 * Back 2 Browser Bytecode Translator
jtulach@1326
     3
 * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jtulach@1326
     4
 *
jtulach@1326
     5
 * This program is free software: you can redistribute it and/or modify
jtulach@1326
     6
 * it under the terms of the GNU General Public License as published by
jtulach@1326
     7
 * the Free Software Foundation, version 2 of the License.
jtulach@1326
     8
 *
jtulach@1326
     9
 * This program is distributed in the hope that it will be useful,
jtulach@1326
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
jtulach@1326
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
jtulach@1326
    12
 * GNU General Public License for more details.
jtulach@1326
    13
 *
jtulach@1326
    14
 * You should have received a copy of the GNU General Public License
jtulach@1326
    15
 * along with this program. Look for COPYING file in the top folder.
jtulach@1326
    16
 * If not, see http://opensource.org/licenses/GPL-2.0.
tzezula@1324
    17
 */
tzezula@1324
    18
tzezula@1324
    19
package org.apidesign.bck2brwsr.dew;
tzezula@1324
    20
tzezula@1324
    21
import javax.tools.JavaFileObject;
tzezula@1324
    22
tzezula@1324
    23
/**
tzezula@1324
    24
 *
tzezula@1324
    25
 * @author Tomas Zezula
tzezula@1324
    26
 */
tzezula@1324
    27
interface InferableJavaFileObject extends JavaFileObject {
tzezula@1324
    28
    String infer();
tzezula@1324
    29
}