attributemodel.java

来自「纯java操作系统jnode,安装简单和操作简单的个人使用的Java操作系统」· Java 代码 · 共 35 行

JAVA
35
字号
/*
 * $Id: AttributeModel.java,v 1.1 2003/11/25 11:41:49 epr Exp $
 */
package org.jnode.plugin.model;

import org.jnode.vm.BootableObject;

/**
 * @author epr
 */
public class AttributeModel implements BootableObject {

	private final String name;
	private final String value;
	
	public AttributeModel(String name, String value) {
		this.name = name;
		this.value = value;
	}

	/**
	 * Gets the name of this attribute
	 */
	public String getName() {
		return name;
	}

	/**
	 * Gets the value of this attribute
	 */
	public String getValue() {
		return value;
	}
}

⌨️ 快捷键说明

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