Coverage Report - org.xembly.SetDirective
 
Classes in this File Line Coverage Branch Coverage Complexity
SetDirective
90%
9/10
14%
2/14
1.333
 
 1  
 /**
 2  
  * Copyright (c) 2013-2017, xembly.org
 3  
  * All rights reserved.
 4  
  *
 5  
  * Redistribution and use in source and binary forms, with or without
 6  
  * modification, are permitted provided that the following conditions
 7  
  * are met: 1) Redistributions of source code must retain the above
 8  
  * copyright notice, this list of conditions and the following
 9  
  * disclaimer. 2) Redistributions in binary form must reproduce the above
 10  
  * copyright notice, this list of conditions and the following
 11  
  * disclaimer in the documentation and/or other materials provided
 12  
  * with the distribution. 3) Neither the name of the xembly.org nor
 13  
  * the names of its contributors may be used to endorse or promote
 14  
  * products derived from this software without specific prior written
 15  
  * permission.
 16  
  *
 17  
  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 18  
  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
 19  
  * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 20  
  * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
 21  
  * THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
 22  
  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 23  
  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 24  
  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 25  
  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 26  
  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 27  
  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 28  
  * OF THE POSSIBILITY OF SUCH DAMAGE.
 29  
  */
 30  
 package org.xembly;
 31  
 
 32  
 import lombok.EqualsAndHashCode;
 33  
 import org.w3c.dom.Node;
 34  
 
 35  
 /**
 36  
  * SET directive.
 37  
  *
 38  
  * <p>The class is immutable and thread-safe.
 39  
  *
 40  
  * @author Yegor Bugayenko (yegor256@gmail.com)
 41  
  * @version $Id: 05220ddc6f1c6f7c81a7d24fe20163f3b5e6ecc9 $
 42  
  * @since 0.1
 43  
  */
 44  0
 @EqualsAndHashCode(of = "value")
 45  
 final class SetDirective implements Directive {
 46  
 
 47  
     /**
 48  
      * Text value to set.
 49  
      */
 50  
     private final transient Arg value;
 51  
 
 52  
     /**
 53  
      * Public ctor.
 54  
      * @param val Text value to set
 55  
      * @throws XmlContentException If invalid input
 56  
      */
 57  119
     SetDirective(final String val) throws XmlContentException {
 58  119
         this.value = new Arg(val);
 59  120
     }
 60  
 
 61  
     @Override
 62  
     public String toString() {
 63  3
         return String.format("SET %s", this.value);
 64  
     }
 65  
 
 66  
     @Override
 67  
     public Directive.Cursor exec(final Node dom,
 68  
         final Directive.Cursor cursor, final Directive.Stack stack) {
 69  116
         final String val = this.value.raw();
 70  116
         for (final Node node : cursor) {
 71  117
             node.setTextContent(val);
 72  117
         }
 73  116
         return cursor;
 74  
     }
 75  
 
 76  
 }