📄 alignmentchange.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 + -