Clover coverage report -
Coverage timestamp: Sun Nov 1 2009 23:08:24 UTC
file stats: LOC: 52   Methods: 2
NCLOC: 17   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ResourceTypeWriter.java 50% 85.7% 100% 81.8%
coverage coverage
 1    /*
 2    * Licensed to the Apache Software Foundation (ASF) under one or more
 3    * contributor license agreements. See the NOTICE file distributed with
 4    * this work for additional information regarding copyright ownership.
 5    * The ASF licenses this file to You under the Apache License, Version 2.0
 6    * (the "License"); you may not use this file except in compliance with
 7    * the License. You may obtain a copy of the License at
 8    *
 9    * http://www.apache.org/licenses/LICENSE-2.0
 10    *
 11    * Unless required by applicable law or agreed to in writing, software
 12    * distributed under the License is distributed on an "AS IS" BASIS,
 13    * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 14    * See the License for the specific language governing permissions and
 15    * limitations under the License.
 16    *
 17    * $Id: ResourceTypeWriter.java 541508 2007-05-25 01:54:12Z vgritsenko $
 18    */
 19   
 20    package org.apache.xindice.core.meta.inline;
 21   
 22    import org.apache.xindice.core.FaultCodes;
 23   
 24    /**
 25    * Write metadata identifying the resource type (xml or binary).
 26    *
 27    * @version $Revision: 541508 $, $Date: 2007-05-24 18:54:12 -0700 (Thu, 24 May 2007) $
 28    */
 29    public class ResourceTypeWriter implements InlineMetaWriter {
 30   
 31    /**
 32    * @see org.apache.xindice.core.meta.inline.InlineMetaWriter#getVersion()
 33    */
 34  1983 public int getVersion() {
 35  1983 return 1;
 36    }
 37   
 38    /**
 39    * @see org.apache.xindice.core.meta.inline.InlineMetaWriter#getMetadata(InlineMetaMap)
 40    */
 41  1983 public byte[] getMetadata(InlineMetaMap map) throws InlineMetaException {
 42  1983 Integer type = (Integer) map.get("type");
 43  1983 if (type == null) {
 44  0 throw new InlineMetaException(FaultCodes.GEN_CRITICAL_ERROR,
 45    "Unable to create resource type metadata: 'type' value is null");
 46    }
 47   
 48  1983 byte[] bytes = new byte[1];
 49  1983 bytes[0] = type.byteValue();
 50  1983 return bytes;
 51    }
 52    }