blob: feb942d4e1a5836c28381e3d3765f576a18e3634 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* 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:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.framework.ui.skynet.results.example;
import org.eclipse.osee.framework.ui.skynet.FrameworkImage;
import org.eclipse.osee.framework.ui.skynet.results.XResultData;
import org.eclipse.osee.framework.ui.skynet.widgets.xnavigate.XNavigateItem;
import org.eclipse.osee.framework.ui.skynet.widgets.xnavigate.XNavigateItemAction;
import org.eclipse.osee.framework.ui.skynet.widgets.xnavigate.XNavigateComposite.TableLoadOption;
/**
* @author Donald G. Dunne
*/
public class XResultDataExample extends XNavigateItemAction {
public static String TITLE = "XResultData Example";
/**
* @param parent
*/
public XResultDataExample(XNavigateItem parent) {
super(parent, TITLE, FrameworkImage.ADMIN);
}
/* (non-Javadoc)
* @see org.eclipse.osee.framework.ui.skynet.widgets.xnavigate.XNavigateItemAction#run(org.eclipse.osee.framework.ui.skynet.widgets.xnavigate.XNavigateComposite.TableLoadOption[])
*/
@Override
public void run(TableLoadOption... tableLoadOptions) throws Exception {
XResultData.runExample();
}
}