001
014
015 package com.liferay.portal.lar;
016
017
022 @Deprecated
023 public class PortletDataHandlerBoolean
024 extends com.liferay.portal.kernel.lar.PortletDataHandlerBoolean {
025
026 public PortletDataHandlerBoolean(String namespace, String controlName) {
027 super(namespace, controlName);
028 }
029
030 public PortletDataHandlerBoolean(
031 String namespace, String controlName, boolean defaultState) {
032
033 super(namespace, controlName, defaultState);
034 }
035
036 public PortletDataHandlerBoolean(
037 String namespace, String controlName, boolean defaultState,
038 boolean disabled) {
039
040 super(namespace, controlName, defaultState, disabled);
041 }
042
043 public PortletDataHandlerBoolean(
044 String namespace, String controlName, boolean defaultState,
045 boolean disabled, PortletDataHandlerControl[] children) {
046
047 super(namespace, controlName, defaultState, disabled, children);
048 }
049
050 public PortletDataHandlerBoolean(
051 String namespace, String controlName, boolean defaultState,
052 PortletDataHandlerControl[] children) {
053
054 super(namespace, controlName, defaultState, children);
055 }
056
057 }