Clover coverage report - JBind Project
Coverage timestamp: Fr Mai 28 2004 11:17:36 CEST
file stats: LOC: 23   Methods: 1
NCLOC: 11   Classes: 1
This license of Clover is provided to support the development of JBind only. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover.
 
 Source file Conditionals Statements Methods TOTAL
TextMemento.java - 100% 100% 100%
 1   
 /*
 2   
  * JBind
 3   
  *
 4   
  * Copyright (c) by Stefan Wachter. All rights reserved.
 5   
  *
 6   
  * Usage, modification, and redistribution is subject to license terms that are
 7   
  * available at 'http://www.jbind.org'. The JBind license is like the
 8   
  * 'Apache Software License V 1.1'.
 9   
  */
 10   
 package org.jbind.xml.instance.impl;
 11   
 
 12   
 import org.jbind.xml.core.base.ITextContentMemento;
 13   
 import org.jbind.xml.core.base.ITextContentProvider;
 14   
 
 15   
 public class TextMemento implements ITextContentMemento {
 16   
   public final String textContent;
 17   
   public final ITextContentProvider textContentProvider;
 18  13
   public TextMemento(String aTextContent, ITextContentProvider aTextContentProvider) {
 19  13
     textContent = aTextContent;
 20  13
     textContentProvider = aTextContentProvider;
 21   
   }
 22   
 }
 23