File tree Expand file tree Collapse file tree
Core/srctest/ca/uqac/lif/spreadsheet/functions
Gral/src/ca/uqac/lif/spreadsheet/chart/gral
Relations/src/ca/uqac/lif/spreadsheet/relation Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2424
2525 <!-- The project's name -->
2626 <name >Programmatic Spreadsheet - Charts</name >
27+
28+ <targetjdk >8</targetjdk >
29+ <version >0.2</version >
30+ <package >ca/uqac/lif/spreadsheet/charts/</package >
2731
2832 <!-- The project's author. Currently this only
2933 shows up in the footer of the Javadoc documentation. -->
6367 <name >Petit Poucet Core</name >
6468 <classname >ca.uqac.lif.petitpoucet.Part</classname >
6569 <files >
66- <jar >https://github.com/liflab/petitpoucet/releases/download/v2.1-beta3 /petitpoucet-core.jar</jar >
70+ <jar >https://github.com/liflab/petitpoucet/releases/download/v2.3 /petitpoucet-core-2.3 .jar</jar >
6771 </files >
6872 <bundle >false</bundle >
6973 </dependency >
7478 <name >Petit Poucet Functions</name >
7579 <classname >ca.uqac.lif.petitpoucet.function.Function</classname >
7680 <files >
77- <jar >https://github.com/liflab/petitpoucet/releases/download/v2.1-beta3 /petitpoucet-functions.jar</jar >
81+ <jar >https://github.com/liflab/petitpoucet/releases/download/v2.3 /petitpoucet-functions-2.3 .jar</jar >
7882 </files >
7983 <bundle >false</bundle >
8084 </dependency >
Original file line number Diff line number Diff line change 2828import ca .uqac .lif .petitpoucet .function .number .Addition ;
2929import ca .uqac .lif .spreadsheet .Cell ;
3030import ca .uqac .lif .spreadsheet .Spreadsheet ;
31- import ca .uqac .lif .spreadsheet .functions .CellFormula ;
32- import ca .uqac .lif .spreadsheet .functions .ValueOf ;
3331
3432public class CellFormulaTest
3533{
Original file line number Diff line number Diff line change 2828import ca .uqac .lif .petitpoucet .function .NthOutput ;
2929import ca .uqac .lif .spreadsheet .Cell ;
3030import ca .uqac .lif .spreadsheet .Spreadsheet ;
31- import ca .uqac .lif .spreadsheet .functions .ExpandAsColumns ;
3231import ca .uqac .lif .spreadsheet .functions .SpreadsheetFunction .InputCell ;
3332
3433public class ExpandAsColumnsTest
Original file line number Diff line number Diff line change 2828import ca .uqac .lif .petitpoucet .function .NthOutput ;
2929import ca .uqac .lif .spreadsheet .Cell ;
3030import ca .uqac .lif .spreadsheet .Spreadsheet ;
31- import ca .uqac .lif .spreadsheet .functions .Merge ;
3231
3332public class MergeTest
3433{
Original file line number Diff line number Diff line change 1717 */
1818package ca .uqac .lif .spreadsheet .chart .gral ;
1919
20- import ca .uqac .lif .petitpoucet .NodeFactory ;
2120import ca .uqac .lif .petitpoucet .Part ;
2221import ca .uqac .lif .petitpoucet .PartNode ;
22+ import ca .uqac .lif .petitpoucet .function .RelationNodeFactory ;
2323import ca .uqac .lif .spreadsheet .Spreadsheet ;
2424import ca .uqac .lif .spreadsheet .chart .BoxPlot ;
2525import de .erichseifert .gral .data .DataSource ;
Original file line number Diff line number Diff line change 11/*
22 A provenance-aware spreadsheet library
3- Copyright (C) 2021-2022 Sylvain Hallé
3+ Copyright (C) 2021-2023 Sylvain Hallé
44
55 This program is free software: you can redistribute it and/or modify
66 it under the terms of the GNU Lesser General Public License as published by
1717 */
1818package ca .uqac .lif .spreadsheet .chart .gral ;
1919
20- import ca .uqac .lif .petitpoucet .NodeFactory ;
2120import ca .uqac .lif .petitpoucet .Part ;
2221import ca .uqac .lif .petitpoucet .PartNode ;
22+ import ca .uqac .lif .petitpoucet .function .RelationNodeFactory ;
2323import ca .uqac .lif .spreadsheet .Spreadsheet ;
2424import ca .uqac .lif .spreadsheet .chart .PieChart ;
2525import de .erichseifert .gral .graphics .Insets2D ;
Original file line number Diff line number Diff line change 2121import java .io .IOException ;
2222import java .io .OutputStream ;
2323
24- import ca .uqac .lif .petitpoucet .NodeFactory ;
2524import ca .uqac .lif .petitpoucet .Part ;
2625import ca .uqac .lif .petitpoucet .PartNode ;
26+ import ca .uqac .lif .petitpoucet .function .RelationNodeFactory ;
2727import ca .uqac .lif .spreadsheet .Spreadsheet ;
2828import ca .uqac .lif .spreadsheet .chart .Chart ;
2929import ca .uqac .lif .spreadsheet .chart .ChartFormat ;
Original file line number Diff line number Diff line change 11/*
22 A provenance-aware spreadsheet library
3- Copyright (C) 2021-2022 Sylvain Hallé
3+ Copyright (C) 2021-2023 Sylvain Hallé
44
55 This program is free software: you can redistribute it and/or modify
66 it under the terms of the GNU Lesser General Public License as published by
1717 */
1818package ca .uqac .lif .spreadsheet .chart .gral ;
1919
20- import ca .uqac .lif .petitpoucet .NodeFactory ;
2120import ca .uqac .lif .petitpoucet .Part ;
2221import ca .uqac .lif .petitpoucet .PartNode ;
22+ import ca .uqac .lif .petitpoucet .function .RelationNodeFactory ;
2323import ca .uqac .lif .spreadsheet .Spreadsheet ;
2424import ca .uqac .lif .spreadsheet .chart .Scatterplot ;
2525import de .erichseifert .gral .data .DataSeries ;
Original file line number Diff line number Diff line change 2525import ca .uqac .lif .petitpoucet .function .InvalidArgumentTypeException ;
2626import ca .uqac .lif .petitpoucet .function .InvalidNumberOfArgumentsException ;
2727import ca .uqac .lif .spreadsheet .Spreadsheet ;
28- import ca .uqac .lif .spreadsheet .functions .Merge ;
2928
3029public class Join extends RelationalOperator
3130{
Original file line number Diff line number Diff line change 11/*
22 A provenance-aware spreadsheet library
3- Copyright (C) 2021-2022 Sylvain Hallé
3+ Copyright (C) 2021-2023 Sylvain Hallé
44
55 This program is free software: you can redistribute it and/or modify
66 it under the terms of the GNU Lesser General Public License as published by
2828import ca .uqac .lif .petitpoucet .PartNode ;
2929import ca .uqac .lif .petitpoucet .function .AtomicFunction ;
3030import ca .uqac .lif .petitpoucet .function .NthOutput ;
31+ import ca .uqac .lif .petitpoucet .function .RelationNodeFactory ;
3132import ca .uqac .lif .spreadsheet .Cell ;
3233import ca .uqac .lif .spreadsheet .Spreadsheet ;
3334
You can’t perform that action at this time.
0 commit comments