Update of /cvsroot/mocklib/mocklib3/input/javasrc/biz/xsoftware/impl/mock
In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv25412/input/javasrc/biz/xsoftware/impl/mock
Modified Files:
MockObjectFactoryImpl.java
Log Message:
- Adding Apache License header
- Javadoc cleanup
Index: MockObjectFactoryImpl.java
===================================================================
RCS file: /cvsroot/mocklib/mocklib3/input/javasrc/biz/xsoftware/impl/mock/MockObjectFactoryImpl.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** MockObjectFactoryImpl.java 23 May 2008 19:06:02 -0000 1.3
--- MockObjectFactoryImpl.java 11 Feb 2009 18:32:18 -0000 1.4
***************
*** 1,2 ****
--- 1,16 ----
+ /*
+ * Copyright 2009 mocklib.sourceforge.net
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
package biz.xsoftware.impl.mock;
***************
*** 6,11 ****
--- 20,33 ----
import biz.xsoftware.mock.MockObjectFactory;
+ /**
+ * Default implementation of the MockObjectFactory which is used
+ * to create instances of {@link MockObject}s
+ */
public final class MockObjectFactoryImpl extends MockObjectFactory {
+ /**
+ * Creates {@link MockObject} instances
+ * @see biz.xsoftware.mock.MockObjectFactory#createMockImpl(java.lang.String, java.lang.Class<?>[])
+ */
@Override
public MockObject createMockImpl(final String id, final Class<?>[] interfaces) {
|