Removed API"

From Documentation
Line 1: Line 1:
 
= Removed API =
 
= Removed API =
 
Here are APIs removed since ZK 10.
 
Here are APIs removed since ZK 10.
 
{| class="wikitable"
 
! Full Qualified Class Name !! Attribute or Method !! Info
 
|-
 
| org.zkoss.lang.Objects || PATH_SEPARATOR_CHAR || @deprecated As of release 6.0.0, never used and confusing.
 
|-
 
| org.zkoss.lang.Objects || PATH_SEPARATOR_STRING || @deprecated As of release 6.0.0, never used and confusing.
 
|-
 
| org.zkoss.lang.Objects || BAR0_STRING || @deprecated As of release 6.0.0, not worth to have this API.
 
|-
 
| org.zkoss.lang.Objects || BAR1_STRING || @deprecated As of release 6.0.0, not worth to have this API.
 
|-
 
| org.zkoss.lang.Objects || BAR2_STRING || @deprecated As of release 6.0.0, use BigDecimal.toPlainString() directly (since we don't support JDK 1.4 anymore).
 
|-
 
| org.zkoss.math.BigDecimals || toPlainString(BigDecimal bd) || @deprecated As of release 6.0.0, replaced with {@link #duplicate(Object)}.
 
|-
 
| org.zkoss.util.ArraysX || clone(Object ary) || @deprecated As of release 6.0.0, replaced with {@link #parseMultiple}.
 
|-
 
| org.zkoss.util.Maps || parse(Map map, String src, char separator, char quotechar) || @deprecated As of release 6.0.0, replaced with {@link #parse(Map, String, char, char, boolean, boolean)} and {@link #parseMultiple}.
 
|-
 
| org.zkoss.util.logging.Log || * || @deprecated As of release 7.0.0, use SLF4J API for logging instead.
 
|-
 
| org.zkoss.xml.HTMLs || * || @deprecated As of release 6.0.0, replaced with {@link org.zkoss.html.HTMLs}.
 
|-
 
| org.zkoss.zel.MethodExpression || isParametersProvided() || @deprecated As of release 7.0.0, replaced with {@link #isParametersProvided()}.
 
|-
 
| org.zkoss.zel.parser.SimpleCharStream || getColumn() || @deprecated
 
|-
 
| org.zkoss.zel.parser.SimpleCharStream || getLine() || @deprecated
 
|-
 
| org.zkoss.zel.parser.SimpleCharStream || getEndColumn() || @deprecated
 
|-
 
| org.zkoss.zel.parser.SimpleCharStream || getEndLine() || @deprecated
 
|-
 
| org.zkoss.zhtml.Area || getHreflang() || @deprecated Not supported in HTML5.
 
|-
 
| org.zkoss.zhtml.Html || getManifest() || @deprecated Not supported in HTML5.
 
|-
 
| org.zkoss.zhtml.Img || getLongdesc() || @deprecated Not supported in HTML5.
 
|-
 
| org.zkoss.zhtml.Style || getType() || @deprecated As of release 6.0.0, replaced with {@link #setContentType(String)}.
 
|-
 
| org.zkoss.zk.au.out.AuRemove || * || @deprecated As of release 6.0.0, replaced with {@link #AuRemove(String)}.
 
|-
 
| org.zkoss.zk.fn.ZkFns || $f(String id) || @deprecated since 9.6.0.
 
|-
 
| org.zkoss.zk.scripting.HierarchicalAware || setWidgetAttribute(String name, String value) || @deprecated Since 9.5.0. Use {@link #setWidgetAttribute(String, String)} instead.
 
|}
 
  
  

Revision as of 03:33, 27 February 2024

Removed API

Here are APIs removed since ZK 10.


Full Qualified Class Name Attribute or Method Info
org.zkoss.lang.Objects PATH_SEPARATOR_CHAR @deprecated As of release 6.0.0, never used and confusing.
org.zkoss.lang.Objects PATH_SEPARATOR_STRING @deprecated As of release 6.0.0, never used and confusing.
org.zkoss.lang.Objects BAR0_STRING @deprecated As of release 6.0.0, not worth to have this API.
org.zkoss.lang.Objects BAR1_STRING @deprecated As of release 6.0.0, not worth to have this API.
org.zkoss.lang.Objects BAR2_STRING @deprecated As of release 6.0.0, use BigDecimal.toPlainString() directly (since we don't support JDK 1.4 anymore).
org.zkoss.math.BigDecimals toPlainString(BigDecimal bd) @deprecated As of release 6.0.0, replaced with {@link #duplicate(Object)}.
org.zkoss.util.ArraysX clone(Object ary) @deprecated As of release 6.0.0, replaced with {@link #parseMultiple}.
org.zkoss.util.Maps parse(Map map, String src, char separator, char quotechar) @deprecated As of release 7.0.0, use SLF4J API for logging instead.
org.zkoss.util.logging.Log * @deprecated As of release 7.0.0, use SLF4J API for logging instead.
org.zkoss.xml.HTMLs * @deprecated As of release 6.0.0, replaced with {@link org.zkoss.html.HTMLs}.
org.zkoss.zel.MethodExpression isParametersProvided() @deprecated Use {@link #isParametersProvided()}.
org.zkoss.zel.impl.parser.SimpleCharStream getColumn() @deprecated
org.zkoss.zel.impl.parser.SimpleCharStream getLine() @deprecated
org.zkoss.zel.impl.parser.SimpleCharStream getEndColumn() @deprecated
org.zkoss.zel.impl.parser.SimpleCharStream getEndLine() @deprecated
org.zkoss.zhtml.Area getHreflang() @deprecated Not supported in HTML5.
org.zkoss.zhtml.Html getManifest() @deprecated Not supported in HTML5.
org.zkoss.zhtml.Img getLongdesc() @deprecated Not supported in HTML5.
org.zkoss.zhtml.Style getType() @deprecated
org.zkoss.zhtml.Style setType(String type) @deprecated
org.zkoss.zhtml.Html setTabindex(Integer tabindex) @deprecated

|}