Home | History | Annotate | Download | only in smil

Lines Matching refs:restart

281         String restart = mSmilElement.getAttribute("restart");
282 if (restart.equalsIgnoreCase("never")) {
284 } else if (restart.equalsIgnoreCase("whenNotActive")) {
339 public void setRestart(short restart) throws DOMException {
340 if (restart == RESTART_NEVER) {
341 mSmilElement.setAttribute("restart", "never");
342 } else if (restart == RESTART_WHEN_NOT_ACTIVE) {
343 mSmilElement.setAttribute("restart", "whenNotActive");
345 mSmilElement.setAttribute("restart", "always");