Code Generator for Eclipse Code
Brought to you by:
hotzst
--- a/branches/phpintegration/ch.sahits.codegen.example/src/ch/sahits/codegen/xml/XMLParserWithoutDB.java +++ b/branches/phpintegration/ch.sahits.codegen.example/src/ch/sahits/codegen/xml/XMLParserWithoutDB.java @@ -6,6 +6,7 @@ import ch.sahits.codegen.core.util.ILogger; import ch.sahits.codegen.core.util.LogFactory; +import ch.sahits.codegen.input.EDBConnectionData; import ch.sahits.codegen.input.XMLJDomParser; import ch.sahits.codegen.java.input.IXMLJavaInputFileParser; import ch.sahits.codegen.java.model.util.ConvenientCodegen; @@ -115,10 +116,10 @@ * Indicate if the input file is self contained or if for * compleetion of the model information from the second page is * needed. - * @return false + * @return {@value EDBConnectionData#NONE} */ - public boolean needsDataBaseInformationForCompleetion(){ - return false; + public EDBConnectionData needsDataBaseInformationForCompleetion(){ + return EDBConnectionData.NONE; } }