Package org.jboss.marshalling.util
Class ShortFieldPutter
- java.lang.Object
-
- org.jboss.marshalling.util.FieldPutter
-
- org.jboss.marshalling.util.ShortFieldPutter
-
public class ShortFieldPutter extends FieldPutter
A field putter for short-type fields.
-
-
Constructor Summary
Constructors Constructor Description ShortFieldPutter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description KindgetKind()Get the kind of field being written.shortgetShort()Get the short value of this field.voidsetShort(short value)Set the short value of this field.voidwrite(Marshaller marshaller)Write the value of this field in its proper native format.
-
-
-
Method Detail
-
write
public void write(Marshaller marshaller) throws IOException
Write the value of this field in its proper native format.- Specified by:
writein classFieldPutter- Parameters:
marshaller- the marshaller to which to write- Throws:
IOException- if an error occurs
-
getKind
public Kind getKind()
Get the kind of field being written.- Specified by:
getKindin classFieldPutter- Returns:
- the kind of field
-
getShort
public short getShort()
Get the short value of this field.- Overrides:
getShortin classFieldPutter- Returns:
- the short value of this field
-
setShort
public void setShort(short value)
Set the short value of this field.- Overrides:
setShortin classFieldPutter- Parameters:
value- the short value of this field
-
-