Codota Logo
jxl.biff.formula
Code IndexAdd Codota to your IDE (free)

How to use jxl.biff.formula

Best Java code snippets using jxl.biff.formula (Showing top 20 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Point p =
  • Codota Iconnew Point(x, y)
  • Codota Iconnew Point()
  • Codota IconMouseEvent e;e.getPoint()
  • Smart code suggestions by Codota
}
origin: net.sourceforge.jexcelapi/jxl

/**
 * Gets the token representation of this item in RPN
 *
 * @return the bytes applicable to this formula
 */
byte[] getBytes()
{
 byte[] data = new byte[2];
 data[0] = Token.ERR.getCode();
 data[1] = (byte) error.getCode();
 return data;
}
origin: net.sourceforge.jexcelapi/jxl

/**
 * If this formula was on an imported sheet, check that
 * cell references to another sheet are warned appropriately
 * Does nothing, as operators don't have cell references
 */
void handleImportedCellReferences()
{
 ParseItem[] operands = getOperands();
 operands[0].handleImportedCellReferences();
}
origin: net.sourceforge.jexcelapi/jxl

/**
 * Adjusts all the relative cell references in this formula by the
 * amount specified.  Used when copying formulas
 *
 * @param colAdjust the amount to add on to each relative cell reference
 * @param rowAdjust the amount to add on to each relative row reference
 */
public void adjustRelativeCellReferences(int colAdjust, int rowAdjust)
{
 ParseItem[] operands = getOperands();
 operands[0].adjustRelativeCellReferences(colAdjust, rowAdjust);
}
origin: net.sourceforge.jexcelapi/jxl

/**
 * Adjusts all the relative cell references in this formula by the
 * amount specified.  Used when copying formulas
 *
 * @param colAdjust the amount to add on to each relative cell reference
 * @param rowAdjust the amount to add on to each relative row reference
 */
public void adjustRelativeCellReferences(int colAdjust, int rowAdjust)
{
 ParseItem[] operands = getOperands();
 operands[0].adjustRelativeCellReferences(colAdjust, rowAdjust);
}
origin: net.sourceforge.jexcelapi/jxl

/**
 * If this formula was on an imported sheet, check that
 * cell references to another sheet are warned appropriately
 * Does nothing, as operators don't have cell references
 */
void handleImportedCellReferences()
{
 ParseItem[] operands = getOperands();
 operands[0].handleImportedCellReferences();
}
origin: net.sourceforge.jexcelapi/jxl

/**
 * If this formula was on an imported sheet, check that
 * cell references to another sheet are warned appropriately
 * Does nothing, as operators don't have cell references
 */
void handleImportedCellReferences()
{
 ParseItem[] operands = getOperands();
 operands[0].handleImportedCellReferences();
 operands[1].handleImportedCellReferences();
}
origin: net.sourceforge.jexcelapi/jxl

/**
 * If this formula was on an imported sheet, check that
 * cell references to another sheet are warned appropriately
 * Does nothing, as operators don't have cell references
 */
void handleImportedCellReferences()
{
 ParseItem[] operands = getOperands();
 operands[0].handleImportedCellReferences();
}
origin: net.sourceforge.jexcelapi/jxl

/**
 * Adjusts all the relative cell references in this formula by the
 * amount specified.  Used when copying formulas
 *
 * @param colAdjust the amount to add on to each relative cell reference
 * @param rowAdjust the amount to add on to each relative row reference
 */
public void adjustRelativeCellReferences(int colAdjust, int rowAdjust)
{
 ParseItem[] operands = getOperands();
 operands[1].adjustRelativeCellReferences(colAdjust, rowAdjust);
 operands[0].adjustRelativeCellReferences(colAdjust, rowAdjust);
}
origin: net.sourceforge.jexcelapi/jxl

/**
 * If this formula was on an imported sheet, check that
 * cell references to another sheet are warned appropriately
 * Does nothing, as operators don't have cell references
 */
void handleImportedCellReferences()
{
 ParseItem[] operands = getOperands();
 for (int i = 0 ; i < operands.length ; i++)
 {
  operands[i].handleImportedCellReferences();
 }
}
origin: net.sourceforge.jexcelapi/jxl

/**
 * If this formula was on an imported sheet, check that
 * cell references to another sheet are warned appropriately
 * Does nothing, as operators don't have cell references
 */
void handleImportedCellReferences()
{
 ParseItem[] operands = getOperands();
 for (int i = 0 ; i < operands.length ; i++)
 {
  operands[i].handleImportedCellReferences();
 }
}
origin: net.sourceforge.jexcelapi/jxl

/**
 * Gets the token representation of this item in RPN
 *
 * @return the bytes applicable to this formula
 */
byte[] getBytes()
{
 byte[] data = new byte[5];
 data[0] = Token.REFERR.getCode();
 // bytes 1-5 are unused
 return data;
}
origin: com.hynnet/jxl

/**
 * Gets the token representation of this item in RPN
 *
 * @return the bytes applicable to this formula
 */
byte[] getBytes()
{
 byte[] data = new byte[2];
 data[0] = Token.ERR.getCode();
 data[1] = (byte) error.getCode();
 return data;
}
origin: com.hynnet/jxl

/**
 * If this formula was on an imported sheet, check that
 * cell references to another sheet are warned appropriately
 * Does nothing, as operators don't have cell references
 */
void handleImportedCellReferences()
{
 ParseItem[] operands = getOperands();
 operands[0].handleImportedCellReferences();
}
origin: com.hynnet/jxl

/**
 * Adjusts all the relative cell references in this formula by the
 * amount specified.  Used when copying formulas
 *
 * @param colAdjust the amount to add on to each relative cell reference
 * @param rowAdjust the amount to add on to each relative row reference
 */
public void adjustRelativeCellReferences(int colAdjust, int rowAdjust)
{
 ParseItem[] operands = getOperands();
 operands[0].adjustRelativeCellReferences(colAdjust, rowAdjust);
}
origin: com.hynnet/jxl

/**
 * Adjusts all the relative cell references in this formula by the
 * amount specified.  Used when copying formulas
 *
 * @param colAdjust the amount to add on to each relative cell reference
 * @param rowAdjust the amount to add on to each relative row reference
 */
public void adjustRelativeCellReferences(int colAdjust, int rowAdjust)
{
 ParseItem[] operands = getOperands();
 operands[0].adjustRelativeCellReferences(colAdjust, rowAdjust);
}
origin: com.hynnet/jxl

/**
 * If this formula was on an imported sheet, check that
 * cell references to another sheet are warned appropriately
 * Does nothing, as operators don't have cell references
 */
void handleImportedCellReferences()
{
 ParseItem[] operands = getOperands();
 operands[0].handleImportedCellReferences();
}
origin: com.hynnet/jxl

/**
 * If this formula was on an imported sheet, check that
 * cell references to another sheet are warned appropriately
 * Does nothing, as operators don't have cell references
 */
void handleImportedCellReferences()
{
 ParseItem[] operands = getOperands();
 operands[0].handleImportedCellReferences();
 operands[1].handleImportedCellReferences();
}
origin: com.hynnet/jxl

/**
 * If this formula was on an imported sheet, check that
 * cell references to another sheet are warned appropriately
 * Does nothing, as operators don't have cell references
 */
void handleImportedCellReferences()
{
 ParseItem[] operands = getOperands();
 operands[0].handleImportedCellReferences();
}
origin: com.hynnet/jxl

/**
 * Adjusts all the relative cell references in this formula by the
 * amount specified.  Used when copying formulas
 *
 * @param colAdjust the amount to add on to each relative cell reference
 * @param rowAdjust the amount to add on to each relative row reference
 */
public void adjustRelativeCellReferences(int colAdjust, int rowAdjust)
{
 ParseItem[] operands = getOperands();
 operands[1].adjustRelativeCellReferences(colAdjust, rowAdjust);
 operands[0].adjustRelativeCellReferences(colAdjust, rowAdjust);
}
origin: com.hynnet/jxl

/**
 * If this formula was on an imported sheet, check that
 * cell references to another sheet are warned appropriately
 * Does nothing, as operators don't have cell references
 */
void handleImportedCellReferences()
{
 ParseItem[] operands = getOperands();
 for (int i = 0 ; i < operands.length ; i++)
 {
  operands[i].handleImportedCellReferences();
 }
}
jxl.biff.formula

Most used classes

  • Add
    A cell reference in a formula
  • Area3d
    A nested class to hold range information
  • Area
    A nested class to hold range information
  • ArgumentSeparator
    A dummy token used when parsing strings in order to indicate the separation of parameters
  • Attribute
    A special attribute control token - typically either a SUM function or an IF function
  • BooleanValue,
  • BuiltInFunction,
  • CellReference3d,
  • CellReference,
  • CellReferenceError,
  • CloseParentheses,
  • ColumnRange3d,
  • ColumnRange,
  • Concatenate,
  • Divide,
  • DoubleValue,
  • Equal,
  • ErrorConstant,
  • ExternalSheet
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now