Subversion Repository Public Repository

litesoft

Diff Revisions 948 vs 949 for /trunk/Java/core/Server/src/org/litesoft/orsup/otherattributeaccessors/AttributeAccessorSCDtoOneVariable.java

Diff revisions: vs.
  @@ -2,7 +2,7 @@
2 2 package org.litesoft.orsup.otherattributeaccessors;
3 3
4 4 import org.litesoft.bo.attributes.*;
5 - import org.litesoft.commonfoundation.typeutils.*;
5 + import org.litesoft.commonfoundation.base.*;
6 6 import org.litesoft.orsup.base.*;
7 7 import org.litesoft.orsup.lazyload.*;
8 8 import org.litesoft.orsup.nonpublic.*;
  @@ -20,8 +20,8 @@
20 20 if ( (pValue != null) ) {
21 21 if ( !(pValue instanceof PO_VarURLstringHelper) ) {
22 22 if ( !(pValue instanceof String) ) {
23 - throw new IllegalArgumentException( "Direct setting of a Variable To One relationship is Not Supported for type (" + Objects
24 - .classNameOf( pValue ) + ") w/ value: " + pValue );
23 + throw new IllegalArgumentException( "Direct setting of a Variable To One relationship is Not Supported for type (" + ClassName
24 + .full( pValue ) + ") w/ value: " + pValue );
25 25 }
26 26 pValue = new PO_VarURLstringHelper( pValue.toString() );
27 27 }
  @@ -67,7 +67,7 @@
67 67 if ( pValue != null ) {
68 68 if ( !(pValue instanceof String) ) {
69 69 throw new IllegalArgumentException(
70 - "Variable To One relationship is stored as a String, Not type (" + Objects.classNameOf( pValue ) + ") w/ value: " + pValue );
70 + "Variable To One relationship is stored as a String, Not type (" + ClassName.full( pValue ) + ") w/ value: " + pValue );
71 71 }
72 72 PO_VarURLstringHelper varURLstring = new PO_VarURLstringHelper( pValue.toString() );
73 73 value = varURLstring.toString();