Package de.innovationgate.wgpublisher.webtml

Source Code of de.innovationgate.wgpublisher.webtml.Select$Status

/*******************************************************************************
* Copyright 2009, 2010 Innovation Gate GmbH. All Rights Reserved.
*
* This file is part of the OpenWGA server platform.
*
* OpenWGA is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* In addition, a special exception is granted by the copyright holders
* of OpenWGA called "OpenWGA plugin exception". You should have received
* a copy of this exception along with OpenWGA in file COPYING.
* If not, see <http://www.openwga.com/gpl-plugin-exception>.
*
* OpenWGA is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with OpenWGA in file COPYING.
* If not, see <http://www.gnu.org/licenses/>.
******************************************************************************/
package de.innovationgate.wgpublisher.webtml;

import java.util.HashMap;
import java.util.Map;

import de.innovationgate.wgpublisher.expressions.ExpressionEngine;
import de.innovationgate.wgpublisher.expressions.ExpressionEngineFactory;
import de.innovationgate.wgpublisher.expressions.ExpressionResult;
import de.innovationgate.wgpublisher.expressions.tmlscript.RhinoExpressionEngine;
import de.innovationgate.wgpublisher.webtml.utils.TMLException;

public class Select extends Base {

  private String testAll;
  private String _switch;
 
  public static class Status extends BaseTagStatus {
      private java.util.ArrayList resultTags = new java.util.ArrayList();
      private boolean bTestAll;
      protected boolean bTestOn;
      protected boolean bHasResultTag;
      Object _switchValue = null;
     
      public void addResultTag(Base tag) {
          resultTags.add(tag);
          bHasResultTag = true;
          if (bTestAll == false) {
              bTestOn = false;
          }
      }
  }
 
  @Override
  protected BaseTagStatus createTagStatus() {
      return new Status();
  }
 
  @Override
  public Status getStatus() {
      return (Status) super.getStatus();
  }
 

  /**
   * Gets the testAll
   * @return Returns a String
   */
  public String getTestall() {
    return this.getTagAttributeValue("testall", testAll, "false");
  }
  /**
   * Sets the testAll
   * @param testAll The testAll to set
   */
  public void setTestall(String testAll) {
    this.testAll = testAll;
  }



  /**
   * @see Base#tmlStartTag()
   */
  public void tmlStartTag() throws TMLException {

      Status status = (Status) getStatus();
    status.bTestAll = this.stringToBoolean(this.getTestall());
    status.bTestOn = true;
    status.bHasResultTag = false;
   
    String switchExpression = getSwitch();
    if (switchExpression != null) {

            ExpressionEngine engine = ExpressionEngineFactory.getTMLScriptEngine();
          
           
            Map objects = new HashMap();
            objects.put(RhinoExpressionEngine.PARAM_SCRIPTNAME, "Switch statement on " + getTagDescription());
            ExpressionResult result = engine.evaluateExpression(switchExpression, this.getTMLContext(), ExpressionEngine.TYPE_EXPRESSION, objects);
            if (result.isError()) {
                addExpressionWarning(switchExpression,result);
            }
            else {
                status._switchValue = result.getResult();
            }

    }

  }
    public String getSwitch() {
        return getTagAttributeValue("switch", _switch, null);
    }
    public void setSwitch(String switch1) {
        _switch = switch1;
    }
    public Object getSwitchValue() {
        Status status = (Status) getStatus();
        return status._switchValue;
    }
}
TOP

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

TOP
Copyright © 2018 www.massapi.com. 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.