Example #1
0
 /** Creates a PropertyValue for an aadlinteger. */
 public static IntegerLiteral createIntegerValue(long intValue) {
   IntegerLiteral newPropertyValue = Aadl2Factory.eINSTANCE.createIntegerLiteral();
   newPropertyValue.setValue(intValue);
   return newPropertyValue;
 }