org.richfaces.component.AbstractInplaceInput Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source
* Copyright 2010, Red Hat, Inc. and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.richfaces.component;
import javax.faces.component.UIInput;
import org.richfaces.cdk.annotations.Attribute;
import org.richfaces.cdk.annotations.EventName;
import org.richfaces.cdk.annotations.JsfComponent;
import org.richfaces.cdk.annotations.JsfRenderer;
import org.richfaces.cdk.annotations.Tag;
/**
* @author Anton Belevich
*
*/
@JsfComponent(
type = AbstractInplaceInput.COMPONENT_TYPE,
family = AbstractInplaceInput.COMPONENT_FAMILY,
generate = "org.richfaces.component.UIInplaceInput",
renderer = @JsfRenderer(type = "org.richfaces.InplaceInputRenderer"),
tag = @Tag(name="inplaceInput")
)
public abstract class AbstractInplaceInput extends UIInput {
public static final String COMPONENT_TYPE = "org.richfaces.InplaceInput";
public static final String COMPONENT_FAMILY = "org.richfaces.InplaceInput";
@Attribute
public abstract String getDefaultLabel();
@Attribute(defaultValue="InplaceState.ready")
public abstract InplaceState getState();
@Attribute(defaultValue="click")
public abstract String getEditEvent();
@Attribute(defaultValue="false")
public abstract boolean isShowControls();
@Attribute(defaultValue="100%")
public abstract String getInputWidth();
@Attribute
public abstract String getTabIndex();
@Attribute(events=@EventName("blur"))
public abstract String getOnblur();
@Attribute(events=@EventName("click"))
public abstract String getOnclick();
@Attribute(events=@EventName("ondblclick"))
public abstract String getOndblclick();
@Attribute(events=@EventName("focus"))
public abstract String getOnfocus();
@Attribute(events=@EventName("keydown"))
public abstract String getOnkeydown();
@Attribute(events=@EventName("keypress"))
public abstract String getOnkeypress();
@Attribute(events=@EventName("keyup"))
public abstract String getOnkeypup();
@Attribute(events=@EventName("mousedown"))
public abstract String getOnmousedown();
@Attribute(events=@EventName("mousemove"))
public abstract String getOnmousemove();
@Attribute(events=@EventName("mouseout"))
public abstract String getOnmouseout();
@Attribute(events=@EventName("mouseover"))
public abstract String getOnmouseover();
@Attribute(events=@EventName("mouseup"))
public abstract String getOnmouseup();
@Attribute(events=@EventName("inputClick"))
public abstract String getOnInputClick();
@Attribute(events=@EventName("inputDblclick"))
public abstract String getOnInputDblclick();
@Attribute(events=@EventName("inputMousedown"))
public abstract String getOnInputMousedown();
@Attribute(events=@EventName("inputMousemove"))
public abstract String getOnInputMousemove();
@Attribute(events=@EventName("inputMouseout"))
public abstract String getOnInputMouseout();
@Attribute(events=@EventName("inputMouseover"))
public abstract String getOnInputMouseover();
@Attribute(events=@EventName("inputMouseup"))
public abstract String getOnInputMouseup();
@Attribute(events=@EventName("inputKeydown"))
public abstract String getOnInputKeydown();
@Attribute(events=@EventName("inputKeypress"))
public abstract String getOnInputKeypress();
@Attribute(events=@EventName("oninputKeyup"))
public abstract String getOnInputKeypup();
@Attribute(events=@EventName("inputFocus"))
public abstract String getOnInputFocus();
@Attribute(events=@EventName("inputBlur"))
public abstract String getOnInputBlur();
@Attribute(events=@EventName("select"))
public abstract String getOnselect();
@Attribute(events=@EventName("change"))
public abstract String getOnchange();
//TODO: what is default event?, add onViewActivated, onEditActivated events support
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy