Files
narya/src/java/com/threerings/presents/io/FloatFieldMarshaller.java
T
Michael Bayne 7a1a162a0d Changed field marshaller registration to be compatible with DashO-style
field renaming. I'm a bad monkey for overusing reflection.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1587 542714f4-19e9-0310-aa3c-eee0fc999fb1
2002-07-17 23:05:28 +00:00

31 lines
790 B
Java

//
// $Id: FloatFieldMarshaller.java,v 1.7 2002/07/17 23:05:28 mdb Exp $
package com.threerings.presents.io;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.lang.reflect.Field;
public class FloatFieldMarshaller implements FieldMarshaller
{
/** Returns the sort of field that we marshall. */
public Class getFieldType ()
{
return Float.TYPE;
}
public void writeTo (DataOutputStream out, Field field, Object obj)
throws IOException, IllegalAccessException
{
out.writeFloat(field.getFloat(obj));
}
public void readFrom (DataInputStream in, Field field, Object obj)
throws IOException, IllegalAccessException
{
field.setFloat(obj, in.readFloat());
}
}