You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
585 B
20 lines
585 B
package com.connor.dfl.plm.dfl044;
|
|
|
|
import org.eclipse.core.commands.AbstractHandler;
|
|
import org.eclipse.core.commands.ExecutionEvent;
|
|
import org.eclipse.core.commands.ExecutionException;
|
|
|
|
import com.teamcenter.rac.aif.AbstractAIFUIApplication;
|
|
import com.teamcenter.rac.aifrcp.AIFUtility;
|
|
|
|
public class Dfl044Handler extends AbstractHandler {
|
|
|
|
@Override
|
|
public Object execute(ExecutionEvent arg0) throws ExecutionException {
|
|
AbstractAIFUIApplication app = AIFUtility.getCurrentApplication();
|
|
new Thread(new Dfl044Action(app,"")).start();
|
|
return null;
|
|
}
|
|
|
|
}
|