1 22 package org.jboss.console.manager.interfaces.impl; 23 24 import org.jboss.console.manager.interfaces.TreeAction; 25 26 41 42 public class HttpLinkTreeAction 43 implements TreeAction 44 { 45 46 48 50 protected String target = null; 51 protected String frame = null; 52 53 55 57 public HttpLinkTreeAction () {} 58 public HttpLinkTreeAction (String target) 59 { 60 this.target = target; 61 } 62 63 public HttpLinkTreeAction (String target, String frame) 64 { 65 this.target = target; 66 this.frame = frame; 67 } 68 69 71 public String getTarget () 72 { 73 return this.target; 74 } 75 76 public String getFrame () 77 { 78 return this.frame; 79 } 80 81 83 85 87 89 91 93 } 94 | Popular Tags |