2009/04/15 - Apache HiveMind has been retired.

For more information, please explore the Attic.

Clover coverage report - Code Coverage for hivemind release 1.2.1
Coverage timestamp: Fri Feb 10 2006 16:33:43 PST
file stats: LOC: 61   Methods: 4
NCLOC: 31   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ContributionImpl.java 75% 87.5% 100% 87.5%
coverage coverage
 1    // Copyright 2004, 2005 The Apache Software Foundation
 2    //
 3    // Licensed under the Apache License, Version 2.0 (the "License");
 4    // you may not use this file except in compliance with the License.
 5    // You may obtain a copy of the License at
 6    //
 7    // http://www.apache.org/licenses/LICENSE-2.0
 8    //
 9    // Unless required by applicable law or agreed to in writing, software
 10    // distributed under the License is distributed on an "AS IS" BASIS,
 11    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 12    // See the License for the specific language governing permissions and
 13    // limitations under the License.
 14   
 15    package org.apache.hivemind.impl;
 16   
 17    import java.util.ArrayList;
 18    import java.util.Collections;
 19    import java.util.List;
 20   
 21    import org.apache.hivemind.internal.Contribution;
 22    import org.apache.hivemind.internal.Module;
 23   
 24    /**
 25    * Implements the {@link org.apache.hivemind.internal.Contribution} interface, a wrapper
 26    * around objects that can provide values that plug into an extension point.
 27    *
 28    * @author Howard Lewis Ship
 29    */
 30    public final class ContributionImpl implements Contribution
 31    {
 32    private Module _contributingModule;
 33   
 34    private List _elements;
 35   
 36  536 public Module getContributingModule()
 37    {
 38  536 return _contributingModule;
 39    }
 40   
 41  679 public void setContributingModule(Module module)
 42    {
 43  679 _contributingModule = module;
 44    }
 45   
 46  679 public void addElements(List elements)
 47    {
 48  679 if (_elements == null)
 49  679 _elements = new ArrayList(elements);
 50    else
 51  0 _elements.addAll(elements);
 52    }
 53   
 54  1216 public List getElements()
 55    {
 56  1216 if (_elements == null)
 57  1 return Collections.EMPTY_LIST;
 58   
 59  1215 return _elements;
 60    }
 61    }