blob: 85af3bcabde56c3b7fafd388a5ad85136d7474c5 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.netbeans.modules.debugger.jpda.heapwalk;
import org.netbeans.lib.profiler.heap.PrimitiveArrayInstance;
import java.util.ArrayList;
import java.util.List;
import org.netbeans.api.debugger.jpda.ObjectVariable;
import org.netbeans.api.debugger.jpda.Variable;
/**
*
* @author Martin Entlicher
*/
public class PrimitiveArrayInstanceImpl extends InstanceImpl implements PrimitiveArrayInstance {
private ObjectVariable array;
/** Creates a new instance of PrimitiveArrayInstanceImpl */
public PrimitiveArrayInstanceImpl(HeapImpl heap, ObjectVariable array) {
super(heap, array);
this.array = array;
}
@Override
public int getLength() {
return array.getFieldsCount();
}
@Override
public List<String> getValues() {
Variable[] values = array.getFields(0, getLength());
List<String> strValues = new ArrayList<String>();
for (Variable value: values) {
String strVal = value.getValue();
if (strVal.length() >= 3 && strVal.startsWith("'") && strVal.endsWith("'")) {
// Characters are enclosed in apostrophes.
strVal = strVal.substring(1, strVal.length() - 1);
}
strValues.add(strVal);
}
return strValues;
}
}