Subversion Repository Public Repository

litesoft

Diff Revisions 810 vs 811 for /trunk/Java/PoVoGenerator/Generator/src/org/litesoft/generator/GenerateVOGO.java

Diff revisions: vs.
  @@ -4,7 +4,7 @@
4 4 import org.litesoft.aokeyhole.objects.*;
5 5 import org.litesoft.bo.attributes.*;
6 6 import org.litesoft.codegen.*;
7 - import org.litesoft.core.util.*;
7 + import org.litesoft.core.typeutils.*;
8 8
9 9 public class GenerateVOGO extends AbstractVOFileGenerator
10 10 {
  @@ -85,7 +85,7 @@
85 85 mErrorSinc.addError( "CurrentlyUnsupportedAttributeType", pAttribute.toString(), mObjectMetaData.toStringForError() );
86 86 return;
87 87 }
88 - String zSimpleDataType = UtilsCommon.justClassNameIfPackage( zSimpleDataTypeClass, JAVA_LANG_PACKAGE );
88 + String zSimpleDataType = Objects.justClassNameIfPackage( zSimpleDataTypeClass, JAVA_LANG_PACKAGE );
89 89
90 90 addBlankLine();
91 91