1 29 30 package nextapp.echo2.webcontainer.command; 31 32 import nextapp.echo2.app.Command; 33 34 40 public class BrowserOpenWindowCommand 41 implements Command { 42 43 private String uri; 44 private String features; 45 private String name; 46 private boolean replace; 47 48 56 public BrowserOpenWindowCommand(String uri, String name, String features) { 57 this(uri, name, features, false); 58 } 59 60 71 public BrowserOpenWindowCommand(String uri, String name, String features, boolean replace) { 72 super(); 73 this.uri = uri; 74 this.name = name; 75 this.features = features; 76 } 77 78 84 public String getFeatures() { 85 return features; 86 } 87 88 93 public String getName() { 94 return name; 95 } 96 97 102 public String getUri() { 103 return uri; 104 } 105 106 111 public boolean isReplace() { 112 return replace; 113 } 114 } 115 | Popular Tags |