本文整理汇总了Java中org.w3c.dom.html.HTMLCollection.getLength方法的典型用法代码示例。如果您正苦于以下问题:Java HTMLCollection.getLength方法的具体用法?Java HTMLCollection.getLength怎么用?Java HTMLCollection.getLength使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.w3c.dom.html.HTMLCollection
的用法示例。
在下文中一共展示了HTMLCollection.getLength方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getEffectiveUrl
import org.w3c.dom.html.HTMLCollection; //导入方法依赖的package包/类
private String getEffectiveUrl() throws IOException {
StringBuffer spec = new StringBuffer( getAction() );
if ("get".equalsIgnoreCase( getMethod() )) {
URLEncodedString parameters = new URLEncodedString();
HTMLCollection controls = getElements();
for (int i = 0; i < controls.getLength(); i++) {
((HTMLControl) controls.item( i )).addValues( parameters, "us-ascii" );
}
if ((spec.indexOf( "?" ) >= 0) && !(spec.toString().endsWith( "?" ))) {
spec.append( '&' );
} else {
spec.append( '?' );
}
spec.append( parameters.getString() );
}
return new URL( getDomWindow().getUrl(), spec.toString() ).toExternalForm();
}
示例2: getFormControls
import org.w3c.dom.html.HTMLCollection; //导入方法依赖的package包/类
/**
* Returns an array of form parameter attributes for this form.
**/
private FormControl[] getFormControls() {
HTMLCollection controlElements = _domElement.getElements();
FormControl[] controls = new FormControl[ controlElements.getLength() ];
for (int i = 0; i < controls.length; i++) {
controls[i] = getControlForNode( controlElements.item( i ) );
}
return controls;
}
示例3: get
import org.w3c.dom.html.HTMLCollection; //导入方法依赖的package包/类
public Object get( String propertyName, Scriptable scriptable ) {
HTMLCollection elements = getElements();
for (int i=0; i < elements.getLength(); i++) {
Node node = elements.item( i );
NamedNodeMap attributes = node.getAttributes();
AttrImpl nameAttribute = (AttrImpl) attributes.getNamedItem( "name" );
if (nameAttribute != null && propertyName.equals( nameAttribute.getValue() )) return node;
AttrImpl idAttribute = (AttrImpl) attributes.getNamedItem( "id" );
if (idAttribute != null && propertyName.equals( idAttribute.getValue() )) return node;
}
return super.get( propertyName, scriptable );
}
示例4: reset
import org.w3c.dom.html.HTMLCollection; //导入方法依赖的package包/类
public void reset() {
HTMLCollection elements = getElements();
for (int i = 0; i < elements.getLength(); i++) {
Node node = elements.item(i);
if (node instanceof HTMLControl) ((HTMLControl) node).reset();
}
}
示例5: getPreviousForm
import org.w3c.dom.html.HTMLCollection; //导入方法依赖的package包/类
private HTMLFormElement getPreviousForm( HTMLFormElement nextForm ) {
HTMLCollection forms = getHtmlDocument().getForms();
for (int i = 0; i < forms.getLength(); i++) {
if (nextForm == forms.item( i )) return i == 0 ? null : (HTMLFormElement) forms.item( i-1 );
}
return null;
}
示例6: getSelectedIndex
import org.w3c.dom.html.HTMLCollection; //导入方法依赖的package包/类
public int getSelectedIndex() {
HTMLCollection options = getOptions();
for (int i = 0; i < options.getLength(); i++) {
if (((HTMLOptionElement)options.item(i)).getSelected()) return i;
}
return isMultiSelect() ? -1 : 0;
}
示例7: getValue
import org.w3c.dom.html.HTMLCollection; //导入方法依赖的package包/类
public String getValue() {
HTMLCollection options = getOptions();
for (int i = 0; i < options.getLength(); i++) {
HTMLOptionElement optionElement = ((HTMLOptionElement)options.item(i));
if (optionElement.getSelected()) return optionElement.getValue();
}
return (isMultiSelect() || options.getLength() == 0) ? null : ((HTMLOptionElement)options.item(0)).getValue();
}
示例8: setSelectedIndex
import org.w3c.dom.html.HTMLCollection; //导入方法依赖的package包/类
public void setSelectedIndex( int selectedIndex ) {
HTMLCollection options = getOptions();
for (int i = 0; i < options.getLength(); i++) {
HTMLOptionElementImpl optionElement = (HTMLOptionElementImpl) options.item(i);
optionElement.setSelected( i == selectedIndex );
}
}
示例9: getIndexOf
import org.w3c.dom.html.HTMLCollection; //导入方法依赖的package包/类
int getIndexOf( HTMLOptionElementImpl option ) {
HTMLCollection options = getOptions();
for (int i = 0; i < options.getLength(); i++) {
if (options.item(i) == option) return i;
}
throw new IllegalStateException( "option is not part of this select" );
}
示例10: addValues
import org.w3c.dom.html.HTMLCollection; //导入方法依赖的package包/类
void addValues( ParameterProcessor processor, String characterSet ) throws IOException {
HTMLCollection options = getOptions();
String name = getName();
for (int i = 0; i < options.getLength();i++) {
((HTMLOptionElementImpl) options.item( i )).addValueIfSelected( processor, name, characterSet );
}
}
示例11: reset
import org.w3c.dom.html.HTMLCollection; //导入方法依赖的package包/类
public void reset() {
HTMLCollection options = getOptions();
for (int i = 0; i < options.getLength(); i++) {
HTMLControl optionElement = (HTMLControl) options.item(i);
optionElement.reset();
}
}
示例12: setChecked
import org.w3c.dom.html.HTMLCollection; //导入方法依赖的package包/类
public void setChecked( boolean checked ) {
if (checked) {
HTMLCollection elements = getForm().getElements();
for (int i = 0; i < elements.getLength(); i++) {
Node node = elements.item(i);
if (!(node instanceof HTMLInputElementImpl)) continue;
HTMLInputElementImpl input = (HTMLInputElementImpl) node;
if (getName().equals( input.getName() ) && input.getType().equalsIgnoreCase( "radio" )) input.setState( false );
}
}
setState( checked );
}
示例13: silenceSubmitButtons
import org.w3c.dom.html.HTMLCollection; //导入方法依赖的package包/类
private void silenceSubmitButtons() {
HTMLCollection controls = getElements();
for (int i = 0; i < controls.getLength(); i++) {
((HTMLControl) controls.item( i )).silenceSubmitButton();
}
}
示例14: getLastFormInDocument
import org.w3c.dom.html.HTMLCollection; //导入方法依赖的package包/类
private HTMLFormElement getLastFormInDocument() {
HTMLCollection forms = getHtmlDocument().getForms();
return forms.getLength() == 0 ? null : (HTMLFormElement) forms.item( forms.getLength()-1 );
}
示例15: getLength
import org.w3c.dom.html.HTMLCollection; //导入方法依赖的package包/类
public int getLength() {
final HTMLCollection frames = this.getFrames();
return frames == null ? 0 : frames.getLength();
}