View Javadoc
1 package org.smartcomps.twister.engine.priv.core.definition.impl; 2 3 import org.smartcomps.twister.engine.priv.core.definition.Wait; 4 5 /*** 6 * Persistent implementation of the Wait interface. 7 * @see org.smartcomps.twister.engine.priv.core.definition.Wait 8 * @hibernate.class table="WAIT" 9 * @hibernate.subclass discriminator-value="WAIT" 10 */ 11 public class WaitImpl extends BasicActivityImpl implements Wait { 12 13 private String time; 14 private boolean duration = false; 15 16 /*** 17 * @hibernate.property length="100" 18 */ 19 public String getTime() { 20 return time; 21 } 22 23 public void setTime(String time) { 24 this.time = time; 25 } 26 27 /*** 28 * @hibernate.property 29 */ 30 public boolean isDuration() { 31 return duration; 32 } 33 34 public void setDuration(boolean period) { 35 this.duration = period; 36 } 37 }

This page was automatically generated by Maven