Skip to main content
summaryrefslogtreecommitdiffstats
blob: 4ddd093111272fa7574dcd944b58da0e8152a5d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*******************************************************************************
 * 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 float. Can be used in place of  {@link Field}&lt{@link Float}&gt in order to
 * avoid extra GC overhead.
 */
public class FieldFloat implements IField {
	private int offset;

	public FieldFloat() {
	}

	public float get(Nd nd, long address) {
		Database db = nd.getDB();
		return db.getFloat(address + this.offset);
	}

	public void put(Nd nd, long address, float newValue) {
		nd.getDB().putFloat(address + this.offset, newValue);
	}

	@Override
	public void setOffset(int offset) {
		this.offset = offset;
	}

	@Override
	public int getRecordSize() {
		return Database.FLOAT_SIZE;
	}
}

Back to the top