blob: e4aab4ecbf8b9a258fc5a72d7f4d9a011c8a8af7 [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.operation.form.field;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jdt.core.Flags;
import org.eclipse.jdt.core.IJavaElement;
import org.eclipse.jdt.core.IType;
import org.eclipse.scout.commons.StringUtility;
import org.eclipse.scout.nls.sdk.model.INlsEntry;
import org.eclipse.scout.sdk.extensions.runtime.classes.RuntimeClasses;
import org.eclipse.scout.sdk.operation.IOperation;
import org.eclipse.scout.sdk.sourcebuilder.SortedMemberKeyFactory;
import org.eclipse.scout.sdk.sourcebuilder.method.IMethodSourceBuilder;
import org.eclipse.scout.sdk.sourcebuilder.method.MethodBodySourceBuilderFactory;
import org.eclipse.scout.sdk.sourcebuilder.method.MethodSourceBuilderFactory;
import org.eclipse.scout.sdk.util.SdkProperties;
import org.eclipse.scout.sdk.util.typecache.IWorkingCopyManager;
/**
* <h3>BigintegerFieldNewOperation</h3> ...
*/
public class BigintegerFieldNewOperation implements IOperation {
// in members
private final IType m_declaringType;
private boolean m_formatSource;
private String m_typeName;
private INlsEntry m_nlsEntry;
private String m_superTypeSignature;
private IJavaElement m_sibling;
// out members
private IType m_createdField;
public BigintegerFieldNewOperation(String typeName, IType declaringType) {
this(typeName, declaringType, true);
}
public BigintegerFieldNewOperation(String typeName, IType declaringType, boolean formatSource) {
m_typeName = typeName;
m_declaringType = declaringType;
m_formatSource = formatSource;
// default
setSuperTypeSignature(RuntimeClasses.getSuperTypeSignature(RuntimeClasses.IBigIntegerField, getDeclaringType().getJavaProject()));
}
@Override
public String getOperationName() {
return "Create Biginteger field '" + getTypeName() + "'...";
}
@Override
public void validate() throws IllegalArgumentException {
if (StringUtility.isNullOrEmpty(getTypeName())) {
throw new IllegalArgumentException("typeName is null or empty.");
}
if (getDeclaringType() == null) {
throw new IllegalArgumentException("declaring type can not be null.");
}
}
@Override
public void run(IProgressMonitor monitor, IWorkingCopyManager workingCopyManager) throws CoreException, IllegalArgumentException {
FormFieldNewOperation newOp = new FormFieldNewOperation(getTypeName(), getDeclaringType());
newOp.setFlags(Flags.AccPublic);
newOp.setSuperTypeSignature(getSuperTypeSignature());
newOp.setSibling(getSibling());
// getConfiguredLabel method
if (getNlsEntry() != null) {
IMethodSourceBuilder nlsMethodBuilder = MethodSourceBuilderFactory.createOverrideMethodSourceBuilder(newOp.getSourceBuilder(), SdkProperties.METHOD_NAME_GET_CONFIGURED_LABEL);
nlsMethodBuilder.setMethodBodySourceBuilder(MethodBodySourceBuilderFactory.createNlsEntryReferenceBody(getNlsEntry()));
newOp.addSortedMethodSourceBuilder(SortedMemberKeyFactory.createMethodGetConfiguredKey(nlsMethodBuilder), nlsMethodBuilder);
}
newOp.setFormatSource(isFormatSource());
newOp.validate();
newOp.run(monitor, workingCopyManager);
m_createdField = newOp.getCreatedType();
}
public IType getCreatedField() {
return m_createdField;
}
public IType getDeclaringType() {
return m_declaringType;
}
public void setFormatSource(boolean formatSource) {
m_formatSource = formatSource;
}
public boolean isFormatSource() {
return m_formatSource;
}
public String getTypeName() {
return m_typeName;
}
public void setTypeName(String typeName) {
m_typeName = typeName;
}
public INlsEntry getNlsEntry() {
return m_nlsEntry;
}
public void setNlsEntry(INlsEntry nlsEntry) {
m_nlsEntry = nlsEntry;
}
public String getSuperTypeSignature() {
return m_superTypeSignature;
}
public void setSuperTypeSignature(String superTypeSignature) {
m_superTypeSignature = superTypeSignature;
}
public IJavaElement getSibling() {
return m_sibling;
}
public void setSibling(IJavaElement sibling) {
m_sibling = sibling;
}
}