dew/src/main/java/org/apidesign/bck2brwsr/dew/InferableJavaFileObject.java
author tzezula
Wed, 02 Oct 2013 21:00:24 +0200
changeset 1324 263482b074e9
child 1326 8ae6a6c42b5f
permissions -rw-r--r--
ClassLoaderFileManager
tzezula@1324
     1
/*
tzezula@1324
     2
 * To change this license header, choose License Headers in Project Properties.
tzezula@1324
     3
 * To change this template file, choose Tools | Templates
tzezula@1324
     4
 * and open the template in the editor.
tzezula@1324
     5
 */
tzezula@1324
     6
tzezula@1324
     7
package org.apidesign.bck2brwsr.dew;
tzezula@1324
     8
tzezula@1324
     9
import javax.tools.JavaFileObject;
tzezula@1324
    10
tzezula@1324
    11
/**
tzezula@1324
    12
 *
tzezula@1324
    13
 * @author Tomas Zezula
tzezula@1324
    14
 */
tzezula@1324
    15
interface InferableJavaFileObject extends JavaFileObject {
tzezula@1324
    16
    String infer();
tzezula@1324
    17
}