memofield.java

来自「工厂版本管理系统,STRUTS2框架,用于管理商品的版本,便于有效的控制版本」· Java 代码 · 共 26 行

JAVA
26
字号
package com.utstar.fcs.domain.workinstruction.field;

import com.utstar.fcs.domain.workinstruction.Field;

public class MemoField extends Field {
	private String value;

	public static MemoField getSample() {
		MemoField mf = new MemoField();
		mf
				.setValue("PowerDesigner, a model-driven approach to align business and IT, is an enterprise modeling and design solution that helps implement effective Enterprise Architecture and brings a powerful meta-data management environment to your application development life cycle."
						+ "\nPowerDesigner uniquely combines several standard modeling techniques (UML, Business Process Modeling and market-leading data modeling) together with leading development environments such as .NET, Workspace, PowerBuilder, Java, Eclipse, etc., to bring business analysis and formal design processes to the traditional software development lifecycle. And it works with all modern RDBMSs");

		return mf;
	}

	public String getValue() {
		return value;
	}

	public void setValue(String value) {
		this.value = value;
	}

}

⌨️ 快捷键说明

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