number.java

来自「一个很好的微工作流内核」· Java 代码 · 共 25 行

JAVA
25
字号
/* * 	  *  Copyright (c) 2003 Dragos Manolescu (dam@micro-workflow.com) *  *  See the LICENSE file for licensing information. */package com.microworkflow.pcexample;/** * @author dam */public class Number extends Object {	protected Double value;	public Number(Double value) {		this.value = value;	}	public Double getValue() {		return value;	}}

⌨️ 快捷键说明

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