FileDocCategorySizeDatePackage
TimeValue.javaAPI DocExample527Thu Jun 28 16:14:16 BST 2001com.ora.jsp.sql.value

TimeValue.java

package com.ora.jsp.sql.value;

import java.sql.*;
import com.ora.jsp.sql.Value;

/**
 * This class represents a Time value used by the SQL tags.
 *
 * @author Hans Bergsten, Gefion software <hans@gefionsoftware.com>
 * @version 1.0
 */
public class TimeValue extends Value {
    private Time value;

    public TimeValue(Time value) {
        this.value = value;
    }

    public Time getTime() {
        return value;
    }

    public String getString() {
        return value.toString();
    }
}