Exemple #1
0
  @Override
  public boolean equals(Object obj) {
    if (obj == this) return true;

    if (obj != null && getClass().equals(obj.getClass())) {
      final googlecharts.proxies.Cell that = (googlecharts.proxies.Cell) obj;
      return getMendixObject().equals(that.getMendixObject());
    }
    return false;
  }
Exemple #2
0
 /** @deprecated Use 'Cell.load(IContext, IMendixIdentifier)' instead. */
 @Deprecated
 public static googlecharts.proxies.Cell initialize(
     com.mendix.systemwideinterfaces.core.IContext context,
     com.mendix.systemwideinterfaces.core.IMendixIdentifier mendixIdentifier)
     throws com.mendix.core.CoreException {
   return googlecharts.proxies.Cell.load(context, mendixIdentifier);
 }
Exemple #3
0
 public static googlecharts.proxies.Cell load(
     com.mendix.systemwideinterfaces.core.IContext context,
     com.mendix.systemwideinterfaces.core.IMendixIdentifier mendixIdentifier)
     throws com.mendix.core.CoreException {
   com.mendix.systemwideinterfaces.core.IMendixObject mendixObject =
       com.mendix.core.Core.retrieveId(context, mendixIdentifier);
   return googlecharts.proxies.Cell.initialize(context, mendixObject);
 }