Coverage Report - org.apache.maven.scm.providers.svn.settings.io.xpp3.SvnXpp3Writer
 
Classes in this File Line Coverage Branch Coverage Complexity
SvnXpp3Writer
0 %
0/29
0 %
0/16
5
 
 1  
 /*
 2  
  =================== DO NOT EDIT THIS FILE ====================
 3  
  Generated by Modello 1.1 on 2012-04-29 21:30:06,
 4  
  any modifications will be overwritten.
 5  
  ==============================================================
 6  
  */
 7  
 
 8  
 package org.apache.maven.scm.providers.svn.settings.io.xpp3;
 9  
 
 10  
   //---------------------------------/
 11  
  //- Imported classes and packages -/
 12  
 //---------------------------------/
 13  
 
 14  
 import java.io.Writer;
 15  
 import java.text.DateFormat;
 16  
 import java.util.Iterator;
 17  
 import java.util.Locale;
 18  
 import org.apache.maven.scm.providers.svn.settings.Settings;
 19  
 import org.codehaus.plexus.util.xml.pull.MXSerializer;
 20  
 import org.codehaus.plexus.util.xml.pull.XmlSerializer;
 21  
 
 22  
 /**
 23  
  * Class SvnXpp3Writer.
 24  
  * 
 25  
  * @version $Revision$ $Date$
 26  
  */
 27  
 @SuppressWarnings( "all" )
 28  0
 public class SvnXpp3Writer
 29  
 {
 30  
 
 31  
       //--------------------------/
 32  
      //- Class/Member Variables -/
 33  
     //--------------------------/
 34  
 
 35  
     /**
 36  
      * Field NAMESPACE.
 37  
      */
 38  0
     private static final String NAMESPACE = null;
 39  
 
 40  
 
 41  
       //-----------/
 42  
      //- Methods -/
 43  
     //-----------/
 44  
 
 45  
     /**
 46  
      * Method write.
 47  
      * 
 48  
      * @param writer
 49  
      * @param settings
 50  
      * @throws java.io.IOException
 51  
      */
 52  
     public void write( Writer writer, Settings settings )
 53  
         throws java.io.IOException
 54  
     {
 55  0
         XmlSerializer serializer = new MXSerializer();
 56  0
         serializer.setProperty( "http://xmlpull.org/v1/doc/properties.html#serializer-indentation", "  " );
 57  0
         serializer.setProperty( "http://xmlpull.org/v1/doc/properties.html#serializer-line-separator", "\n" );
 58  0
         serializer.setOutput( writer );
 59  0
         serializer.startDocument( settings.getModelEncoding(), null );
 60  0
         writeSettings( settings, "svn-settings", serializer );
 61  0
         serializer.endDocument();
 62  0
     } //-- void write( Writer, Settings )
 63  
 
 64  
     /**
 65  
      * Method writeSettings.
 66  
      * 
 67  
      * @param settings
 68  
      * @param serializer
 69  
      * @param tagName
 70  
      * @throws java.io.IOException
 71  
      */
 72  
     private void writeSettings( Settings settings, String tagName, XmlSerializer serializer )
 73  
         throws java.io.IOException
 74  
     {
 75  0
         if ( settings != null )
 76  
         {
 77  0
             serializer.setPrefix( "", "http://maven.apache.org/SCM/SVN/1.1.0" );
 78  0
             serializer.setPrefix( "xsi", "http://www.w3.org/2001/XMLSchema-instance" );
 79  0
             serializer.startTag( NAMESPACE, tagName );
 80  0
             serializer.attribute( "", "xsi:schemaLocation", "http://maven.apache.org/SCM/SVN/1.1.0 http://maven.apache.org/xsd/svn-settings-1.1.0.xsd" );
 81  0
             if ( settings.getConfigDirectory() != null )
 82  
             {
 83  0
                 serializer.startTag( NAMESPACE, "configDirectory" ).text( settings.getConfigDirectory() ).endTag( NAMESPACE, "configDirectory" );
 84  
             }
 85  0
             if ( settings.isUseCygwinPath() != false )
 86  
             {
 87  0
                 serializer.startTag( NAMESPACE, "useCygwinPath" ).text( String.valueOf( settings.isUseCygwinPath() ) ).endTag( NAMESPACE, "useCygwinPath" );
 88  
             }
 89  0
             if ( ( settings.getCygwinMountPath() != null ) && !settings.getCygwinMountPath().equals( "/cygwin" ) )
 90  
             {
 91  0
                 serializer.startTag( NAMESPACE, "cygwinMountPath" ).text( settings.getCygwinMountPath() ).endTag( NAMESPACE, "cygwinMountPath" );
 92  
             }
 93  0
             if ( settings.isUseNonInteractive() != true )
 94  
             {
 95  0
                 serializer.startTag( NAMESPACE, "useNonInteractive" ).text( String.valueOf( settings.isUseNonInteractive() ) ).endTag( NAMESPACE, "useNonInteractive" );
 96  
             }
 97  0
             if ( settings.isUseAuthCache() != false )
 98  
             {
 99  0
                 serializer.startTag( NAMESPACE, "useAuthCache" ).text( String.valueOf( settings.isUseAuthCache() ) ).endTag( NAMESPACE, "useAuthCache" );
 100  
             }
 101  0
             if ( settings.isTrustServerCert() != false )
 102  
             {
 103  0
                 serializer.startTag( NAMESPACE, "trustServerCert" ).text( String.valueOf( settings.isTrustServerCert() ) ).endTag( NAMESPACE, "trustServerCert" );
 104  
             }
 105  0
             serializer.endTag( NAMESPACE, tagName );
 106  
         }
 107  0
     } //-- void writeSettings( Settings, String, XmlSerializer )
 108  
 
 109  
 }