jadex.bpmn.model.MProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-model-bpmn Show documentation
Show all versions of jadex-model-bpmn Show documentation
Business Process Model and Notation (BPMN) implementation.
The newest version!
package jadex.bpmn.model;
import jadex.bridge.ClassInfo;
import jadex.bridge.modelinfo.UnparsedExpression;
/**
* A parameter model element.
*/
public class MProperty extends MAnnotationElement
{
//-------- attributes --------
/** The clazz. */
protected ClassInfo clazz;
/** The name. */
protected String name;
/** The initial value. */
protected UnparsedExpression initialval; // IParsedExpression
//-------- constructors --------
/**
* Create a new parameter.
*/
public MProperty()
{
}
/**
* Create a new parameter.
*/
public MProperty(ClassInfo clazz, String name,
UnparsedExpression initialval)
{
this.clazz = clazz;
this.name = name;
this.initialval = initialval;
}
//-------- methods --------
/**
* Get the clazz.
* @return The clazz.
*/
public ClassInfo getClazz()
{
return this.clazz;
}
/**
* Set the clazz.
* @param clazz The clazz to set.
*/
public void setClazz(ClassInfo clazz)
{
this.clazz = clazz;
}
/**
* Get the name.
* @return The name.
*/
public String getName()
{
return this.name;
}
/**
* Set the name.
* @param name The name to set.
*/
public void setName(String name)
{
this.name = name;
}
/**
* Get the initialval.
* @return The initialval.
*/
public UnparsedExpression getInitialValue()
{
return this.initialval;
}
/**
* Get the initialval.
* @return The initialval.
*/
public String getInitialValueString()
{
UnparsedExpression exp = getInitialValue();
return exp != null? exp.getValue() : null;
}
/**
* Set the initial value.
* @param initialval The initial value to set.
*/
public void setInitialValue(UnparsedExpression initialval)
{
// System.out.println("setting: "+initialval.getValue());
this.initialval = initialval;
}
/**
* Set the initial value.
* @param initialval The initial value to set.
*/
public void setInitialValue(String initialval)
{
if(initialval == null)
{
this.initialval.setValue(null);
}
else
{
if(this.initialval == null)
{
this.initialval = new UnparsedExpression(name, clazz==null? null: clazz.getTypeName(), null, null);
}
this.initialval.setValue(initialval);
}
}
/**
* Get the string representation.
* @return The string representation.
*/
public String toString()
{
return "MParameter(clazz=" + this.clazz + ", initialval=" + this.initialval
+ ", name=" + this.name + ")";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy