Uses of Class
com.croftsoft.core.lang.Pair

Packages that use Pair
com.croftsoft.core.gui Graphical user interface (GUI) classes complementary to java.awt and javax.swing. 
com.croftsoft.core.gui.multi An applet that contains multiple applets (demo). 
com.croftsoft.core.lang Package java.lang support and basic classes. 
com.croftsoft.core.net.news Network News Transfer Protocol (NNTP). 
com.croftsoft.core.sql Relational database manipulation via Structured Query Language (SQL). 
 

Uses of Pair in com.croftsoft.core.gui
 

Methods in com.croftsoft.core.gui with parameters of type Pair
 void PairsPanel.setText(Pair pair)
           
 void LabeledFieldsPanel2.setText(Pair pair)
           
 void PairsPanel.setText(Pair[] nameValuePairs)
           
 void LabeledFieldsPanel2.setText(Pair[] pairs)
           
 

Constructors in com.croftsoft.core.gui with parameters of type Pair
LabeledFieldsPanel2(Pair[] pairs, Color panelBackgroundColor, Color textFieldBackgroundColor)
           
PairsPanel(Pair[] nameValuePairs, ChangeListener changeListener)
           
PairsPanel(Pair[] nameValuePairs, String helpText, ChangeListener changeListener, boolean trimWhiteSpace, Color panelBackgroundColor, Color textFieldBackgroundColor)
           
 

Uses of Pair in com.croftsoft.core.gui.multi
 

Methods in com.croftsoft.core.gui.multi with parameters of type Pair
static void MultiApplet.launch(String appletInfo, Pair[] appletPairs, String newsName, String newsHTML, String newsPage, String frameTitle, String frameIconFilename, ClassLoader frameIconClassLoader, Dimension frameSize, String shutdownConfirmationPrompt)
           
 

Constructors in com.croftsoft.core.gui.multi with parameters of type Pair
MultiApplet(String appletInfo, Pair[] appletPairs, String newsName, String newsHTML, String newsPage)
           
 

Uses of Pair in com.croftsoft.core.lang
 

Methods in com.croftsoft.core.lang that return Pair
static Pair[] Pair.toPairs(String[] names)
          Converts an array of names to an array of Pairs with null values.
 

Uses of Pair in com.croftsoft.core.net.news
 

Methods in com.croftsoft.core.net.news that return Pair
static Pair UsenetMessage.parseHeaderLine(String headerLine)
           
 

Uses of Pair in com.croftsoft.core.sql
 

Methods in com.croftsoft.core.sql with parameters of type Pair
static int SqlLib.count(Connection connection, String tableName, Pair wherePair)
          Counts the rows in a table that meet the WHERE condition.
static int SqlLib.count(Connection connection, String tableName, Pair[] wherePairs)
          Counts the rows in a table that meet the WHERE condition.
static String SqlLib.createCountSql(String tableName, Pair wherePair)
          Creates an SQL SELECT COUNT(*) statement.
static String SqlLib.createCountSql(String tableName, Pair[] wherePairs)
          Creates an SQL SELECT COUNT(*) statement.
static String SqlLib.createDeleteSql(String tableName, Pair[] wherePairs)
          Creates an SQL DELETE statement.
static String SqlLib.createSelectSql(String[] selectFieldNames, String tableName, Pair wherePair)
          Creates an SQL SELECT statement.
static String SqlLib.createSelectSql(String[] selectFieldNames, String tableName, Pair[] wherePairs)
          Creates an SQL SELECT statement.
static String SqlLib.createSelectSql(String[] selectFieldNames, String tableName, Pair[] wherePairs, String orderBy)
          Creates an SQL SELECT statement.
static String SqlLib.createUpdateSql(String tableName, Pair[] setPairs, Pair[] wherePairs)
          Creates an SQL UPDATE statement.
static String SqlLib.createUpdateSql(String tableName, Pair[] setPairs, Pair[] wherePairs)
          Creates an SQL UPDATE statement.
static int SqlLib.delete(Connection connection, String tableName, Pair[] wherePairs)
          Removes rows from a table.
static BigDecimal SqlLib.max(Connection connection, String columnName, String tableName, Pair wherePair)
          Returns the maximum column value.
static String[] SqlLib.select(Connection connection, String[] selectFieldNames, String tableName, Pair wherePair)
          Selects the first row that meets the where condition.
static String[] SqlLib.select(Connection connection, String[] selectFieldNames, String tableName, Pair[] wherePairs)
          Selects the first row that meets the where condition.
static String[] SqlLib.select(Connection connection, String[] selectFieldNames, String tableName, Pair[] wherePairs, String orderBy, int maxRows)
          Returns the results of a SELECT query as a String array.
static String SqlLib.select(Connection connection, String selectFieldName, String tableName, Pair wherePair)
          Retrieves the String value at a given row and column.
static String SqlLib.select(Connection connection, String selectFieldName, String tableName, Pair[] wherePairs)
          Retrieves the String value at a given row and column.
static int SqlLib.update(Connection connection, String tableName, Pair[] setPairs, Pair wherePair)
          Updates rows in a table.
static int SqlLib.update(Connection connection, String tableName, Pair[] setPairs, Pair wherePair)
          Updates rows in a table.
static int SqlLib.update(Connection connection, String tableName, Pair[] setPairs, Pair[] wherePairs)
          Updates rows in a table.
static int SqlLib.update(Connection connection, String tableName, Pair[] setPairs, Pair[] wherePairs)
          Updates rows in a table.
 


CroftSoft Javadoc

CroftSoft Core Javadoc (2008-09-28 20:58:02)