blob: 5e1c8f1ad38c4c71f22f4f0b96c8e009dcfe76d7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 BSI Business Systems Integration AG.
* 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:
* BSI Business Systems Integration AG - initial API and implementation
******************************************************************************/
package org.eclipse.scout.sdk.util.signature;
import java.util.Map;
/**
* <h3>{@link ITypeGenericMapping}</h3> ...
*
* @author Andreas Hoegger
* @since 3.9.0 04.04.2013
*/
public interface ITypeGenericMapping {
/**
* @return
*/
String getFullyQualifiedName();
/**
* @param paramName
* @return
*/
String getParameterSignature(String paramName);
/**
* @return
*/
Map<String, String> getParameters();
}