1 23 package org.objectweb.clif.scenario.util.isac.engine.behavior.node.description; 24 25 31 public class IfDescription { 32 private TestDescription condition ; 34 35 39 public IfDescription(TestDescription c) { 40 this.condition = c ; 41 } 42 43 47 50 public TestDescription getCondition() { 51 return condition; 52 } 53 54 58 public String toString() { 59 return condition.toString() ; 60 } 61 62 } 63 | Popular Tags |