-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added in case insensitivity for XML tags as well as attribute values
added in the ability to define constants in the definition xml by added the extenedelements tag to definitions and defining either a DefinitionVariable or DefinitionFile added in the ability to define runtime constants for a process at the point of creation Both tweaks above now mean variables are obtained form the process variable container in the following order (Container->Runtime->Definition Constants), so during any process run new variables with the same name can be defined and they will be returned when accessing the variable. If the variable name is not contained within the process variables, the runtime constants are checked, still not found, definition constants are checked, still not found, return null.
- Loading branch information
1 parent
16e9e41
commit 321f226
Showing
39 changed files
with
988 additions
and
744 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using Org.Reddragonit.BpmEngine.Attributes; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
using System.Xml; | ||
|
||
namespace Org.Reddragonit.BpmEngine.Elements.Collaborations | ||
{ | ||
[XMLTag("bpmn", "text")] | ||
internal class Text : AElement | ||
{ | ||
|
||
public string Value { get { return Element.InnerText; } } | ||
public Text(XmlElement elem, XmlPrefixMap map, AElement parent) : base(elem, map, parent) | ||
{ | ||
} | ||
} | ||
} |
Oops, something went wrong.