private void ClearEverything()
 {
     _types.Clear();
     _inputs.Clear();
     _inputNames.Clear();
     _pipes.Clear();
     _dataSources.Clear();
     lastElement = null;
 }
Exemple #2
0
 public MashupElement(string stereotype, MashupElement nextElement, string nextName) : this(stereotype)
 {
     Next.Add(nextElement);
     NextNames.Add(nextName);
 }
Exemple #3
0
 public MashupElement(string stereotype, MashupElement nextElement) : this(stereotype, nextElement, "default")
 {
 }
 public MashupConfiguration(MashupElement root, IEnumerable <string> mashupAssemblies)
     : this(new MashupElement[] { root }, mashupAssemblies)
 {
 }