*/
public interface PlaceholderDetails {
enum PlaceholderSize {
- quarter, half, full;
+ quarter, half, full
}
Placeholder getPlaceholder();
allEquals = false;
break;
}
- };
+ }
return allEquals;
}
private final static NamespaceImpl namespaceDC =
new NamespaceImpl("dc", PackagePropertiesPart.NAMESPACE_DC_URI);
private final static NamespaceImpl namespaceCoreProperties =
- new NamespaceImpl("cp", PackagePropertiesPart.NAMESPACE_CP_URI);;
+ new NamespaceImpl("cp", PackagePropertiesPart.NAMESPACE_CP_URI);
private final static NamespaceImpl namespaceDcTerms =
new NamespaceImpl("dcterms", PackagePropertiesPart.NAMESPACE_DCTERMS_URI);
private final static NamespaceImpl namespaceXSI =
- new NamespaceImpl("xsi", XMLConstants.W3C_XML_SCHEMA_INSTANCE_NS_URI);;
+ new NamespaceImpl("xsi", XMLConstants.W3C_XML_SCHEMA_INSTANCE_NS_URI);
protected static final String KEYWORD_CATEGORY = "category";
LINE,
PIE,
RADAR,
- SCATTER;
+ SCATTER
}
import java.util.HashMap;
-import org.openxmlformats.schemas.drawingml.x2006.chart.STLayoutMode;;
+import org.openxmlformats.schemas.drawingml.x2006.chart.STLayoutMode;
public enum LayoutMode {
EDGE(STLayoutMode.EDGE),
import java.util.HashMap;
-import org.openxmlformats.schemas.drawingml.x2006.chart.STLayoutTarget;;
+import org.openxmlformats.schemas.drawingml.x2006.chart.STLayoutTarget;
public enum LayoutTarget {
INNER(STLayoutTarget.INNER),
}
if (cache.sizeOfPtArray() < 1) {
cache.addNewPtCount().setVal(1);
- cache.addNewPt().setIdx(0);;
+ cache.addNewPt().setIdx(0);
}
cache.getPtArray(0).setV(title);
ref.setF(titleRef.formatAsString());
public abstract class XDDFSpacing {
public static enum Kind {
PERCENT,
- POINTS;
+ POINTS
}
protected CTTextSpacing spacing;
public void setIndentation(Double points) {
if (points != null || _p.isSetPPr()) {
getOrCreateProperties().setIndentation(points);
- ;
}
}
cur.dispose();
}
- final int svgId = getExt(extLst, SVG_URI);;
+ final int svgId = getExt(extLst, SVG_URI);
if (svgId != -1) {
extLst.removeExt(svgId);
}
import org.apache.poi.ss.util.CellReference;
import org.apache.poi.util.Removal;
import org.openxmlformats.schemas.drawingml.x2006.chart.CTSerTx;
-import org.apache.poi.xddf.usermodel.chart.XDDFChartData.Series;;
+import org.apache.poi.xddf.usermodel.chart.XDDFChartData.Series;
/**
* Base of all XSSF Chart Series
THIN_THICK_MEDIUM_GAP, THICK_THIN_MEDIUM_GAP, THIN_THICK_THIN_MEDIUM_GAP,
THIN_THICK_LARGE_GAP, THICK_THIN_LARGE_GAP, THIN_THICK_THIN_LARGE_GAP,
WAVE, DOUBLE_WAVE, DASH_SMALL_GAP, DASH_DOT_STROKED, THREE_D_EMBOSS, THREE_D_ENGRAVE,
- OUTSET, INSET;
+ OUTSET, INSET
}
private enum Border { INSIDE_V, INSIDE_H, LEFT, TOP, BOTTOM, RIGHT }
BufferedInputStream buffi = new BufferedInputStream(file_decompress);
/* Open the file with the buffer */
- ZipArchiveInputStream zis = new ZipArchiveInputStream(buffi);
+ ZipArchiveInputStream zis = new ZipArchiveInputStream(buffi)
) {
/* Processing entries of the zip file */
"jHkKLEAUFMA+04XC1EzX6UdMAALxcERgK444+wB0Go1CA3jANCNRGdj1UoyIZhlpPsMobf48GmkeI1Pp8xi" +
"Nsm0eo9O3/mAoAvIFEKIQ58wPgrAtK+oJwyjAmL0+bBEPBugzGsUoiKAKhSQGmYjD4y3trXD/AmBc9IeqBwAA";
- enum Api { HSLF, XSLF };
-
-
+ enum Api { HSLF, XSLF }
+
+
@Parameter(value = 0)
public Api api;
@Parameter(value = 1)
@Test
public void bug57423_shiftRowsByLargeOffset() throws IOException {
try (
- XSSFWorkbook wb = new XSSFWorkbook();
+ XSSFWorkbook wb = new XSSFWorkbook()
//OutputStream out = new FileOutputStream("/tmp/57423." + wb.getClass().getName() + ".xlsx"));
) {
Sheet sh = wb.createSheet();
@Test(expected = IllegalArgumentException.class)
public void testCreateColumnInvalidIndex() throws IOException {
- try (XSSFWorkbook wb = new XSSFWorkbook();) {
+ try (XSSFWorkbook wb = new XSSFWorkbook()) {
XSSFSheet sh = wb.createSheet();
AreaReference tableArea = new AreaReference("D2:D3", wb.getSpreadsheetVersion());
XSSFTable table = sh.createTable(tableArea);