/*
* TclUtil.java
*
* Brazil project web application Framework,
* export version: 1.1
* Copyright (c) 2000 Sun Microsystems, Inc.
*
* Sun Public License Notice
*
* The contents of this file are subject to the Sun Public License Version
* 1.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is included as the file "license.terms",
* and also available at http://www.sun.com/
*
* The Original Code is from:
* Brazil project web application Framework release 1.1.
* The Initial Developer of the Original Code is: cstevens.
* Portions created by cstevens are Copyright (C) Sun Microsystems, Inc.
* All Rights Reserved.
*
* Contributor(s): cstevens.
*
* Version: 1.2
* Created by cstevens on 00/04/24
* Last modified by cstevens on 00/04/24 13:04:06
*/
package tcl.lang;
/**
* The <code>TclUtil</code> class "corrects" oversights in the
* <code>tcl.lang</code> package by making public certain methods that
* were not public.
*
* @author Colin Stevens (colin.stevens@sun.com)
* @version 1.2, 00/04/24
*/
public class TclUtil
{
private TclUtil() {}
public static void
setVar(Interp i, String name, String value, int flags)
throws TclException
{
i.setVar(name, value, flags);
}
public static void
setVar(Interp i, String name, TclObject value, int flags)
throws TclException
{
i.setVar(name, value, flags);
}
}
|