Merge remote-tracking branch 'origin/feature/v1.0.0' into feature/v1.0.0

This commit is contained in:
zhangyuanzhen
2020-01-09 15:11:12 +08:00
69 changed files with 1120 additions and 277 deletions

View File

@@ -18,6 +18,11 @@ public class MogoModule {
*/
private String mName;
/**
* 语音指令通过广播传递数据 action.
*/
private String mVoiceAction;
/**
* @param path 模块加载路径
* @param name 模块名称
@@ -32,15 +37,26 @@ public class MogoModule {
return mPath;
}
public void setPath( String path ) {
public MogoModule setPath( String path ) {
this.mPath = path;
return this;
}
public String getName() {
return mName;
}
public void setName( String name ) {
public MogoModule setName( String name ) {
this.mName = name;
return this;
}
public String getVoiceAction() {
return mVoiceAction;
}
public MogoModule setVoiceAction( String voiceAction ) {
this.mVoiceAction = voiceAction;
return this;
}
}