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.
16 lines
336 B
16 lines
336 B
9 years ago
|
package com.fr.design.actions;
|
||
|
|
||
|
import com.fr.design.mainframe.JTemplate;
|
||
|
|
||
|
public abstract class JTemplateAction<T extends JTemplate<?, ?>> extends UpdateAction implements TemplateComponentActionInterface<T> {
|
||
|
private T t;
|
||
|
public JTemplateAction(T t) {
|
||
|
this.t = t;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public T getEditingComponent() {
|
||
|
return t;
|
||
|
}
|
||
|
|
||
|
}
|