IBM Rational Functional Tester
Version 8.1.1000
IBM Rational Functional Tester Proxy SDK Reference

Project Version 2.3

com.rational.test.ft.domain
Class TestDomain

java.lang.Object   extended by com.rational.test.ft.domain.TestDomain
Direct Known Subclasses:
TestDomainImplementation, TestDomainJava

public abstract class TestDomain
extends java.lang.Object

Represents the object model - for example, HTML, Java, and Process. For each supported domain, there are one or more derived classes that are instances of TestDomainImplementation.

Since:
RFT1.0

Constructor Summary
protected TestDomain(java.lang.String name)
          Provides a name for the domain.
protected TestDomain(java.lang.String name, boolean isGraphical)
          Provides a name for the domain (required).
 
Method Summary
 boolean equals(java.lang.Object other)
          Compares two domains based on name.
 java.lang.String getName()
          Returns the name of the domain.
 boolean isGraphical()
          Determines whether this is a graphical domain.
 boolean isNamed(java.lang.String name)
          Compares a domain's name to a string.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TestDomain

protected TestDomain(java.lang.String name)
Provides a name for the domain. (This is required.) The name is important for use in object recognition. This constructor creates a graphical (GUI) domain.

Since:
RFT1.0

TestDomain

protected TestDomain(java.lang.String name,                      boolean isGraphical)
Provides a name for the domain (required). The name is important for use in object recognition. This constructor lets the caller specify whether the created domain is a graphical (GUI) domain.

Since:
RFT1.0
Method Detail

getName

public java.lang.String getName()
Returns the name of the domain.

Since:
RFT1.0

equals

public boolean equals(java.lang.Object other)
Compares two domains based on name.

Overrides:
equals in class java.lang.Object
Since:
RFT1.0

isNamed

public boolean isNamed(java.lang.String name)
Compares a domain's name to a string.

Since:
RFT1.0

isGraphical

public boolean isGraphical()
Determines whether this is a graphical domain.

Since:
RFT1.0