Package com.sun.javatest
Class TestEnvironment.Element
- java.lang.Object
-
- com.sun.javatest.TestEnvironment.Element
-
- Enclosing class:
- TestEnvironment
public class TestEnvironment.Element extends java.lang.Object
A class representing an entry in a test environment.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDefinedInEnv()
Get the name of the environment that defines this entry.java.lang.String
getDefinedInFile()
Get the name of the file (or table) that defines this entry.java.lang.String
getKey()
Get the name of this entry.java.lang.String
getValue()
Get the (unresolved) value of this entry.
-
-
-
Method Detail
-
getKey
public java.lang.String getKey()
Get the name of this entry.- Returns:
- the name of this entry
-
getValue
public java.lang.String getValue()
Get the (unresolved) value of this entry.- Returns:
- the (unresolved) value of this entry
-
getDefinedInEnv
public java.lang.String getDefinedInEnv()
Get the name of the environment that defines this entry.- Returns:
- the name of the environment that defines this entry
-
getDefinedInFile
public java.lang.String getDefinedInFile()
Get the name of the file (or table) that defines this entry.- Returns:
- the name of the file (or table) that defines this entry
-
-