Exemple #1
0
        public ElementaryProcess(ClausesTree inTreeElement)
        {
            actor  = new LongOperationAttribut(this);
            action = new LongOperationAttribut(this);
            additionalObjectsForAction = new LongOperationAttribut(this);
            charsOfAction   = new LongOperationAttribut(this);
            objectForAction = new LongOperationAttribut(this);

            this.inTreeElement = inTreeElement;
        }
Exemple #2
0
 private void genStringFromAttr(IOperationStructure attr)
 {
     if (attr != null)
     {
         if ((attr as LongOperationAttribut).attributSequence.Count != 0)
         {
             stringReprezentation += (attr as LongOperationAttribut).getString();
         }
         else
         {
             stringReprezentation += " e ";
         }
     }
     else
     {
         stringReprezentation += " e ";
     }
 }
Exemple #3
0
 public void addUnionToAttr2(IOperationStructure union, string operationBefore)
 {
     unionsForAttr2.Add(union);
     operators.Add(operationBefore);
 }
Exemple #4
0
 public void addElementaryProcess(IOperationStructure process)
 {
     attributSequence.Add(process);
     parentEp.getString();
 }