vito
9 years ago
8 changed files with 180 additions and 63 deletions
@ -0,0 +1,30 @@
|
||||
package com.fr.design.fun; |
||||
|
||||
import com.fr.design.dialog.BasicPane; |
||||
|
||||
/** |
||||
* Created by vito on 16/5/5. |
||||
*/ |
||||
public abstract class AbstractExportPane extends BasicPane { |
||||
|
||||
public abstract void populate(Object t); |
||||
|
||||
public abstract Object update(); |
||||
|
||||
// public <T> void populate(Object object,Class<? extends T> clazz){
|
||||
// if(object.getClass().isAssignableFrom(clazz)){
|
||||
// this.populate(clazz.cast(object));
|
||||
// }
|
||||
// }
|
||||
|
||||
public <T> T update(Class<? extends T> clazz){ |
||||
Object object = this.update(); |
||||
if(object == null){ |
||||
return null; |
||||
} |
||||
if(object.getClass().isAssignableFrom(clazz)){ |
||||
return clazz.cast(object); |
||||
} |
||||
return null; |
||||
} |
||||
} |
@ -0,0 +1,22 @@
|
||||
package com.fr.design.fun; |
||||
|
||||
import com.fr.stable.fun.Level; |
||||
|
||||
import javax.swing.*; |
||||
|
||||
/** |
||||
* Created by vito on 16/5/5. |
||||
*/ |
||||
public interface ExportAttrTabProvider extends Level{ |
||||
String XML_TAG = "ExportAttrTabProvider"; |
||||
|
||||
int CURRENT_LEVEL = 1; |
||||
|
||||
JComponent toSwingComponent(); |
||||
|
||||
AbstractExportPane toExportPane(); |
||||
|
||||
String title(); |
||||
|
||||
String tag(); |
||||
} |
@ -0,0 +1,19 @@
|
||||
package com.fr.design.fun.impl; |
||||
|
||||
import com.fr.design.fun.ExportAttrTabProvider; |
||||
import com.fr.stable.fun.impl.AbstractProvider; |
||||
|
||||
/** |
||||
* Created by vito on 16/5/5. |
||||
*/ |
||||
public abstract class AbstractExportAttrTabProvider extends AbstractProvider implements ExportAttrTabProvider { |
||||
@Override |
||||
public int currentAPILevel() { |
||||
return CURRENT_LEVEL; |
||||
} |
||||
|
||||
@Override |
||||
public String mark4Provider() { |
||||
return this.getClass().getName(); |
||||
} |
||||
} |
Loading…
Reference in new issue