Beispiel #1
0
  /**
   * ------------------------------------------------------ Copy the state of this MiPart into the
   * target MiPart.
   *
   * @param source the part to copy
   * @overrides MiPart#copy
   * @see MiPart#copy ------------------------------------------------------
   */
  public void copy(MiPart source) {
    super.copy(source);

    MiComboBox obj = (MiComboBox) source;
    restrictingValuesToThoseInList = obj.restrictingValuesToThoseInList;
    restrictionIgnoresCase = obj.restrictionIgnoresCase;
    restrictionWarnsOnly = obj.restrictionWarnsOnly;
  }