/******************************************************************************* * Copyright (c) 2012 VMware, Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * VMware, Inc. - initial API and implementation *******************************************************************************/ package org.springframework.ide.eclipse.metadata.core; import org.springframework.ide.eclipse.beans.core.metadata.model.AbstractAnnotationMetadata; import org.springframework.ide.eclipse.beans.core.metadata.model.IBeanMetadata; import org.springframework.ide.eclipse.beans.core.model.IBean; import org.springframework.ide.eclipse.core.model.IModelSourceLocation; /** * {@link IBeanMetadata} implementation for Stereotype annotations. * @author Christian Dupuis * @author Leo Dos Santos * @since 1.0.0 */ public class StereotypeAnnotationMetadata extends AbstractAnnotationMetadata { private static final long serialVersionUID = 7049736313729714666L; public StereotypeAnnotationMetadata(IBean bean, String handle, Object value, IModelSourceLocation location) { super(bean, handle, value, location); } }