1 38 package com.gargoylesoftware.htmlunit; 39 40 46 public final class ScriptResult { 47 private final Object javaScriptResult_; 48 private final Page newPage_; 49 50 57 public ScriptResult( final Object javaScriptResult, final Page newPage ) { 58 javaScriptResult_ = javaScriptResult; 59 newPage_ = newPage; 60 } 61 62 63 67 public Object getJavaScriptResult() { 68 return javaScriptResult_; 69 } 70 71 72 76 public Page getNewPage() { 77 return newPage_; 78 } 79 } 80 | Popular Tags |