Searched refs:frameName (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DFrameView.java405 private Object movePostData(JEditorPane targetPane, String frameName) { argument
409 if (frameName == null) {
410 frameName = (String) getElement().getAttributes().getAttribute(
413 if (frameName != null) {
414 String propName = FormView.PostDataProperty + "." + frameName;
H A DHTMLDocument.java707 String frameName = e.getTarget();
711 if (frameName.equals("_self")) {
717 } else if (frameName.equals("_parent")) {
726 Element targetElement = findFrame(frameName);
736 * that has its name attribute equal to the <code>frameName</code>.
738 * @param frameName
740 * <code>frameName</code>; returns <code>null</code>
743 private Element findFrame(String frameName) { argument
751 if (frameTarget != null && frameTarget.equals(frameName)) {

Completed in 41 milliseconds