Package de.innovationgate.wgpublisher.webtml.Select

Examples of de.innovationgate.wgpublisher.webtml.Select.Status


        If.Status parentTag = null;
    }
   
    @Override
    protected BaseTagStatus createTagStatus() {
        return new Status();
    }
View Full Code Here


        return new Status();
    }

  public void tmlEndTag()  {

      Status status = (Status) getStatus();
      If.Status ifStatus = status.parentTag;
    if (ifStatus.mainConditionTrue) {
        ifStatus.mainConditionTrue = false;
        ifStatus.anyConditionTrue = true;
        ifStatus.resultTag = status;
View Full Code Here

   
  }

  public void tmlStartTag() {
     
      Status status = (Status) getStatus();
   
    status.keepResult = true;

    status.parentTag = (If.Status) status.getAncestorTag(If.class);
    if (status.parentTag == null) {
      this.addWarning("Then-Tag without If tag as parent", true);
      return;
    }
    if (status.parentTag.mainConditionTrue == false) {
View Full Code Here

TOP

Related Classes of de.innovationgate.wgpublisher.webtml.Select.Status

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.