put back XSSFColor(java.awt.Color clr) constructor
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1846701 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ccfd27dfc3
commit
6a198bf5f2
@ -47,7 +47,7 @@ public class XSSFColor extends ExtendedColor {
|
||||
* @deprecated 3.17 beta 1 - pass the workbook styles indexed color map, if any
|
||||
*/
|
||||
@Deprecated
|
||||
@Removal(version="3.19")
|
||||
@Removal(version="4.2")
|
||||
public XSSFColor(CTColor color) {
|
||||
this(color, new DefaultIndexedColorMap());
|
||||
}
|
||||
@ -59,6 +59,7 @@ public class XSSFColor extends ExtendedColor {
|
||||
* @deprecated 4.0.0 - use the factory {@link #from(CTColor, IndexedColorMap)} method instead to check for null CTColor instances. Make private eventually
|
||||
*/
|
||||
@Deprecated
|
||||
@Removal(version = "4.2")
|
||||
public XSSFColor(CTColor color, IndexedColorMap map) {
|
||||
this.ctColor = color;
|
||||
this.indexedColorMap = map;
|
||||
@ -72,7 +73,7 @@ public class XSSFColor extends ExtendedColor {
|
||||
* @see #from(CTColor, IndexedColorMap)
|
||||
*/
|
||||
@Deprecated
|
||||
@Removal(version="4.1")
|
||||
@Removal(version="4.2")
|
||||
public XSSFColor() {
|
||||
this(CTColor.Factory.newInstance(), new DefaultIndexedColorMap());
|
||||
}
|
||||
@ -85,6 +86,17 @@ public class XSSFColor extends ExtendedColor {
|
||||
this(CTColor.Factory.newInstance(), colorMap);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of XSSFColor from the awt Color
|
||||
* @param clr awt Color
|
||||
* @deprecated 3.17 beta 1 - pass the workbook styles indexed color map, if any
|
||||
*/
|
||||
@Deprecated
|
||||
@Removal(version="4.2")
|
||||
public XSSFColor(java.awt.Color clr) {
|
||||
this(clr, new DefaultIndexedColorMap());
|
||||
}
|
||||
|
||||
/**
|
||||
* TEST ONLY
|
||||
* @param clr awt Color
|
||||
|
Loading…
Reference in New Issue
Block a user