diff options
author | PJ Fanning <fanningpj@apache.org> | 2024-08-27 18:46:55 +0000 |
---|---|---|
committer | PJ Fanning <fanningpj@apache.org> | 2024-08-27 18:46:55 +0000 |
commit | 41ea754510c8e73c029c6d49aa07c54b60ac2b12 (patch) | |
tree | b84357fdc669c486014b37718cc6144eebe450a4 /poi | |
parent | abf153d6a429a061870cc23636daa3740bd95cc8 (diff) | |
download | poi-41ea754510c8e73c029c6d49aa07c54b60ac2b12.tar.gz poi-41ea754510c8e73c029c6d49aa07c54b60ac2b12.zip |
update javadoc
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1920232 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi')
-rw-r--r-- | poi/src/main/java/org/apache/poi/ss/util/RegionUtil.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/poi/src/main/java/org/apache/poi/ss/util/RegionUtil.java b/poi/src/main/java/org/apache/poi/ss/util/RegionUtil.java index 65a552d1ee..b74ce41f61 100644 --- a/poi/src/main/java/org/apache/poi/ss/util/RegionUtil.java +++ b/poi/src/main/java/org/apache/poi/ss/util/RegionUtil.java @@ -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; |