|
|
@ -3,6 +3,7 @@ package com.fr.design.fun.impl; |
|
|
|
import com.fr.base.Style; |
|
|
|
import com.fr.base.Style; |
|
|
|
import com.fr.design.fun.StyleUIConfigProvider; |
|
|
|
import com.fr.design.fun.StyleUIConfigProvider; |
|
|
|
import com.fr.stable.StringUtils; |
|
|
|
import com.fr.stable.StringUtils; |
|
|
|
|
|
|
|
import com.fr.stable.fun.impl.AbstractProvider; |
|
|
|
import com.fr.stable.fun.mark.API; |
|
|
|
import com.fr.stable.fun.mark.API; |
|
|
|
|
|
|
|
|
|
|
|
import javax.swing.JComponent; |
|
|
|
import javax.swing.JComponent; |
|
|
@ -12,17 +13,12 @@ import javax.swing.event.ChangeListener; |
|
|
|
* Created by kerry on 2019-11-11 |
|
|
|
* Created by kerry on 2019-11-11 |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@API(level = StyleUIConfigProvider.CURRENT_LEVEL) |
|
|
|
@API(level = StyleUIConfigProvider.CURRENT_LEVEL) |
|
|
|
public class AbstractStyleUIConfigProvider implements StyleUIConfigProvider { |
|
|
|
public class AbstractStyleUIConfigProvider extends AbstractProvider implements StyleUIConfigProvider { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public int currentAPILevel() { |
|
|
|
public int currentAPILevel() { |
|
|
|
return CURRENT_LEVEL; |
|
|
|
return CURRENT_LEVEL; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
public String mark4Provider() { |
|
|
|
|
|
|
|
return getClass().getName(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public String configName() { |
|
|
|
public String configName() { |
|
|
|
return StringUtils.EMPTY; |
|
|
|
return StringUtils.EMPTY; |
|
|
|