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

📄 labelchange.java

📁 用Java开发的、实现类似Visio功能的应用程序源码
💻 JAVA
字号:
/**
 *    $Id:LabelChange.java $
 *
 *    Copyright 2004 ~ 2005  JingFei International Cooperation LTD. All rights reserved. *
 */
package com.jfimagine.jfgraph.event;


import com.jfimagine.jfgraph.shape.base.Label;
 
 /**
 * A LabelChange class is the label change information class.
 *
 * @author     CookieMaker    
 *
 * @version $Revision: 1.3.1 $
 */  
public class LabelChange extends AbstractGraphChange {  

	/** current label. */        
	private Label m_label;

	/**
	 *  get current changed label
	 */		
	public  Label getLabel(){
		return m_label;
	}

	/**
	 *  set current changed label
	 */		
	public  void setLabel(Label label){
		m_label	=label;
	}
	
}

⌨️ 快捷键说明

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