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

📄 alignmentchange.java

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


import com.jfimagine.jfdraw.draw.AlignShapes;
 
 /**
 * A AlignmentChange class is the shape alignment information class.
 *
 * @author     CookieMaker    
 *
 * @version $Revision: 1.4.0 $
 */  
public class AlignmentChange extends AbstractGraphChange {  
	
	private int m_alignmentType=0;
	
	/** set alignment type, alignment types is defined at
	 *  AlignShapes class.
	 *  @param alignmentType A new alignment type.
	 */
	public void setAlignmentType(int alignmentType){
		m_alignmentType	=alignmentType;
	}
	
	/** get alignment type, alignment types is defined at
	 *  AlignShapes class.
	 *  @return the alignment type
	 */
	public int getAlignmentType(){
		return m_alignmentType;
	}


	
 	
}

⌨️ 快捷键说明

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