📄 commonexpressionparticipant.java
字号:
package org.enhydra.jawe.components.graph;import org.enhydra.jawe.ResourceManager;import org.enhydra.shark.xpdl.XMLCollectionElement;import org.enhydra.shark.xpdl.elements.Participant;/** * Represents imaginary participant for entering performer expressions. * * @author Sasa Bojanic */public class CommonExpressionParticipant extends Participant { protected XMLCollectionElement wpOrAs; public CommonExpressionParticipant (CommonExpressionParticipants parent,XMLCollectionElement wpOrAs) { super(parent); this.wpOrAs=wpOrAs; setDescription(ResourceManager.getLanguageDependentString("CommonExpressionParticipantDescription")); setReadOnly(true); this.isReadOnly=false; get("Id").setReadOnly(false); } public XMLCollectionElement getGraphXPDLElement () { return wpOrAs; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -