John.Ying-应志浩
2 years ago
1 changed files with 25 additions and 0 deletions
@ -0,0 +1,25 @@ |
|||||||
|
package com.fr.design.env.processor; |
||||||
|
|
||||||
|
|
||||||
|
import com.fr.design.env.RemoteDesignerWorkspaceInfo; |
||||||
|
import com.fr.stable.fun.mark.API; |
||||||
|
|
||||||
|
/** |
||||||
|
* 远程设计自定义用户名接口实现抽象类 |
||||||
|
* |
||||||
|
* @author John.Ying |
||||||
|
* @version 11.0 |
||||||
|
* Created by John.Ying on 2023/5/17 |
||||||
|
*/ |
||||||
|
@API(level = RemoteDesignerWorkspaceInfo.RemoteDesignerWorkspaceInfoProcessor.CURRENT_LEVEL) |
||||||
|
public abstract class AbstractRemoteDesignerWorkspaceInfoProcessor implements RemoteDesignerWorkspaceInfo.RemoteDesignerWorkspaceInfoProcessor { |
||||||
|
@Override |
||||||
|
public int currentAPILevel() { |
||||||
|
return CURRENT_LEVEL; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public int layerIndex() { |
||||||
|
return DEFAULT_LAYER_INDEX; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue