Exemplo n.º 1
0
 public void setPlayer(String path) {
   setAttribute("Player", "path", path);
 }
Exemplo n.º 2
0
 public void setError(String code, String url) {
   setAttribute("Error", "code", code);
   setAttribute("Error", "url", url);
 }
Exemplo n.º 3
0
 public void setRoboJockEnabled(boolean enabled) {
   setAttribute("RoboJock", "enabled", enabled ? "yes" : "no");
 }
Exemplo n.º 4
0
 public void setPort(int port) {
   setAttribute(userElementName, "port", Integer.toString(port));
 }
Exemplo n.º 5
0
 public void setHost(String host) {
   setAttribute(userElementName, "host", host);
 }
Exemplo n.º 6
0
 public void setPassword(String password) {
   setAttribute(userElementName, "password", password);
 }
Exemplo n.º 7
0
 public void setUserName(String name) {
   setAttribute(userElementName, "name", name);
 }