📄 longattribute.java
字号:
// LongAttribute.java// $Id: LongAttribute.java,v 1.4 2000/08/16 21:37:56 ylafon Exp $// (c) COPYRIGHT MIT and INRIA, 1996.// Please first read the full copyright statement in file COPYRIGHT.htmlpackage org.w3c.tools.resources.upgrade ;import java.io.DataInputStream;import java.io.DataOutputStream;import java.io.IOException;/** * The generic description of an LongAttribute. */public class LongAttribute extends Attribute { /** * Is the given object a valid LongAttribute value ? * @param obj The object to test. * @return A boolean <strong>true</strong> if okay. */ public boolean checkValue(Object obj) { return (obj instanceof Long) || (obj == null) ; } /** * Get the number of bytes required to save that attribute value. * @param The value about to be pickled. * @return The number of bytes needed to pickle that value. */ public final int getPickleLength(Object value) { return 8; } /** * Pickle an long to the given output stream. * @param out The output stream to pickle to. * @param obj The object to pickle. * @exception IOException If some IO error occured. */ public void pickle(DataOutputStream out, Object l) throws IOException { out.writeLong(((Long) l).longValue()) ; } /** * Unpickle an long from the given input stream. * @param in The input stream to unpickle from. * @return An instance of Long. * @exception IOException If some IO error occured. */ public Object unpickle (DataInputStream in) throws IOException { return new Long(in.readLong()) ; } public LongAttribute(String name, Long def, Integer flags) { super(name, def, flags) ; this.type = "java.lang.Long"; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -