definition: |
bpelComp2xml :: BPELComp -> String bpelComp2xml (Invoke name) = "<invoke name=\""++name++"\"/>\n" bpelComp2xml (Wait name) = "<wait name=\""++name++"\"/>\n" bpelComp2xml (Receive name) = "<receive name=\""++name++"\"/>\n" bpelComp2xml (Flow f1 f2) = "<flow>\n" ++ indent 1 (seq2xml f1) ++ indent 1 (seq2xml f2) ++ "</flow>\n" bpelComp2xml (Switch c1 c2 f1 f2) = "<switch>\n" ++ " <case cond=\""++c1++"\">\n" ++ indent 1 (seq2xml f1) ++ " </case>\n" ++ " <case cond=\""++c2++"\">\n" ++ indent 1 (seq2xml f2) ++ " </case>\n" ++ "</switch>\n" |
demand: |
argument 1 |
deterministic: |
deterministic operation |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({Invoke}) |-> _ || ({Wait}) |-> _ || ({Receive}) |-> _ || ({Flow}) |-> _ || ({Switch}) |-> _} |
name: |
bpelComp2xml |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
BPELComp -> String |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |