blob: 8d9b564023ab80a94931a87defaba89d0668bde6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2013 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0, which accompanies this distribution
* and is available at https://www.eclipse.org/legal/epl-2.0/.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.jpa.ui.internal.handlers;
import java.util.Map;
import org.eclipse.jpt.jpa.core.context.orm.OrmPersistentAttribute;
import org.eclipse.jpt.jpa.core.context.orm.OrmSpecifiedPersistentAttribute;
import org.eclipse.ui.IWorkbenchWindow;
/**
* Convert a list of <code>orm.xml</code> <em>specified</em> attributes to
* <em>virtual</em>.
* This handler is only active if <em>all</em> the selected nodes are
* specified attributes.
* <p>
* See <code>org.eclipse.jpt.jpa.ui/plugin.xml</code>.
*/
public class RemovePersistentAttributeFromXmlHandler
extends JpaStructureViewHandler
{
@Override
protected void execute_(Object[] items, Map<String, String> parameters, IWorkbenchWindow window) {
for (int i = 0; i < items.length; i++) {
OrmSpecifiedPersistentAttribute attribute = (OrmSpecifiedPersistentAttribute) items[i];
OrmPersistentAttribute newAttribute = attribute.removeFromXml();
if (newAttribute != null) {
// a little hacky... :-)
items[i] = newAttribute;
}
}
}
}