形态扩展接口demo
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.
 
 

32 lines
729 B

package com.tptj.demo.hg.present.kind.provider;
import com.fr.base.present.Present;
import com.fr.design.beans.FurtherBasicBeanPane;
import com.fr.design.fun.impl.AbstractPresentKindProvider;
/**
* @author 秃破天际
* @version 10.0
* Created by 秃破天际 on 2021-04-29
**/
public class Demo extends AbstractPresentKindProvider {
@Override
public FurtherBasicBeanPane<? extends Present> appearanceForPresent() {
return new DemoPane();
}
@Override
public String title() {
return "Demo Present";
}
@Override
public Class<? extends Present> kindOfPresent() {
return DemoPresent.class;
}
@Override
public char mnemonic() {
return 'D';
}
}