1 16 package com.google.gwt.dev.cfg; 17 18 import com.google.gwt.dev.util.xml.Schema; 19 20 24 public class CompilationSchema extends Schema { 25 26 private final class BodySchema extends Schema { 27 28 protected final String __generated_type_hash_1_class = null; 29 30 protected final String __generated_type_hash_2_hash = null; 31 32 protected final String __rebind_decision_1_in = null; 33 protected final String __rebind_decision_2_out = null; 34 protected Schema __generated_type_hash_begin(String type, String hash) { 35 compilation.recordGeneratedTypeHash(type, hash); 36 return null; 37 } 38 39 protected Schema __rebind_decision_begin(String in, String out) { 40 compilation.recordDecision(in, out); 41 return null; 42 } 43 } 44 45 private final Compilation compilation; 46 47 public CompilationSchema(Compilation compilation) { 48 this.compilation = compilation; 49 } 50 51 protected Schema __cache_entry_begin() { 52 return new BodySchema(); 53 } 54 } 55 | Popular Tags |