/* * Copyright (c) 2007 Mockito contributors * This program is made available under the terms of the MIT License. */ package org.mockito.internal.creation.settings; import org.mockito.listeners.InvocationListener; import org.mockito.mock.MockCreationSettings; import org.mockito.mock.MockName; import org.mockito.stubbing.Answer; import java.io.Serializable; import java.util.ArrayList; import java.util.LinkedHashSet; import java.util.List; import java.util.Set; /** * by Szczepan Faber, created at: 4/9/12 */ public class CreationSettings implements MockCreationSettings, Serializable { private static final long serialVersionUID = -6789800638070123629L; protected Class typeToMock; protected Set extraInterfaces = new LinkedHashSet(); protected String name; protected Object spiedInstance; protected Answer defaultAnswer; protected MockName mockName; protected boolean serializable; protected List invocationListeners = new ArrayList(); protected boolean stubOnly; public CreationSettings() {} @SuppressWarnings("unchecked") public CreationSettings(CreationSettings copy) { this.typeToMock = copy.typeToMock; this.extraInterfaces = copy.extraInterfaces; this.name = copy.name; this.spiedInstance = copy.spiedInstance; this.defaultAnswer = copy.defaultAnswer; this.mockName = copy.mockName; this.serializable = copy.serializable; this.invocationListeners = copy.invocationListeners; this.stubOnly = copy.stubOnly; } public Class getTypeToMock() { return typeToMock; } public CreationSettings setTypeToMock(Class typeToMock) { this.typeToMock = typeToMock; return this; } public Set getExtraInterfaces() { return extraInterfaces; } public CreationSettings setExtraInterfaces(Set extraInterfaces) { this.extraInterfaces = extraInterfaces; return this; } public String getName() { return name; } public Object getSpiedInstance() { return spiedInstance; } public Answer getDefaultAnswer() { return defaultAnswer; } public MockName getMockName() { return mockName; } public CreationSettings setMockName(MockName mockName) { this.mockName = mockName; return this; } public boolean isSerializable() { return serializable; } public List getInvocationListeners() { return invocationListeners; } public boolean isStubOnly() { return stubOnly; } }