Uses of Class
com.sun.interview.Interview
-
Packages that use Interview Package Description com.sun.interview This package provides a means for creating a set of questions to be asked by a "wizard".com.sun.javatest This package provides facilities for reading, executing and monitoring tests.com.sun.javatest.interview This package provides a configuration interview for legacy test suites which do not provide their own interview, and also provides sub-interviews which may be used to build a custom interview with standard questions for the standard sections. -
-
Uses of Interview in com.sun.interview
Subclasses of Interview in com.sun.interview Modifier and Type Class Description class
InterviewSet
InterviewSet is an interview that is also a container for an ordered set of child interviews.static class
ListQuestion.Body
A special subtype of Interview to use for the questions in the body of a loop.Fields in com.sun.interview declared as Interview Modifier and Type Field Description protected Interview
Question. interview
The interview to which this question belongs.Methods in com.sun.interview that return Interview Modifier and Type Method Description Interview
Interview. getInterview(java.lang.String tag)
Get a sub-interview with a given tag name.Interview
Question. getInterview()
Return the interview of which this question is a part.Interview
Interview. getParent()
Get the parent interview for which this is a child.Interview
Interview. getRoot()
Get the root interview object for an interview series.Methods in com.sun.interview with parameters of type Interview Modifier and Type Method Description protected void
InterviewSet. addDependency(Interview child, Interview dependency)
Specify a dependency for a child interview.protected Question
Interview. callInterview(Interview i, Question q)
Return a special type of question used to indicate that a sub-interview interview should be called before proceeding to the next question in this interview.static com.sun.javatest.tool.jthelp.HelpSet
Help. getHelpSet(Interview i)
Get the help set used to locate the "more info" for each question.boolean
Interview. pathContains(Interview i)
Check if the path contains questions from a specific interview.protected void
InterviewSet. removeDependency(Interview child, Interview dependency)
Remove any dependency between two interviews, and hence any ordering constraint between these two interviews.java.lang.Object
HelpSetFactory.Default. updateHelpSetObject(Interview interview, java.lang.Object object)
java.lang.Object
HelpSetFactory. updateHelpSetObject(Interview interview, java.lang.Object object)
Updates a HelpSet instance associated with the given interview.java.lang.Object
JavaHelpFactory. updateHelpSetObject(Interview interview, java.lang.Object object)
Constructors in com.sun.interview with parameters of type Interview Constructor Description ChoiceArrayQuestion(Interview interview, java.lang.String tag)
Create a question with a nominated tag.ChoiceArrayQuestion(Interview interview, java.lang.String tag, java.lang.String[] choices)
Create a question with a nominated tag.ChoiceQuestion(Interview interview, java.lang.String tag)
Create a question with a nominated tag.ChoiceQuestion(Interview interview, java.lang.String tag, java.lang.String[] choices)
Create a question with a nominated tag.CompositeQuestion(Interview interview)
Create a question with no identifying tag.CompositeQuestion(Interview interview, java.lang.String baseTag)
Create a question with a nominated tag.ErrorQuestion(Interview interview, java.lang.String tag)
Create a question with a nominated tag.FileListQuestion(Interview interview, java.lang.String tag)
Create a question with a nominated tag.FileQuestion(Interview interview, java.lang.String tag)
Create a question with a nominated tag.FinalQuestion(Interview interview)
Create an anonymous question that can be used to mark the end of a series of questions.FinalQuestion(Interview interview, java.lang.String tag)
Create a question that can be used to mark the end of a series of questions.FloatQuestion(Interview interview, java.lang.String tag)
Create a question with a nominated tag.FloatQuestion(Interview interview, java.lang.String tag, float min, float max, float resolution)
Create a question with a nominated tag.InetAddressQuestion(Interview interview, java.lang.String tag)
Create a question with a nominated tag.InetAddressQuestion(Interview interview, java.lang.String tag, int type)
Create a question with a nominated tag.Interview(Interview parent, java.lang.String baseTag)
Create an interview to be used as part of another interview.InterviewSet(Interview parent, java.lang.String baseTag)
Create an interview set.IntQuestion(Interview interview, java.lang.String tag)
Create a question with a nominated tag.IntQuestion(Interview interview, java.lang.String tag, int min, int max)
Create a question with a nominated tag.ListQuestion(Interview interview, java.lang.String tag)
Create a question with a nominated tag.NullQuestion(Interview interview)
Create a null question.NullQuestion(Interview interview, java.lang.String tag)
Create a question with a nominated tag.NullQuestion(Interview interview, java.lang.String tag, int level)
Create a question with a nominated tag.PropertiesQuestion(Interview interview, java.lang.String tag)
Create a question with a nominated tag.PropertiesQuestion(Interview interview, java.lang.String tag, java.lang.String[] keys)
Create a question with a nominated tag.PropertiesQuestion(Interview interview, java.lang.String tag, java.util.Properties props)
Create a question with a nominated tag.Question(Interview interview)
Create a question with no identifying tag.Question(Interview interview, java.lang.String baseTag)
Create a question with a nominated tag.StringListQuestion(Interview interview, java.lang.String tag)
Create a question with a nominated tag.StringQuestion(Interview interview, java.lang.String tag)
Create a question with a nominated tag.TreeQuestion(Interview interview, java.lang.String tag, TreeQuestion.Model model)
Create a tree question with a nominated tag and tree model.WizEdit(Interview interview)
Create an editor for the questions in an interview.WizPrint(Interview interview)
Create an object for printing the current set of questions from an interview.WizPrint(Interview interview, Question[] questions)
Create an object for printing a set of questions from an interview.YesNoQuestion(Interview interview, java.lang.String tag)
Create a question with a nominated tag.YesNoQuestion(Interview interview, java.lang.String tag, java.lang.String defaultValue)
Create a question with a nominated tag. -
Uses of Interview in com.sun.javatest
Subclasses of Interview in com.sun.javatest Modifier and Type Class Description class
InterviewParameters
Configuration parameters provided via an interview. -
Uses of Interview in com.sun.javatest.interview
Subclasses of Interview in com.sun.javatest.interview Modifier and Type Class Description class
BasicInterviewParameters
A basic implementation of InterviewParameters that uses standard interviews for all the various interview sections, except the environment section, which remains to be implemented by subtypes.class
ConcurrencyInterview
This interview collects the concurrency parameter.class
DefaultInterviewParameters
Deprecated.Use BasicInterviewParametersclass
EnvironmentInterview
This interview collects the environment parameter, by means of environment (jte) files and an environment name.class
ExcludeListInterview
This interview collects the "exclude list" test filter parameters.class
KeywordsInterview
This interview collects the keyword parameters.class
KnownFailuresListInterview
This interview collects the "kfl" test filter parameters.class
LegacyParameters
A configuration interview for legacy test suites that use environment (.jte) files to define the environment used to run tests.class
PriorStatusInterview
This interview collects the "prior status" test filter parameters.class
SimpleInterviewParameters
A simple interview that can be used for simple test suites.class
TestsInterview
This interview collects the "initial files" parameter.class
TimeoutFactorInterview
This interview collects the timeout factor parameter.Methods in com.sun.javatest.interview with parameters of type Interview Modifier and Type Method Description protected TestsInterview.TreeOrFileChoiceQuestion
TestsInterview. createTreeOrFileChoiceQuestion(Interview interview, java.lang.String tag)
creation of {#link TreeOrFileChoiceQuestion} is extracted into separate class to enable 'hooks' and return {#link TreeOrFileChoiceQuestion} sub classConstructors in com.sun.javatest.interview with parameters of type Interview Constructor Description ConcurrencyInterview(Interview parent)
Create an interview.ConcurrencyInterview(Interview parent, int max)
Create an interview.TreeOrFileChoiceQuestion(Interview interview, java.lang.String tag)
-