| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||||
| ParameterEnvironment |
|
| 1.0;1 |
| 1 | package com.smartwerkz.jupload.classic.config.params; |
|
| 2 | ||
| 3 | import java.net.URL; |
|
| 4 | ||
| 5 | public interface ParameterEnvironment { |
|
| 6 | /** |
|
| 7 | * The location of this environment's origin in URL form. |
|
| 8 | */ |
|
| 9 | public abstract URL getCodeBase(); |
|
| 10 | ||
| 11 | /** |
|
| 12 | * Returns customized parameters for this environment. |
|
| 13 | */ |
|
| 14 | public abstract String getParameter(String strKey); |
|
| 15 | ||
| 16 | /** |
|
| 17 | * Returns the default parameters for this environment. |
|
| 18 | * One parameter must have the form: key, stringValue, type[, elementType[, elementType2]]. |
|
| 19 | */ |
|
| 20 | public abstract String[][] getDefaultParams(); |
|
| 21 | } |