本文整理汇总了Java中javax.faces.component.html.HtmlInputText类的典型用法代码示例。如果您正苦于以下问题:Java HtmlInputText类的具体用法?Java HtmlInputText怎么用?Java HtmlInputText使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
HtmlInputText类属于javax.faces.component.html包,在下文中一共展示了HtmlInputText类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: validate
import javax.faces.component.html.HtmlInputText; //导入依赖的package包/类
/**
* Validates if the user input and captchaInputField contain the same value
*
* @param context
* FacesContext for the request we are processing
* @param component
* UIComponent we are checking for correctness
* @param value
* the value to validate
* @throws ValidatorException
* if validation fails
*/
@Override
public void validate(final FacesContext context,
final UIComponent captchaInputField, final Object value)
throws ValidatorException {
String userInput = (String) value;
String captchaKey = (String) JSFUtils
.getSessionAttribute(Constants.CAPTCHA_KEY);
if (userInput != null && userInput.equals(captchaKey)) {
JSFUtils.setSessionAttribute(Constants.CAPTCHA_INPUT_STATUS,
Boolean.TRUE);
} else {
HtmlInputText htmlInputText = (HtmlInputText) captchaInputField;
htmlInputText.setValid(false);
JSFUtils.setSessionAttribute(Constants.CAPTCHA_INPUT_STATUS,
Boolean.FALSE);
htmlInputText.setValue("");
String text = JSFUtils.getText(BaseBean.ERROR_CAPTCHA,
(Object[]) null);
throw new ValidatorException(new FacesMessage(
FacesMessage.SEVERITY_ERROR, text, null));
}
}
示例2: setup
import javax.faces.component.html.HtmlInputText; //导入依赖的package包/类
@Before
public void setup() {
validator = new CaptchaValidator();
sessionMock = new HttpSessionStub(Locale.ENGLISH);
context = new FacesContextStub(Locale.ENGLISH) {
@Override
public ExternalContext getExternalContext() {
ExternalContext exContext = spy(new ExternalContextStub(
Locale.ENGLISH));
doReturn(sessionMock).when(exContext).getSession(false);
return exContext;
}
};
inputField = new HtmlInputText() {
@Override
public String getClientId(FacesContext ctx) {
return "";
}
};
}
示例3: testRIManyInputAttributes
import javax.faces.component.html.HtmlInputText; //导入依赖的package包/类
public void testRIManyInputAttributes() throws IOException
{
HtmlInputText out = new HtmlInputText();
out.setValue("Plain value");
out.setId("OutId");
out.setTitle("Title");
out.setStyleClass("Style Class");
out.setOnclick("on click");
out.setOnclick("on click");
out.setOndblclick("on dblclick");
out.setOnkeydown("on keydown");
out.setOnkeyup("on keyup");
out.setOnkeypress("on keypress ");
out.setOnmousedown("on mousedown");
out.setOnmousemove("on mousemove");
out.setOnmouseout("on mouseout ");
out.setOnmouseover("on mouseover ");
out.setOnmouseup("on mouseup ");
UIViewRoot root = createTestTree(out, "testRIManyInputAttributes()");
renderRoot(root);
root = createTestTree(out, "testRIManyInputAttributes() 2");
renderRoot(root);
}
示例4: testSimplePassThroughAttribute
import javax.faces.component.html.HtmlInputText; //导入依赖的package包/类
public void testSimplePassThroughAttribute() throws Exception
{
_responseWriter.startDocument();
HtmlInputText inputText = new HtmlInputText();
inputText.getPassThroughAttributes().put("data-test", "test");
_responseWriter.startElement("div", inputText);
_responseWriter.startElement("div", null);
_responseWriter.startElement("input", null);
_responseWriter.writeAttribute("name", "test", null);
_responseWriter.endElement("input");
_responseWriter.endElement("div");
_responseWriter.endElement("div");
_responseWriter.endDocument();
Assert.assertEquals("<?xml version='1.0' encoding='UTF-8'?>\n" +
"<partial-response id=\"j_id1\"><div data-test=\"test\"><div><input name=\"test\"/></div></div></partial-response>", _stringWriter.toString());
}
示例5: testValueExpressionPassThroughAttribute
import javax.faces.component.html.HtmlInputText; //导入依赖的package包/类
public void testValueExpressionPassThroughAttribute() throws Exception
{
externalContext.getRequestMap().put("test", Boolean.TRUE);
_responseWriter.startDocument();
HtmlInputText inputText = new HtmlInputText();
inputText.getPassThroughAttributes().put("data-test", new MockValueExpression("#{test}", Boolean.TYPE));
_responseWriter.startElement("div", inputText);
_responseWriter.startElement("div", null);
_responseWriter.startElement("input", null);
_responseWriter.writeAttribute("name", "test", null);
_responseWriter.endElement("input");
_responseWriter.endElement("div");
_responseWriter.endElement("div");
_responseWriter.endDocument();
Assert.assertEquals("<?xml version='1.0' encoding='UTF-8'?>\n" +
"<partial-response id=\"j_id1\"><div data-test=\"true\"><div><input name=\"test\"/></div></div></partial-response>", _stringWriter.toString());
}
示例6: testRendererLocalNamePassThroughAttribute
import javax.faces.component.html.HtmlInputText; //导入依赖的package包/类
public void testRendererLocalNamePassThroughAttribute() throws Exception
{
_responseWriter.startDocument();
HtmlInputText inputText = new HtmlInputText();
inputText.getPassThroughAttributes().put(Renderer.PASSTHROUGH_RENDERER_LOCALNAME_KEY, "test");
_responseWriter.startElement("div", inputText);
_responseWriter.startElement("div", null);
_responseWriter.startElement("input", null);
_responseWriter.writeAttribute("name", "test", null);
_responseWriter.endElement("input");
_responseWriter.endElement("div");
_responseWriter.endElement("div");
_responseWriter.endDocument();
Assert.assertEquals("<?xml version='1.0' encoding='UTF-8'?>\n" +
"<partial-response id=\"j_id1\"><test><div><input name=\"test\"/></div></test></partial-response>", _stringWriter.toString());
}
示例7: testValueExpressionPassThroughAttribute
import javax.faces.component.html.HtmlInputText; //导入依赖的package包/类
public void testValueExpressionPassThroughAttribute() throws Exception
{
externalContext.getRequestMap().put("test", Boolean.TRUE);
_responseWriter.startDocument();
HtmlInputText inputText = new HtmlInputText();
inputText.getPassThroughAttributes().put("data-test", new MockValueExpression("#{test}", Boolean.TYPE));
_responseWriter.startElement("div", inputText);
_responseWriter.startElement("div", null);
_responseWriter.startElement("input", null);
_responseWriter.writeAttribute("name", "test", null);
_responseWriter.endElement("input");
_responseWriter.endElement("div");
_responseWriter.endElement("div");
_responseWriter.endDocument();
Assert.assertEquals("<div data-test><div><input name=\"test\"></div></div>", _stringWriter.toString());
}
示例8: validate
import javax.faces.component.html.HtmlInputText; //导入依赖的package包/类
@Override
public void validate(FacesContext context, UIComponent uiComponent, Object value) throws ValidatorException {
Pattern pattern = Pattern.compile("\\[email protected]\\w+\\.\\w+");
Matcher matcher = pattern.matcher(
(CharSequence) value);
HtmlInputText htmlInputText
= (HtmlInputText) uiComponent;
String label;
if (htmlInputText.getLabel() == null
|| htmlInputText.getLabel().trim().equals("")) {
label = htmlInputText.getId();
} else {
label = htmlInputText.getLabel();
}
if (!matcher.matches()) {
FacesMessage facesMessage
= new FacesMessage(label
+ ": not a valid email address");
throw new ValidatorException(facesMessage);
}
}
示例9: keyUpListener
import javax.faces.component.html.HtmlInputText; //导入依赖的package包/类
/**
* Listener que escucha las peticiones del field codigo y llama al
* correspondiente {@link KeyListener} cuando un evento ocurre, si el
* correspondiente {@link KeyListener} no maneja el evento, se setea a null
* el objeto seleccionado
*
* @param event
*/
public void keyUpListener(final AjaxBehaviorEvent event) {
Object submitted = ((HtmlInputText) event.getSource())
.getSubmittedValue();
FacesContext fc = FacesContext.getCurrentInstance();
if (keyListener != null) {
boolean bool = keyListener.onBlur(this, event, submitted);
// Tratar cuadno se selecciona un valor nulo
if (!bool) {
getValueExpression().setValue(fc.getELContext(), null);
createFacesMessage(FacesMessage.SEVERITY_WARN,
COMPONENT_PICKER_INPUT_NOT_FOUND,
COMPONENT_PICKER_INPUT_NOT_FOUND);
}
}
}
示例10: unBind
import javax.faces.component.html.HtmlInputText; //导入依赖的package包/类
/**
* Triggered on the save event from the metadata editor.
* <p/>
* On this event, either HtmlSelectOneMenu input value or the HtmlInputText
* value is propagated to the parameter's singleValue (depending on the
* whether or not the user has selected the "Other" option).
* @param context the UI context
* @param editorForm the Faces HtmlForm for the metadata editor
* @param parameter the associated parameter
* @throws SchemaException if an associated Faces UIComponent cannot be located
*/
@Override
public void unBind(UiContext context,
UIComponent editorForm,
Parameter parameter)
throws SchemaException {
UIInput menu = findInputComponent(context,editorForm);
UIInput text = getOtherComponent().findInputComponent(context,editorForm);
String sMenuValue = getInputValue(menu);
String sTextValue = Val.chkStr(getInputValue(text));
text.setValue(sTextValue);
if (sMenuValue.equalsIgnoreCase(getOtherCodeKey())) {
parameter.getContent().getSingleValue().setValue(sTextValue);
if (text instanceof HtmlInputText) {
((HtmlInputText)text).setStyle("visibility:visible;");
}
} else {
parameter.getContent().getSingleValue().setValue(sMenuValue);
if (text instanceof HtmlInputText) {
((HtmlInputText)text).setStyle("visibility:hidden;");
}
}
}
示例11: testWithoutPassThroughAttribute
import javax.faces.component.html.HtmlInputText; //导入依赖的package包/类
public void testWithoutPassThroughAttribute() throws Exception
{
_responseWriter.startDocument();
HtmlInputText inputText = new HtmlInputText();
_responseWriter.startElement("div", inputText);
_responseWriter.startElement("div", null);
_responseWriter.startElement("input", null);
_responseWriter.writeAttribute("name", "test", null);
_responseWriter.endElement("input");
_responseWriter.endElement("div");
_responseWriter.endElement("div");
_responseWriter.endDocument();
Assert.assertEquals("<?xml version='1.0' encoding='UTF-8'?>\n" +
"<partial-response id=\"j_id1\"><div><div><input name=\"test\"/></div></div></partial-response>", _stringWriter.toString());
}
示例12: testWithoutPassThroughAttribute
import javax.faces.component.html.HtmlInputText; //导入依赖的package包/类
public void testWithoutPassThroughAttribute() throws Exception
{
_responseWriter.startDocument();
HtmlInputText inputText = new HtmlInputText();
_responseWriter.startElement("div", inputText);
_responseWriter.startElement("div", null);
_responseWriter.startElement("input", null);
_responseWriter.writeAttribute("name", "test", null);
_responseWriter.endElement("input");
_responseWriter.endElement("div");
_responseWriter.endElement("div");
_responseWriter.endDocument();
Assert.assertEquals("<div><div><input name=\"test\"></div></div>", _stringWriter.toString());
}
示例13: testSimplePassThroughAttribute
import javax.faces.component.html.HtmlInputText; //导入依赖的package包/类
public void testSimplePassThroughAttribute() throws Exception
{
_responseWriter.startDocument();
HtmlInputText inputText = new HtmlInputText();
inputText.getPassThroughAttributes().put("data-test", "test");
_responseWriter.startElement("div", inputText);
_responseWriter.startElement("div", null);
_responseWriter.startElement("input", null);
_responseWriter.writeAttribute("name", "test", null);
_responseWriter.endElement("input");
_responseWriter.endElement("div");
_responseWriter.endElement("div");
_responseWriter.endDocument();
Assert.assertEquals("<div data-test=\"test\"><div><input name=\"test\"></div></div>", _stringWriter.toString());
}
示例14: testRendererLocalNamePassThroughAttribute
import javax.faces.component.html.HtmlInputText; //导入依赖的package包/类
public void testRendererLocalNamePassThroughAttribute() throws Exception
{
_responseWriter.startDocument();
HtmlInputText inputText = new HtmlInputText();
inputText.getPassThroughAttributes().put(Renderer.PASSTHROUGH_RENDERER_LOCALNAME_KEY, "test");
_responseWriter.startElement("div", inputText);
_responseWriter.startElement("div", null);
_responseWriter.startElement("input", null);
_responseWriter.writeAttribute("name", "test", null);
_responseWriter.endElement("input");
_responseWriter.endElement("div");
_responseWriter.endElement("div");
_responseWriter.endDocument();
Assert.assertEquals("<test><div><input name=\"test\"></div></test>", _stringWriter.toString());
}
示例15: validarForm
import javax.faces.component.html.HtmlInputText; //导入依赖的package包/类
public boolean validarForm(HtmlInputText inputText,Object d){
if(!d.toString().isEmpty())
{
inputText.setStyle("border:1px #ddd solid");
return true;
}
else
{
inputText.setStyle("border-color:red");
return false;
}
}