mirror of https://github.com/apache/poi.git
update javadoc
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1920232 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
abf153d6a4
commit
41ea754510
|
@ -42,6 +42,7 @@ public final class RegionUtil {
|
|||
private final Object _propertyValue;
|
||||
|
||||
@Deprecated
|
||||
@Removal(version = "7.0.0")
|
||||
public CellPropertySetter(String propertyName, int value) {
|
||||
this(CellUtil.namePropertyMap.get(propertyName), value);
|
||||
}
|
||||
|
@ -62,6 +63,11 @@ public final class RegionUtil {
|
|||
_propertyValue = Integer.valueOf(value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param property The property to set
|
||||
* @param value The value to set the property to
|
||||
* @since POI 5.3.1
|
||||
*/
|
||||
public CellPropertySetter(CellPropertyType property, BorderStyle value) {
|
||||
this.property = property;
|
||||
_propertyValue = value;
|
||||
|
|
Loading…
Reference in New Issue