blob: fe1e613bfc7b5e06805b20152285d5a904d7bf44 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Shane Clarke.
* 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:
* Shane Clarke - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.ws.internal.jaxws.core.annotations.initialization;
import java.lang.annotation.Annotation;
import java.util.ArrayList;
import java.util.List;
import java.util.Locale;
import org.eclipse.jdt.core.IJavaElement;
import org.eclipse.jdt.core.IMethod;
import org.eclipse.jdt.core.IType;
import org.eclipse.jdt.core.JavaModelException;
import org.eclipse.jdt.core.dom.AST;
import org.eclipse.jdt.core.dom.MemberValuePair;
import org.eclipse.jface.text.contentassist.ICompletionProposal;
import org.eclipse.jst.ws.annotations.core.AnnotationsCore;
import org.eclipse.jst.ws.annotations.core.initialization.AnnotationAttributeInitializer;
import org.eclipse.jst.ws.annotations.core.utils.AnnotationUtils;
import org.eclipse.jst.ws.internal.jaxws.core.JAXWSCorePlugin;
import org.eclipse.jst.ws.jaxws.core.utils.JDTUtils;
/**
*
* @author sclarke
*
*/
public class ResponseWrapperAttributeInitializer extends AnnotationAttributeInitializer {
private static final String CLASS_NAME = "className"; //$NON-NLS-1$
private static final String LOCAL_NAME = "localName"; //$NON-NLS-1$
private static final String TARGET_NAMESPACE = "targetNamespace"; //$NON-NLS-1$
private static final String RESPONSE_SUFFIX = "Response"; //$NON-NLS-1$
public ResponseWrapperAttributeInitializer() {
}
@Override
public List<MemberValuePair> getMemberValuePairs(IJavaElement javaElement, AST ast,
Class<? extends Annotation> annotationClass) {
List<MemberValuePair> memberValuePairs = new ArrayList<MemberValuePair>();
if (javaElement.getElementType() == IJavaElement.METHOD) {
IMethod method = (IMethod) javaElement;
IType type = method.getCompilationUnit().findPrimaryType();
MemberValuePair classNameValuePair = AnnotationsCore.createStringMemberValuePair(ast, CLASS_NAME,
getClassName(type, method));
MemberValuePair localNameValuePair = AnnotationsCore.createStringMemberValuePair(ast, LOCAL_NAME,
getLocalName(type, method));
MemberValuePair targetNamespaceValuePair = AnnotationsCore.createStringMemberValuePair(ast,
TARGET_NAMESPACE, getTargetNamespace(type));
memberValuePairs.add(classNameValuePair);
memberValuePairs.add(localNameValuePair);
memberValuePairs.add(targetNamespaceValuePair);
}
return memberValuePairs;
}
public List<ICompletionProposal> getCompletionProposalsForMemberValuePair(IJavaElement javaElement,
MemberValuePair memberValuePair) {
List<ICompletionProposal> completionProposals = new ArrayList<ICompletionProposal>();
if (javaElement.getElementType() == IJavaElement.METHOD) {
IMethod method = (IMethod) javaElement;
IType type = method.getCompilationUnit().findPrimaryType();
String memberValuePairName = memberValuePair.getName().getIdentifier();
if (memberValuePairName.equals(CLASS_NAME)) {
completionProposals.add(AnnotationUtils.createCompletionProposal(getClassName(type, method),
memberValuePair.getValue()));
}
if (memberValuePairName.equals(LOCAL_NAME)) {
completionProposals.add(AnnotationUtils.createCompletionProposal(getLocalName(type, method),
memberValuePair.getValue()));
}
if (memberValuePairName.equals(TARGET_NAMESPACE)) {
completionProposals.add(AnnotationUtils.createCompletionProposal(getTargetNamespace(type),
memberValuePair.getValue()));
}
}
return completionProposals;
}
private String getPackageName(IType type) {
String packageName = type.getPackageFragment().getElementName();
if (packageName == null || packageName.length() == 0) {
packageName = "default_package"; //$NON-NLS-1$
}
return packageName += "."; //$NON-NLS-1$
}
private String getClassName(IType type, IMethod method) {
try {
String methodName = method.getElementName() + RESPONSE_SUFFIX;
return getPackageName(type) + methodName.substring(0, 1).toUpperCase(Locale.getDefault())
+ methodName.substring(1) + AnnotationUtils.accountForOverloadedMethods(type, method);
} catch (JavaModelException jme) {
JAXWSCorePlugin.log(jme.getStatus());
}
return "";
}
private String getLocalName(IType type, IMethod method) {
try {
return method.getElementName() + RESPONSE_SUFFIX + AnnotationUtils.accountForOverloadedMethods(type, method);
} catch (JavaModelException jme) {
JAXWSCorePlugin.log(jme.getStatus());
}
return "";
}
private String getTargetNamespace(IType type) {
return JDTUtils.getTargetNamespaceFromPackageName(getPackageName(type));
}
}