What Is jxl.jar 2.6.12

What is jxl.jar 2.6.12?

✍: fyicenter.com

jxl.jar 2.6.12 is the JAR file for Java Excel API 2.6.12, which is a Java library for reading, writing and modifying Microsoft Excel spreadsheet files.

JAR File Size and Download Location:

JAR name: jxl-2.6.12.jar
Target JDK version: 1.6
Dependency: None

File name: jxl.jar
File size: 725735 bytes
Release date: 24-Oct-2009
Download: Java Excel API Website.

Here are Java Source Code files for jxl-2.6.12.jar:

jxl/write/Font.java

/*********************************************************************
*
*      Copyright (C) 2002 Andrew Khan
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
***************************************************************************/

package jxl.write;

import jxl.format.Colour;
import jxl.format.ScriptStyle;
import jxl.format.UnderlineStyle;

/**
 * A class which is instantiated when the user application wishes to specify
 * the font for a particular cell
 *
 * @deprecated Renamed to writable font
 */
public class Font extends WritableFont
{
  /**
   * Objects created with this font name will be rendered within Excel as ARIAL
   * fonts
   * @deprecated
   */
  public static final FontName ARIAL = WritableFont.ARIAL;
  /**
   * Objects created with this font name will be rendered within Excel as TIMES
   * fonts
   * @deprecated
   */
  public static final FontName TIMES = WritableFont.TIMES;

  // The bold styles

  /**
   * Indicates that this font should not be presented as bold
   * @deprecated
   */
  public static final BoldStyle NO_BOLD  = WritableFont.NO_BOLD;
  /**
   * Indicates that this font should be presented in a BOLD style
   * @deprecated
   */
  public static final BoldStyle BOLD     = WritableFont.BOLD;

  // The underline styles
  /**
   * @deprecated
   */
  public static final UnderlineStyle NO_UNDERLINE  =
    UnderlineStyle.NO_UNDERLINE;

  /**
   * @deprecated
   */
  public static final UnderlineStyle SINGLE        = UnderlineStyle.SINGLE;

  /**
   * @deprecated
   */
  public static final UnderlineStyle DOUBLE        = UnderlineStyle.DOUBLE;

  /**
   * @deprecated
   */
  public static final UnderlineStyle SINGLE_ACCOUNTING =
    UnderlineStyle.SINGLE_ACCOUNTING;

  /**
   * @deprecated
   */
  public static final UnderlineStyle DOUBLE_ACCOUNTING =
    UnderlineStyle.DOUBLE_ACCOUNTING;

  // The script styles
  public static final ScriptStyle NORMAL_SCRIPT = ScriptStyle.NORMAL_SCRIPT;
  public static final ScriptStyle SUPERSCRIPT   = ScriptStyle.SUPERSCRIPT;
  public static final ScriptStyle SUBSCRIPT     = ScriptStyle.SUBSCRIPT;

  /**
   * Creates a default font, vanilla font of the specified face and with
   * default point size.
   *
   * @param fn the font name
   * @deprecated Use jxl.write.WritableFont
   */
  public Font(FontName fn)
  {
    super(fn);
  }

  /**
   * Constructs of font of the specified face and of size given by the
   * specified point size
   *
   * @param ps the point size
   * @param fn the font name
   * @deprecated use jxl.write.WritableFont
   */
  public Font(FontName fn, int ps)
  {
    super(fn, ps);
  }

  /**
   * Creates a font of the specified face, point size and bold style
   *
   * @param ps the point size
   * @param bs the bold style
   * @param fn the font name
   * @deprecated use jxl.write.WritableFont
   */
  public Font(FontName fn, int ps, BoldStyle bs)
  {
    super(fn, ps, bs);
  }

  /**
   * Creates a font of the specified face, point size, bold weight and
   * italicised option.
   *
   * @param ps the point size
   * @param bs the bold style
   * @param italic italic flag
   * @param fn the font name
   * @deprecated use jxl.write.WritableFont
   */
  public Font(FontName fn, int ps, BoldStyle bs, boolean italic)
  {
    super(fn, ps, bs, italic);
  }

  /**
   * Creates a font of the specified face, point size, bold weight,
   * italicisation and underline style
   *
   * @param ps the point size
   * @param bs the bold style
   * @param us underscore flag
   * @param fn font name
   * @param it italic flag
   * @deprecated use jxl.write.WritableFont
   */
  public Font(FontName fn,
              int ps,
              BoldStyle bs,
              boolean it,
              UnderlineStyle us)
  {
    super(fn, ps, bs, it, us);
  }


  /**
   * Creates a font of the specified face, point size, bold style,
   * italicisation, underline style and colour
   *
   * @param ps the point size
   * @param bs the bold style
   * @param us the underline style
   * @param fn the font name
   * @param it italic flag
   * @param c the colour
   * @deprecated use jxl.write.WritableFont
   */
  public Font(FontName fn,
              int ps,
              BoldStyle bs,
              boolean it,
              UnderlineStyle us,
              Colour c)
  {
    super(fn, ps, bs, it, us, c);
  }


  /**
   * Creates a font of the specified face, point size, bold style,
   * italicisation, underline style, colour, and script
   * style (superscript/subscript)
   *
   * @param ps the point size
   * @param bs the bold style
   * @param us the underline style
   * @param fn the font name
   * @param it the italic flag
   * @param c the colour
   * @param ss the script style
   * @deprecated use jxl.write.WritableFont
   */
  public Font(FontName fn,
              int ps,
              BoldStyle bs,
              boolean it,
              UnderlineStyle us,
              Colour c,
              ScriptStyle ss)
  {
    super(fn, ps, bs, it, us, c, ss);
  }
}

jxl/write/Font.java

 

Or download all of them as a single archive file:

File name: jxl-2.6.12-src.zip
File size: 824057 bytes
Release date: 2009-10-24
Download 

 

Demo Programs for jxl.jar

What Is jexcelapi_2_6_12.zip

Download Java Excel API jxl.jar

⇑⇑ FAQ for Java Excel API jxl.jar

2017-06-09, 68468👍, 6💬