com.svenjacobs.gwtbootstrap3.client.ui.base.AbstractListItem Maven / Gradle / Ivy
package com.svenjacobs.gwtbootstrap3.client.ui.base;
/*
* #%L
* GwtBootstrap3
* %%
* Copyright (C) 2013 Sven Jacobs
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
import com.google.gwt.user.client.DOM;
import com.google.gwt.user.client.ui.ComplexPanel;
import com.google.gwt.user.client.ui.HasEnabled;
import com.svenjacobs.gwtbootstrap3.client.ui.HasActive;
import com.svenjacobs.gwtbootstrap3.client.ui.HasPull;
import com.svenjacobs.gwtbootstrap3.client.ui.base.helper.StyleHelper;
import com.svenjacobs.gwtbootstrap3.client.ui.base.mixin.ActiveMixin;
import com.svenjacobs.gwtbootstrap3.client.ui.base.mixin.PullMixin;
import com.svenjacobs.gwtbootstrap3.client.ui.constants.Pull;
import com.svenjacobs.gwtbootstrap3.client.ui.constants.Styles;
/**
* Base class for list items.
*
* @author Sven Jacobs
* @see com.svenjacobs.gwtbootstrap3.client.ui.ListItem
* @see com.svenjacobs.gwtbootstrap3.client.ui.ListDropDown
*/
public abstract class AbstractListItem extends ComplexPanel implements HasEnabled, HasPull, HasActive {
private final ActiveMixin activeMixin = new ActiveMixin(this);
private final PullMixin pullMixin = new PullMixin(this);
protected AbstractListItem() {
setElement(DOM.createElement("li"));
}
@Override
public void setEnabled(final boolean enabled) {
if (enabled) {
removeStyleName(Styles.DISABLED);
} else {
addStyleName(Styles.DISABLED);
}
}
@Override
public boolean isEnabled() {
return !StyleHelper.containsStyle(getStyleName(), Styles.DISABLED);
}
@Override
public void setPull(final Pull pull) {
pullMixin.setPull(pull);
}
@Override
public Pull getPull() {
return pullMixin.getPull();
}
@Override
public void setActive(final boolean active) {
activeMixin.setActive(active);
}
@Override
public boolean isActive() {
return activeMixin.isActive();
}
}