⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 regdata.java

📁 一个开源的组件
💻 JAVA
字号:
package org.xvolks.jnative.misc.registry;

import org.xvolks.jnative.exceptions.NativeException;
import org.xvolks.jnative.misc.basicStructures.LONG;

/**
 * $Id: RegData.java,v 1.1 2006/06/05 21:22:02 mdenty Exp $
 * 
 * This software is released under the LGPL.
 * 
 * @author Created by Marc DENTY - (c) 2006 JNative project
 */
public class RegData extends BasicRegData {
	/**
	 * A pointer to a variable that receives a code indicating the type of data
	 * stored in the specified value. For a list of the possible type codes, see
	 * Registry Value Types. The lpType parameter can be NULL if the type code
	 * is not required.
	 */
	private LONG lpType;

	public RegData(int lDataSize) throws NativeException {
		super(lDataSize);
		lpType = new LONG(0);
	}

	public LONG getLpType() {
		return lpType;
	}

	@Override
	public String toString() {
		return super.toString() + "Type : " + lpType.getValue() + "\n";
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -