blob: f0932e20980767d55e9ea3364fedc1d49c4ca30b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015, 2016 Google, Inc and others.
* 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:
* Stefan Xenos (Google) - Initial implementation
*******************************************************************************/
package org.eclipse.jdt.internal.core.nd.field;
import org.eclipse.jdt.internal.core.nd.Nd;
import org.eclipse.jdt.internal.core.nd.db.Database;
/**
* Declares a Nd field of type double. Can be used in place of {@link Field}&lt{@link Double}&gt in order to
* avoid extra GC overhead.
*/
public class FieldDouble implements IField {
private int offset;
public FieldDouble() {
}
public double get(Nd nd, long address) {
Database db = nd.getDB();
return db.getDouble(address + this.offset);
}
public void put(Nd nd, long address, double newValue) {
nd.getDB().putDouble(address + this.offset, newValue);
}
@Override
public void setOffset(int offset) {
this.offset = offset;
}
@Override
public int getRecordSize() {
return Database.DOUBLE_SIZE;
}
}