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.
24 lines
635 B
24 lines
635 B
package com.fr.design.fun.impl; |
|
|
|
|
|
import com.fr.design.fun.DefaultValueAdjustProvider; |
|
import com.fr.stable.fun.assist.Selector; |
|
import com.fr.stable.fun.impl.AbstractProvider; |
|
import com.fr.stable.fun.mark.API; |
|
|
|
@API(level = DefaultValueAdjustProvider.CURRENT_LEVEL) |
|
public abstract class AbstractDefaultValueAdjustProvider extends AbstractProvider implements DefaultValueAdjustProvider { |
|
|
|
@Override |
|
public int currentAPILevel() { |
|
return CURRENT_LEVEL; |
|
} |
|
|
|
public String mark4Provider() { |
|
return this.getClass().getName(); |
|
} |
|
|
|
public Selector selector() { |
|
return Selector.ALWAYS; |
|
} |
|
}
|
|
|