|
|||||||||||||||||||
| 30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| DirectWindowOpenLink.java | - | 0% | 0% | 0% |
|
||||||||||||||
| 1 |
/*
|
|
| 2 |
* Joey and its relative products are published under the terms
|
|
| 3 |
* of the Apache Software License.
|
|
| 4 |
*/
|
|
| 5 |
/*
|
|
| 6 |
* Created on 2004/01/03
|
|
| 7 |
*/
|
|
| 8 |
package org.asyrinx.brownie.tapestry.components.link;
|
|
| 9 |
|
|
| 10 |
import org.apache.tapestry.link.DirectLink;
|
|
| 11 |
|
|
| 12 |
/**
|
|
| 13 |
* @author akima
|
|
| 14 |
*/
|
|
| 15 |
public abstract class DirectWindowOpenLink extends DirectLink implements |
|
| 16 |
IWindowOpenOption {
|
|
| 17 |
|
|
| 18 | 0 |
protected void finishLoad() { |
| 19 | 0 |
setRenderer(WindowOpenLinkRenderer.SHARED_INSTANCE); |
| 20 |
} |
|
| 21 |
|
|
| 22 |
private String windowWindowToolbar = "no"; |
|
| 23 |
|
|
| 24 |
private String windowLocation = "no"; |
|
| 25 |
|
|
| 26 |
private String windowDirectories = "no"; |
|
| 27 |
|
|
| 28 |
private String windowMenubar = "no"; |
|
| 29 |
|
|
| 30 |
private String windowResizable = "yes"; |
|
| 31 |
|
|
| 32 |
private String windowScrollbars = "yes"; |
|
| 33 |
|
|
| 34 |
private String windowStatus = "yes"; |
|
| 35 |
|
|
| 36 |
/**
|
|
| 37 |
* @return
|
|
| 38 |
*/
|
|
| 39 | 0 |
public String getWindowDirectories() {
|
| 40 | 0 |
return windowDirectories;
|
| 41 |
} |
|
| 42 |
|
|
| 43 |
/**
|
|
| 44 |
* @return
|
|
| 45 |
*/
|
|
| 46 | 0 |
public String getWindowLocation() {
|
| 47 | 0 |
return windowLocation;
|
| 48 |
} |
|
| 49 |
|
|
| 50 |
/**
|
|
| 51 |
* @return
|
|
| 52 |
*/
|
|
| 53 | 0 |
public String getWindowMenubar() {
|
| 54 | 0 |
return windowMenubar;
|
| 55 |
} |
|
| 56 |
|
|
| 57 |
/**
|
|
| 58 |
* @return
|
|
| 59 |
*/
|
|
| 60 | 0 |
public String getWindowResizable() {
|
| 61 | 0 |
return windowResizable;
|
| 62 |
} |
|
| 63 |
|
|
| 64 |
/**
|
|
| 65 |
* @return
|
|
| 66 |
*/
|
|
| 67 | 0 |
public String getWindowScrollbars() {
|
| 68 | 0 |
return windowScrollbars;
|
| 69 |
} |
|
| 70 |
|
|
| 71 |
/**
|
|
| 72 |
* @return
|
|
| 73 |
*/
|
|
| 74 | 0 |
public String getWindowStatus() {
|
| 75 | 0 |
return windowStatus;
|
| 76 |
} |
|
| 77 |
|
|
| 78 |
/**
|
|
| 79 |
* @return
|
|
| 80 |
*/
|
|
| 81 | 0 |
public String getWindowWindowToolbar() {
|
| 82 | 0 |
return windowWindowToolbar;
|
| 83 |
} |
|
| 84 |
|
|
| 85 |
/**
|
|
| 86 |
* @param string
|
|
| 87 |
*/
|
|
| 88 | 0 |
public void setWindowDirectories(String string) { |
| 89 | 0 |
windowDirectories = string; |
| 90 |
} |
|
| 91 |
|
|
| 92 |
/**
|
|
| 93 |
* @param string
|
|
| 94 |
*/
|
|
| 95 | 0 |
public void setWindowLocation(String string) { |
| 96 | 0 |
windowLocation = string; |
| 97 |
} |
|
| 98 |
|
|
| 99 |
/**
|
|
| 100 |
* @param string
|
|
| 101 |
*/
|
|
| 102 | 0 |
public void setWindowMenubar(String string) { |
| 103 | 0 |
windowMenubar = string; |
| 104 |
} |
|
| 105 |
|
|
| 106 |
/**
|
|
| 107 |
* @param string
|
|
| 108 |
*/
|
|
| 109 | 0 |
public void setWindowResizable(String string) { |
| 110 | 0 |
windowResizable = string; |
| 111 |
} |
|
| 112 |
|
|
| 113 |
/**
|
|
| 114 |
* @param string
|
|
| 115 |
*/
|
|
| 116 | 0 |
public void setWindowScrollbars(String string) { |
| 117 | 0 |
windowScrollbars = string; |
| 118 |
} |
|
| 119 |
|
|
| 120 |
/**
|
|
| 121 |
* @param string
|
|
| 122 |
*/
|
|
| 123 | 0 |
public void setWindowStatus(String string) { |
| 124 | 0 |
windowStatus = string; |
| 125 |
} |
|
| 126 |
|
|
| 127 |
/**
|
|
| 128 |
* @param string
|
|
| 129 |
*/
|
|
| 130 | 0 |
public void setWindowWindowToolbar(String string) { |
| 131 | 0 |
windowWindowToolbar = string; |
| 132 |
} |
|
| 133 |
|
|
| 134 |
} |
|
||||||||||