blob: 62b567ea421e25a43b1413b1fa43d6a27bb4614c [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.util.wellform;
import java.util.Set;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.jdt.core.IType;
import org.eclipse.scout.sdk.extensions.runtime.classes.IRuntimeClasses;
import org.eclipse.scout.sdk.operation.IOperation;
import org.eclipse.scout.sdk.util.type.TypeUtility;
import org.eclipse.scout.sdk.util.typecache.ICachedTypeHierarchy;
import org.eclipse.scout.sdk.util.typecache.IWorkingCopyManager;
import org.eclipse.scout.sdk.workspace.IScoutBundle;
import org.eclipse.scout.sdk.workspace.type.ScoutTypeFilters;
/**
*
*/
public class WellformPagesOperation implements IOperation {
private final IScoutBundle m_clientBundle;
private Set<IType> m_pages;
public WellformPagesOperation(IScoutBundle clientBundle) {
m_clientBundle = clientBundle;
}
@Override
public String getOperationName() {
return "wellform all pages...";
}
@Override
public void validate() {
if (!getClientBundle().hasType(IScoutBundle.TYPE_CLIENT)) {
throw new IllegalArgumentException("bundle must be a client bundle.");
}
}
@Override
public void run(IProgressMonitor monitor, IWorkingCopyManager workingCopyManager) throws CoreException {
// find types
IType iPage = TypeUtility.getType(IRuntimeClasses.IPage);
ICachedTypeHierarchy hierarchy = TypeUtility.getPrimaryTypeHierarchy(iPage);
m_pages = hierarchy.getAllSubtypes(iPage, ScoutTypeFilters.getClassesInScoutBundles(getClientBundle()));
// format types
if (monitor.isCanceled()) {
return;
}
WellformScoutTypeOperation op = new WellformScoutTypeOperation(m_pages, true);
op.validate();
op.run(monitor, workingCopyManager);
}
public IScoutBundle getClientBundle() {
return m_clientBundle;
}
public Set<IType> getPages() {
return m_pages;
}
}