All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.mat.parser.model.AbstractArrayImpl Maven / Gradle / Ivy

There is a newer version: 2.1
Show newest version
/**
 * ****************************************************************************
 * Copyright (c) 2008 SAP AG.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 * SAP AG - initial API and implementation
 * *****************************************************************************
 */
package org.eclipse.mat.parser.model;

import org.eclipse.mat.snapshot.model.IArray;

/**
 * @noextend
 */
public abstract class AbstractArrayImpl extends AbstractObjectImpl implements IArray {
  private static final long serialVersionUID = 2L;

  protected int length;

  private Object info;

  public AbstractArrayImpl(int objectId, long address, ClassImpl classInstance, int length) {
    super(objectId, address, classInstance);
    this.length = length;
  }

  public Object getInfo() {
    return info;
  }

  public void setInfo(Object content) {
    this.info = content;
  }

  public int getLength() {
    return length;
  }

  public void setLength(int i) {
    length = i;
  }

  protected StringBuffer appendFields(StringBuffer buf) {
    return super.appendFields(buf).append(";length=").append(length);//$NON-NLS-1$
  }

  public String getTechnicalName() {
    StringBuilder builder = new StringBuilder(256);
    String name = getClazz().getName();

    int p = name.indexOf('[');
    if (p < 0) {
      builder.append(name);
    } else {
      builder.append(name.subSequence(0, p + 1)).append(getLength()).append(name.substring(p + 1));
    }

    builder.append(" @ 0x");//$NON-NLS-1$
    builder.append(Long.toHexString(getObjectAddress()));
    return builder.toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy