1 16 package com.google.gwt.i18n.rebind.util; 17 18 import java.io.File ; 19 import java.io.IOException ; 20 21 24 public class ConstantsInterfaceCreator extends 25 AbstractLocalizableInterfaceCreator { 26 27 36 public ConstantsInterfaceCreator(String className, String packageName, 37 File resourceBundle, File targetLocation, Class interfaceClass) 38 throws IOException { 39 super(className, packageName, resourceBundle, targetLocation, 40 interfaceClass); 41 } 42 43 protected void genMethodArgs(String defaultValue) { 44 } 46 47 protected String javaDocComment(String path) { 48 return "Interface to represent the constants contained in resource bundle:\n\t'" 49 + path + "'."; 50 } 51 } 52 | Popular Tags |