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 classInterviewSetInterviewSet is an interview that is also a container for an ordered set of child interviews.static classListQuestion.BodyA 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 InterviewQuestion. interviewThe interview to which this question belongs.Methods in com.sun.interview that return Interview Modifier and Type Method Description InterviewInterview. getInterview(java.lang.String tag)Get a sub-interview with a given tag name.InterviewQuestion. getInterview()Return the interview of which this question is a part.InterviewInterview. getParent()Get the parent interview for which this is a child.InterviewInterview. 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 voidInterviewSet. addDependency(Interview child, Interview dependency)Specify a dependency for a child interview.protected QuestionInterview. 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.HelpSetHelp. getHelpSet(Interview i)Get the help set used to locate the "more info" for each question.booleanInterview. pathContains(Interview i)Check if the path contains questions from a specific interview.protected voidInterviewSet. removeDependency(Interview child, Interview dependency)Remove any dependency between two interviews, and hence any ordering constraint between these two interviews.java.lang.ObjectHelpSetFactory.Default. updateHelpSetObject(Interview interview, java.lang.Object object)java.lang.ObjectHelpSetFactory. updateHelpSetObject(Interview interview, java.lang.Object object)Updates a HelpSet instance associated with the given interview.java.lang.ObjectJavaHelpFactory. 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 classInterviewParametersConfiguration 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 classBasicInterviewParametersA 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.classConcurrencyInterviewThis interview collects the concurrency parameter.classDefaultInterviewParametersDeprecated.Use BasicInterviewParametersclassEnvironmentInterviewThis interview collects the environment parameter, by means of environment (jte) files and an environment name.classExcludeListInterviewThis interview collects the "exclude list" test filter parameters.classKeywordsInterviewThis interview collects the keyword parameters.classKnownFailuresListInterviewThis interview collects the "kfl" test filter parameters.classLegacyParametersA configuration interview for legacy test suites that use environment (.jte) files to define the environment used to run tests.classPriorStatusInterviewThis interview collects the "prior status" test filter parameters.classSimpleInterviewParametersA simple interview that can be used for simple test suites.classTestsInterviewThis interview collects the "initial files" parameter.classTimeoutFactorInterviewThis interview collects the timeout factor parameter.Methods in com.sun.javatest.interview with parameters of type Interview Modifier and Type Method Description protected TestsInterview.TreeOrFileChoiceQuestionTestsInterview. 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)
-