Commit 030cdc7c authored by Philip Makedonski's avatar Philip Makedonski
Browse files

+ updated generated resources

parent f9b068a0
Loading
Loading
Loading
Loading
+12 −6
Original line number Diff line number Diff line
@@ -68,7 +68,8 @@ public enum ComponentInstanceRole implements Enumerator
	 * @generated
	 */
	private static final ComponentInstanceRole[] VALUES_ARRAY =
		new ComponentInstanceRole[] {
		new ComponentInstanceRole[]
		{
			SUT,
			TESTER,
		};
@@ -91,9 +92,11 @@ public enum ComponentInstanceRole implements Enumerator
	 */
	public static ComponentInstanceRole get(String literal)
	{
		for (int i = 0; i < VALUES_ARRAY.length; ++i) {
		for (int i = 0; i < VALUES_ARRAY.length; ++i)
		{
			ComponentInstanceRole result = VALUES_ARRAY[i];
			if (result.toString().equals(literal)) {
			if (result.toString().equals(literal))
			{
				return result;
			}
		}
@@ -110,9 +113,11 @@ public enum ComponentInstanceRole implements Enumerator
	 */
	public static ComponentInstanceRole getByName(String name)
	{
		for (int i = 0; i < VALUES_ARRAY.length; ++i) {
		for (int i = 0; i < VALUES_ARRAY.length; ++i)
		{
			ComponentInstanceRole result = VALUES_ARRAY[i];
			if (result.getName().equals(name)) {
			if (result.getName().equals(name))
			{
				return result;
			}
		}
@@ -129,7 +134,8 @@ public enum ComponentInstanceRole implements Enumerator
	 */
	public static ComponentInstanceRole get(int value)
	{
		switch (value) {
		switch (value)
		{
			case SUT_VALUE: return SUT;
			case TESTER_VALUE: return TESTER;
		}
+12 −6
Original line number Diff line number Diff line
@@ -68,7 +68,8 @@ public enum GateTypeKind implements Enumerator
	 * @generated
	 */
	private static final GateTypeKind[] VALUES_ARRAY =
		new GateTypeKind[] {
		new GateTypeKind[]
		{
			MESSAGE,
			PROCEDURE,
		};
@@ -91,9 +92,11 @@ public enum GateTypeKind implements Enumerator
	 */
	public static GateTypeKind get(String literal)
	{
		for (int i = 0; i < VALUES_ARRAY.length; ++i) {
		for (int i = 0; i < VALUES_ARRAY.length; ++i)
		{
			GateTypeKind result = VALUES_ARRAY[i];
			if (result.toString().equals(literal)) {
			if (result.toString().equals(literal))
			{
				return result;
			}
		}
@@ -110,9 +113,11 @@ public enum GateTypeKind implements Enumerator
	 */
	public static GateTypeKind getByName(String name)
	{
		for (int i = 0; i < VALUES_ARRAY.length; ++i) {
		for (int i = 0; i < VALUES_ARRAY.length; ++i)
		{
			GateTypeKind result = VALUES_ARRAY[i];
			if (result.getName().equals(name)) {
			if (result.getName().equals(name))
			{
				return result;
			}
		}
@@ -129,7 +134,8 @@ public enum GateTypeKind implements Enumerator
	 */
	public static GateTypeKind get(int value)
	{
		switch (value) {
		switch (value)
		{
			case MESSAGE_VALUE: return MESSAGE;
			case PROCEDURE_VALUE: return PROCEDURE;
		}
+12 −6
Original line number Diff line number Diff line
@@ -89,7 +89,8 @@ public enum ParameterKind implements Enumerator
	 * @generated
	 */
	private static final ParameterKind[] VALUES_ARRAY =
		new ParameterKind[] {
		new ParameterKind[]
		{
			IN,
			OUT,
			EXCEPTION,
@@ -113,9 +114,11 @@ public enum ParameterKind implements Enumerator
	 */
	public static ParameterKind get(String literal)
	{
		for (int i = 0; i < VALUES_ARRAY.length; ++i) {
		for (int i = 0; i < VALUES_ARRAY.length; ++i)
		{
			ParameterKind result = VALUES_ARRAY[i];
			if (result.toString().equals(literal)) {
			if (result.toString().equals(literal))
			{
				return result;
			}
		}
@@ -132,9 +135,11 @@ public enum ParameterKind implements Enumerator
	 */
	public static ParameterKind getByName(String name)
	{
		for (int i = 0; i < VALUES_ARRAY.length; ++i) {
		for (int i = 0; i < VALUES_ARRAY.length; ++i)
		{
			ParameterKind result = VALUES_ARRAY[i];
			if (result.getName().equals(name)) {
			if (result.getName().equals(name))
			{
				return result;
			}
		}
@@ -151,7 +156,8 @@ public enum ParameterKind implements Enumerator
	 */
	public static ParameterKind get(int value)
	{
		switch (value) {
		switch (value)
		{
			case IN_VALUE: return IN;
			case OUT_VALUE: return OUT;
			case EXCEPTION_VALUE: return EXCEPTION;
+12 −6
Original line number Diff line number Diff line
@@ -89,7 +89,8 @@ public enum TimeLabelUseKind implements Enumerator
	 * @generated
	 */
	private static final TimeLabelUseKind[] VALUES_ARRAY =
		new TimeLabelUseKind[] {
		new TimeLabelUseKind[]
		{
			LAST,
			PREVIOUS,
			FIRST,
@@ -113,9 +114,11 @@ public enum TimeLabelUseKind implements Enumerator
	 */
	public static TimeLabelUseKind get(String literal)
	{
		for (int i = 0; i < VALUES_ARRAY.length; ++i) {
		for (int i = 0; i < VALUES_ARRAY.length; ++i)
		{
			TimeLabelUseKind result = VALUES_ARRAY[i];
			if (result.toString().equals(literal)) {
			if (result.toString().equals(literal))
			{
				return result;
			}
		}
@@ -132,9 +135,11 @@ public enum TimeLabelUseKind implements Enumerator
	 */
	public static TimeLabelUseKind getByName(String name)
	{
		for (int i = 0; i < VALUES_ARRAY.length; ++i) {
		for (int i = 0; i < VALUES_ARRAY.length; ++i)
		{
			TimeLabelUseKind result = VALUES_ARRAY[i];
			if (result.getName().equals(name)) {
			if (result.getName().equals(name))
			{
				return result;
			}
		}
@@ -151,7 +156,8 @@ public enum TimeLabelUseKind implements Enumerator
	 */
	public static TimeLabelUseKind get(int value)
	{
		switch (value) {
		switch (value)
		{
			case LAST_VALUE: return LAST;
			case PREVIOUS_VALUE: return PREVIOUS;
			case FIRST_VALUE: return FIRST;
+12 −6
Original line number Diff line number Diff line
@@ -89,7 +89,8 @@ public enum UnassignedMemberTreatment implements Enumerator
	 * @generated
	 */
	private static final UnassignedMemberTreatment[] VALUES_ARRAY =
		new UnassignedMemberTreatment[] {
		new UnassignedMemberTreatment[]
		{
			UNDEFINED,
			ANY_VALUE,
			ANY_VALUE_OR_OMIT,
@@ -113,9 +114,11 @@ public enum UnassignedMemberTreatment implements Enumerator
	 */
	public static UnassignedMemberTreatment get(String literal)
	{
		for (int i = 0; i < VALUES_ARRAY.length; ++i) {
		for (int i = 0; i < VALUES_ARRAY.length; ++i)
		{
			UnassignedMemberTreatment result = VALUES_ARRAY[i];
			if (result.toString().equals(literal)) {
			if (result.toString().equals(literal))
			{
				return result;
			}
		}
@@ -132,9 +135,11 @@ public enum UnassignedMemberTreatment implements Enumerator
	 */
	public static UnassignedMemberTreatment getByName(String name)
	{
		for (int i = 0; i < VALUES_ARRAY.length; ++i) {
		for (int i = 0; i < VALUES_ARRAY.length; ++i)
		{
			UnassignedMemberTreatment result = VALUES_ARRAY[i];
			if (result.getName().equals(name)) {
			if (result.getName().equals(name))
			{
				return result;
			}
		}
@@ -151,7 +156,8 @@ public enum UnassignedMemberTreatment implements Enumerator
	 */
	public static UnassignedMemberTreatment get(int value)
	{
		switch (value) {
		switch (value)
		{
			case UNDEFINED_VALUE: return UNDEFINED;
			case ANY_VALUE_VALUE: return ANY_VALUE;
			case ANY_VALUE_OR_OMIT_VALUE: return ANY_VALUE_OR_OMIT;
Loading