All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ziclix.python.sql.WarningEvent Maven / Gradle / Ivy

Go to download

Jython is an implementation of the high-level, dynamic, object-oriented language Python written in 100% Pure Java, and seamlessly integrated with the Java platform. It thus allows you to run Python on any Java platform.

The newest version!
/*
 * Jython Database Specification API 2.0
 *
 *
 * Copyright (c) 2001 brian zimmer 
 *
 */
package com.ziclix.python.sql;

import java.sql.SQLWarning;
import java.util.EventObject;

/**
 * An event signalling the a SQLWarning was encountered
 * while building results from a ResultSet.
 */
public class WarningEvent extends EventObject {

    private SQLWarning warning;

    public WarningEvent(Object source, SQLWarning warning) {

        super(source);

        this.warning = warning;
    }

    public SQLWarning getWarning() {
        return this.warning;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy