Methods Summary |
---|
public java.lang.String | GetFirstString()Purpose: returns the first string of the pair return m_strOne;
|
public java.lang.String | GetSecondString()Purpose: returns the second string of the pair return m_strTwo;
|
public void | SetFirstString(java.lang.String strOne)Purpose: Sets the value for the first String m_strOne = strOne;
|
public void | SetSecondString(java.lang.String strTwo)Purpose: Sets the value for the second String m_strTwo = strTwo;
|
public boolean | equal(StringPair stPair)Purpose: compares two StringPairs
return (m_strOne == stPair.m_strOne && m_strTwo == stPair.m_strTwo);
|