Differences between revisions 48 and 49
Revision 48 as of 2009-08-23 19:52:24
Size: 2177
Editor: AlfonsoReyes
Comment:
Revision 49 as of 2009-08-23 19:54:22
Size: 2177
Editor: AlfonsoReyes
Comment:
Deletions are marked like this. Additions are marked like this.
Line 48: Line 48:
 || line 1[[BR]]line 2||  || line 1<<BR>>line 2||

Describe ComparisonJavaJython here.

Description

In Java

In Jython

array of doubles

xCoord = Double[25]

xCoord = jarray.zeros(25, "d")

Size of array

mx = data.length;

mx = len(data)

array assignment

double re = reFun.evaluate(new double[] {data[i][j][0], data[i][j][1]});

re = self.reFun.evaluate([data[i][j][0], data[i][j][1]])

Declaring a class type

public class CalcComplexPlotApp implements Calculation {

class CalcComplexPlotApp(Calculation):

NEW STYLE: General table layout and HTML like options::

  • Heading

    cell 1

    cell2

    cell 3

    spanning rows

    spanning 2 columns

    cell2

    cell 3

  • Cell width
  • narrow

    wide

  • Spanning rows and columns
  • 2 rows

    row 1

    row 2

    row 3 over 2 columns

  • Alignment
  • left

    top

    bottom

    centered

    right

  • Fonts
  • normal

    bold

    red

    boldred

  • Colors
  • red

    green

    blue

  • OLD STYLE: General table layout and HTML like options
  • Heading

    cell 1

    cell2

    cell 3

    spanning rows

    spanning 2 columns

    cell2

    cell 3

  • Cell width
  • narrow

    wide

  • Spanning rows and columns
  • 2 rows

    row 1

    row 2

    row 3 over 2 columns

  • Alignment
  • left

    top

    bottom

    centered

    right

  • Colors
  • red

    green

    blue

  • Line breaks within cells
  • line 1
    line 2

ComparisonJavaJython (last edited 2009-08-23 20:01:21 by AlfonsoReyes)