private void append(String append, TouchButtonInput touchButtonInput) {
    StringMaker stringBuffer = new StringMaker();

    stringBuffer.append(touchButtonInput.toString());
    stringBuffer.append(CommonSeps.getInstance().SPACE);
    stringBuffer.append(append);

    this.append = stringBuffer.toString();
    this.string = listString + this.append;
  }
  public String validationInfo() throws Exception {
    StringBuffer stringBuffer = new StringBuffer();

    String command = (String) this.getRequestHashMap().get(GLOBALS.ADMINCOMMAND);
    if (command == null || command.compareTo(UPDATEPRODUCT) != 0) {
      return CommonSeps.getInstance().SPACE;
    }

    stringBuffer.append(new BasicItemValidation(this.itemInterface).validationInfo());

    StoreFrontInterface storeFrontInterface =
        StoreFrontFactory.getInstance(this.getWeblisketSession().getStoreName());

    String fullCategory =
        (String) URLGLOBALS.getWebappPath()
            + storeFrontInterface.getCurrentHostNamePath()
            + // storeFrontInterface.getCategoryPath() +
            this.itemInterface.getCategory();

    if (abcs.logic.communication.log.config.type.LogConfigTypes.LOGGING.contains(
        abcs.logic.communication.log.config.type.LogConfigType.VIEW)) {
      LogUtil.put(LogFactory.getInstance("Category: " + fullCategory, this, "validationInfo()"));
    }

    try {
      if (InventoryEntityFactory.getInstance()
              .getInventoryEntityInstance()
              .getItem(this.itemInterface.getId())
          == null) {
        stringBuffer.append("Item does not exist.<br>");
      }
    } catch (MoneyException e) {
      if (abcs.logic.communication.log.config.type.LogConfigTypes.LOGGING.contains(
          abcs.logic.communication.log.config.type.LogConfigType.VIEW)) {
        LogUtil.put(
            LogFactory.getInstance("Existing Item With MoneyException", this, "validationInfo()"));
      }
    }

    Object object = this.getRequestHashMap().get(BasicItemData.IMAGE);

    if (HttpFileUploadUtil.getInstance().isValid(object)) {
      FileItem fileItem = (FileItem) object;

      long size = fileItem.getSize();
      String fileName = fileItem.getName();
      String fileItemFieldName = fileItem.getFieldName();

      this.validationInfo(stringBuffer, fileName, fileItemFieldName, size);
    }

    // else stringBuffer.append("Image File Form Data Error");

    return stringBuffer.toString();
  }
  public String toString(Object[] objectArray) {
    StringMaker stringBuffer = new StringMaker();

    CommonSeps commonSeps = CommonSeps.getInstance();

    for (int index = 0; index < objectArray.length; index++) {
      stringBuffer.append(objectArray[index]);
      stringBuffer.append(commonSeps.COMMA_SEP);
    }

    return stringBuffer.toString();
  }
  public String toString(int[][] twoDimensionalIntArray) {
    StringMaker stringBuffer = new StringMaker();

    CommonSeps commonSeps = CommonSeps.getInstance();

    int endIndex = twoDimensionalIntArray.length;
    int endIndex2 = twoDimensionalIntArray[0].length;
    for (int index = 0; index < endIndex; index++) {
      stringBuffer.append(commonSeps.BRACE_OPEN);
      for (int index2 = 0; index2 < endIndex2; index2++) {
        stringBuffer.append(twoDimensionalIntArray[index][index2]);
        stringBuffer.append(commonSeps.COMMA_SEP);
      }
      stringBuffer.append(commonSeps.BRACE_CLOSE);
      stringBuffer.append(commonSeps.NEW_LINE);
    }

    return stringBuffer.toString();
  }
 public void clearLog(int x, int y) {
   this.append = GPoint.toStringStatic(x, y, 0) + CommonSeps.getInstance().SPACE;
   this.string = listString + this.append;
   // this.append(StringUtil.getInstance());
 }