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.

25 lines
527 B

package com.connor.dfl.plm.dfl044;
import com.teamcenter.rac.aif.AbstractAIFUIApplication;
import com.teamcenter.rac.aif.common.actions.AbstractAIFAction;
public class Dfl044Action extends AbstractAIFAction {
private AbstractAIFUIApplication app;
public Dfl044Action(AbstractAIFUIApplication app, String string) {
super(app,string);
this.app=app;
}
@Override
public void run() {
try {
new Dfl044Command(app).executeModal();
} catch (Exception e) {
e.printStackTrace();
}
}
}