Skip to content

Commit 309a5d5

Browse files
Package naming update - temp
1 parent 9f1fa6c commit 309a5d5

File tree

193 files changed

+192
-200
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

193 files changed

+192
-200
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ _ReSharper*/
1111
*.iws
1212
*.ipr
1313
*.eml
14+
*.iml
1415
out/
1516
*.user
1617
*.resx
@@ -25,4 +26,6 @@ Out*/
2526
.settings/
2627
*.lic
2728
Data/*Out*
28-
.project
29+
.project
30+
.idea/
31+
/dist/

Examples/src/main/java/com/aspose/slides/examples/charts/ChartEntities.java renamed to Examples/src/main/java/com/aspose/slides/examples/Charts1/ChartEntities.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* "as is", without warranty of any kind, either expressed or implied.
77
*/
88

9-
package com.aspose.slides.examples.charts;
9+
package com.aspose.slides.examples.Charts1;
1010

1111
import com.aspose.slides.*;
1212
import com.aspose.slides.examples.Utils;
@@ -19,7 +19,7 @@ public static void main(String[] args) throws Exception
1919
{
2020
// The path to the documents directory.
2121
String dataDir = Utils.getDataDir(ChartEntities.class);
22-
//Instantiating presentation//Instantiating presentation
22+
//Instantiating Presentation1//Instantiating Presentation1
2323
Presentation pres = new Presentation();
2424

2525
//Accessing the first slide

Examples/src/main/java/com/aspose/slides/examples/charts/chartfromscratch/NormalCharts.java renamed to Examples/src/main/java/com/aspose/slides/examples/Charts1/ChartFromScratch1/NormalCharts.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* "as is", without warranty of any kind, either expressed or implied.
77
*/
88

9-
package com.aspose.slides.examples.charts.chartfromscratch;
9+
package com.aspose.slides.examples.Charts1.ChartFromScratch1;
1010

1111
import com.aspose.slides.*;
1212
import com.aspose.slides.examples.Utils;
@@ -100,7 +100,7 @@ public static void main(String[] args) throws Exception
100100
lbl.getDataLabelFormat().setShowSeriesName(true);
101101
lbl.getDataLabelFormat().setSeparator ("/");
102102

103-
//Save presentation with chart
103+
//Save Presentation1 with chart
104104
pres.save(dataDir + "AsposeChart.pptx", SaveFormat.Pptx);
105105
}
106106
}

Examples/src/main/java/com/aspose/slides/examples/charts/chartfromscratch/ScatteredChart.java renamed to Examples/src/main/java/com/aspose/slides/examples/Charts1/ChartFromScratch1/ScatteredChart.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* "as is", without warranty of any kind, either expressed or implied.
77
*/
88

9-
package com.aspose.slides.examples.charts.chartfromscratch;
9+
package com.aspose.slides.examples.Charts1.ChartFromScratch1;
1010

1111
import com.aspose.slides.*;
1212
import com.aspose.slides.examples.Utils;

Examples/src/main/java/com/aspose/slides/examples/charts/ChartTrendLines.java renamed to Examples/src/main/java/com/aspose/slides/examples/Charts1/ChartTrendLines.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* "as is", without warranty of any kind, either expressed or implied.
77
*/
88

9-
package com.aspose.slides.examples.charts;
9+
package com.aspose.slides.examples.Charts1;
1010

1111
import com.aspose.slides.*;
1212
import com.aspose.slides.examples.Utils;
@@ -20,7 +20,7 @@ public static void main(String[] args) throws Exception
2020
// The path to the documents directory.
2121
String dataDir = Utils.getDataDir(ChartTrendLines.class);
2222

23-
//Creating empty presentation//Creating empty presentation
23+
//Creating empty Presentation1//Creating empty Presentation1
2424
Presentation pres = new Presentation();
2525

2626
//Creating a clustered column chart
@@ -60,7 +60,7 @@ public static void main(String[] args) throws Exception
6060
tredLinePower.setTrendlineType(TrendlineType.Power);
6161
tredLinePower.setBackward(1);
6262

63-
//Saving presentation
63+
//Saving Presentation1
6464
pres.save(dataDir+ "ChartTrendLines.pptx", SaveFormat.Pptx);
6565
}
6666
}

Examples/src/main/java/com/aspose/slides/examples/charts/ExistingChart.java renamed to Examples/src/main/java/com/aspose/slides/examples/Charts1/ExistingChart.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* "as is", without warranty of any kind, either expressed or implied.
77
*/
88

9-
package com.aspose.slides.examples.charts;
9+
package com.aspose.slides.examples.Charts1;
1010

1111
import com.aspose.slides.*;
1212
import com.aspose.slides.examples.Utils;
@@ -70,7 +70,7 @@ public static void main(String[] args) throws Exception
7070

7171
chart.setType(ChartType.ClusteredCylinder);
7272

73-
// Save presentation with chart
73+
// Save Presentation1 with chart
7474
pres.save(dataDir+ "AsposeChartModified.pptx", SaveFormat.Pptx);
7575
}
7676
}

Examples/src/main/java/com/aspose/slides/examples/charts/NumberFormat.java renamed to Examples/src/main/java/com/aspose/slides/examples/Charts1/NumberFormat.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* "as is", without warranty of any kind, either expressed or implied.
77
*/
88

9-
package com.aspose.slides.examples.charts;
9+
package com.aspose.slides.examples.Charts1;
1010

1111
import com.aspose.slides.*;
1212
import com.aspose.slides.examples.Utils;
@@ -18,10 +18,10 @@ public static void main(String[] args) throws Exception
1818
// The path to the documents directory.
1919
String dataDir = Utils.getDataDir(NumberFormat.class);
2020

21-
//Instantiate the presentation//Instantiate the presentation
21+
//Instantiate the Presentation1//Instantiate the Presentation1
2222
Presentation pres = new Presentation();
2323

24-
//Access the first presentation slide
24+
//Access the first Presentation1 slide
2525
ISlide slide = pres.getSlides().get_Item(0);
2626

2727
//Adding a default clustered column chart
@@ -42,7 +42,7 @@ public static void main(String[] args) throws Exception
4242
}
4343
}
4444

45-
//Saving presentation
45+
//Saving Presentation1
4646
pres.save(dataDir+ "PresetNumberFormat.pptx", SaveFormat.Pptx);
4747

4848

Examples/src/main/java/com/aspose/slides/examples/presentation/AccessOpenDocument.java renamed to Examples/src/main/java/com/aspose/slides/examples/Presentation1/AccessOpenDocument.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@
66
* "as is", without warranty of any kind, either expressed or implied.
77
*/
88

9-
package com.aspose.slides.examples.presentation;
9+
package com.aspose.slides.examples.Presentation1;
1010

11-
import com.aspose.slides.*;
1211
import com.aspose.slides.examples.Utils;
1312

1413
public class AccessOpenDocument

Examples/src/main/java/com/aspose/slides/examples/presentation/ConvertToPDF.java renamed to Examples/src/main/java/com/aspose/slides/examples/Presentation1/ConvertToPDF.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* "as is", without warranty of any kind, either expressed or implied.
77
*/
88

9-
package com.aspose.slides.examples.presentation;
9+
package com.aspose.slides.examples.Presentation1;
1010

1111
import com.aspose.slides.*;
1212
import com.aspose.slides.examples.Utils;
@@ -18,11 +18,11 @@ public static void main(String[] args) throws Exception
1818
// The path to the documents directory.
1919
String dataDir = Utils.getDataDir(ConvertToPDF.class);
2020

21-
//Instantiate a Presentation object that represents a presentation file
21+
//Instantiate a Presentation object that represents a Presentation1 file
2222
Presentation pres = new Presentation(dataDir+ "Aspose.pptx");
2323

2424

25-
//Save the presentation to PDF with default options
25+
//Save the Presentation1 to PDF with default options
2626
pres.save(dataDir+ "demoDefault.pdf", SaveFormat.Pdf);
2727
System.out.println("Program executed successfully");
2828
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* "as is", without warranty of any kind, either expressed or implied.
77
*/
88

9-
package com.aspose.slides.examples.presentation.manageproperties;
9+
package com.aspose.slides.examples.Presentation1.ManageProperties1;
1010

1111
import com.aspose.slides.*;
1212
import com.aspose.slides.examples.Utils;
@@ -18,7 +18,7 @@ public static void main(String[] args) throws Exception
1818
// The path to the documents directory.
1919
String dataDir = Utils.getDataDir(AccessBuiltinProperties.class);
2020

21-
//Instantiate the Presentation class that represents the presentation
21+
//Instantiate the Presentation class that represents the Presentation1
2222
Presentation pres = new Presentation(dataDir+ "Aspose.pptx");
2323

2424
//Create a reference to IDocumentProperties object associated with Presentation

0 commit comments

Comments
 (0)