Subversion Repository Public Repository

litesoft

Diff Revisions 803 vs 804 for /trunk/Java/GWT/OldClient/src/org/litesoft/GWT/forms/client/nonpublic/AbstractFormInstanceComponentHandler.java

Diff revisions: vs.
  @@ -4,6 +4,7 @@
4 4 import java.io.*;
5 5
6 6 import org.litesoft.core.simpletypes.*;
7 + import org.litesoft.core.typeutils.*;
7 8 import org.litesoft.core.util.*;
8 9 import org.litesoft.ui.def.nonpublic.support.*;
9 10
  @@ -103,7 +104,7 @@
103 104
104 105 public boolean setActionDisabled( FormDataRowKey pFormDataRowKey, String pActionID, boolean pDisabled )
105 106 {
106 - return isActive() && UtilsCommon.areNonArraysEqual( pFormDataRowKey, getFormDataRowKey() ) ? //
107 + return isActive() && Objects.areNonArraysEqual( pFormDataRowKey, getFormDataRowKey() ) ? //
107 108 mActionAdapters.setActionDisabled( pActionID, pDisabled ) : //
108 109 LLsetActionDisabledOnChildren( pFormDataRowKey, pActionID, pDisabled );
109 110 }
  @@ -116,7 +117,7 @@
116 117 public boolean setInputDisabled( FormDataRowKey pFormDataRowKey, String pAttributeName,
117 118 boolean pDisabled )
118 119 {
119 - return isActive() && UtilsCommon.areNonArraysEqual( pFormDataRowKey, getFormDataRowKey() ) ? //
120 + return isActive() && Objects.areNonArraysEqual( pFormDataRowKey, getFormDataRowKey() ) ? //
120 121 LLsetInputDisabledOnUs( pAttributeName, pDisabled ) : //
121 122 LLsetInputDisabledOnChildren( pFormDataRowKey, pAttributeName, pDisabled );
122 123 }