Imported GNU Classpath 0.90
Imported GNU Classpath 0.90
* scripts/makemake.tcl: LocaleData.java moved to gnu/java/locale.
* sources.am: Regenerated.
* gcj/javaprims.h: Regenerated.
* Makefile.in: Regenerated.
* gcj/Makefile.in: Regenerated.
* include/Makefile.in: Regenerated.
* testsuite/Makefile.in: Regenerated.
* gnu/java/lang/VMInstrumentationImpl.java: New override.
* gnu/java/net/local/LocalSocketImpl.java: Likewise.
* gnu/classpath/jdwp/VMMethod.java: Likewise.
* gnu/classpath/jdwp/VMVirtualMachine.java: Update to latest
interface.
* java/lang/Thread.java: Add UncaughtExceptionHandler.
* java/lang/reflect/Method.java: Implements GenericDeclaration and
isSynthetic(),
* java/lang/reflect/Field.java: Likewise.
* java/lang/reflect/Constructor.java
* java/lang/Class.java: Implements Type, GenericDeclaration,
getSimpleName() and getEnclosing*() methods.
* java/lang/Class.h: Add new public methods.
* java/lang/Math.java: Add signum(), ulp() and log10().
* java/lang/natMath.cc (log10): New function.
* java/security/VMSecureRandom.java: New override.
* java/util/logging/Logger.java: Updated to latest classpath
version.
* java/util/logging/LogManager.java: New override.
From-SVN: r113887
This commit is contained in:
@@ -65,6 +65,26 @@ public class DomHTMLAppletElement
|
||||
setHTMLAttribute("align", align);
|
||||
}
|
||||
|
||||
public String getCls()
|
||||
{
|
||||
return getHTMLAttribute("class");
|
||||
}
|
||||
|
||||
public void setCls(String cls)
|
||||
{
|
||||
setHTMLAttribute("class", cls);
|
||||
}
|
||||
|
||||
public String getSrc()
|
||||
{
|
||||
return getHTMLAttribute("src");
|
||||
}
|
||||
|
||||
public void setSrc(String src)
|
||||
{
|
||||
setHTMLAttribute("src", src);
|
||||
}
|
||||
|
||||
public String getAlt()
|
||||
{
|
||||
return getHTMLAttribute("alt");
|
||||
@@ -164,6 +184,5 @@ public class DomHTMLAppletElement
|
||||
{
|
||||
setHTMLAttribute("width", width);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -87,6 +87,7 @@ public class DomHTMLDocument
|
||||
map.put("dir", DomHTMLDirectoryElement.class);
|
||||
map.put("div", DomHTMLDivElement.class);
|
||||
map.put("dlist", DomHTMLDListElement.class);
|
||||
map.put("embed", DomHTMLEmbedElement.class);
|
||||
map.put("fieldset", DomHTMLFieldSetElement.class);
|
||||
map.put("font", DomHTMLFontElement.class);
|
||||
map.put("form", DomHTMLFormElement.class);
|
||||
@@ -311,6 +312,7 @@ public class DomHTMLDocument
|
||||
public HTMLCollection getApplets()
|
||||
{
|
||||
DomHTMLCollection ret = new DomHTMLCollection(this, this);
|
||||
ret.addNodeName("embed");
|
||||
ret.addNodeName("object");
|
||||
ret.addNodeName("applet");
|
||||
ret.evaluate();
|
||||
|
||||
@@ -0,0 +1,129 @@
|
||||
/* DomHTMLEmbedElement.java --
|
||||
Copyright (C) 2006 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
GNU Classpath is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2, or (at your option)
|
||||
any later version.
|
||||
|
||||
GNU Classpath 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
|
||||
General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with GNU Classpath; see the file COPYING. If not, write to the
|
||||
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
02110-1301 USA.
|
||||
|
||||
Linking this library statically or dynamically with other modules is
|
||||
making a combined work based on this library. Thus, the terms and
|
||||
conditions of the GNU General Public License cover the whole
|
||||
combination.
|
||||
|
||||
As a special exception, the copyright holders of this library give you
|
||||
permission to link this library with independent modules to produce an
|
||||
executable, regardless of the license terms of these independent
|
||||
modules, and to copy and distribute the resulting executable under
|
||||
terms of your choice, provided that you also meet, for each linked
|
||||
independent module, the terms and conditions of the license of that
|
||||
module. An independent module is a module which is not derived from
|
||||
or based on this library. If you modify this library, you may extend
|
||||
this exception to your version of the library, but you are not
|
||||
obligated to do so. If you do not wish to do so, delete this
|
||||
exception statement from your version. */
|
||||
|
||||
|
||||
package gnu.xml.dom.html2;
|
||||
|
||||
public class DomHTMLEmbedElement
|
||||
extends DomHTMLAppletElement
|
||||
{
|
||||
protected DomHTMLEmbedElement(DomHTMLDocument owner, String namespaceURI,
|
||||
String name)
|
||||
{
|
||||
super(owner, namespaceURI, name);
|
||||
}
|
||||
|
||||
public String getJavaObject()
|
||||
{
|
||||
return getHTMLAttribute("java_object");
|
||||
}
|
||||
|
||||
public void setJavaObject(String object)
|
||||
{
|
||||
setHTMLAttribute("java_object", object);
|
||||
}
|
||||
|
||||
public String getJavaCodeBase()
|
||||
{
|
||||
return getHTMLAttribute("java_codebase");
|
||||
}
|
||||
|
||||
public void setJavaCodeBase(String codeBase)
|
||||
{
|
||||
setHTMLAttribute("java_codebase", codeBase);
|
||||
}
|
||||
|
||||
public String getJavaArchive()
|
||||
{
|
||||
return getHTMLAttribute("java_archive");
|
||||
}
|
||||
|
||||
public void setJavaArchive(String archive)
|
||||
{
|
||||
setHTMLAttribute("java_archive", archive);
|
||||
}
|
||||
|
||||
public void setJavaCode(String code)
|
||||
{
|
||||
setHTMLAttribute("java_code", code);
|
||||
}
|
||||
|
||||
public String getJavaCode()
|
||||
{
|
||||
return getHTMLAttribute("java_code");
|
||||
}
|
||||
|
||||
public void setJavaType(String type)
|
||||
{
|
||||
setHTMLAttribute("java_type", type);
|
||||
}
|
||||
|
||||
public String getJavaType()
|
||||
{
|
||||
return getHTMLAttribute("java_type");
|
||||
}
|
||||
|
||||
public void setType(String type)
|
||||
{
|
||||
setHTMLAttribute("type", type);
|
||||
}
|
||||
|
||||
public String getType()
|
||||
{
|
||||
return getHTMLAttribute("type");
|
||||
}
|
||||
|
||||
public String getPluginsPage()
|
||||
{
|
||||
return getHTMLAttribute("pluginspage");
|
||||
}
|
||||
|
||||
public void setPluginsPage(String pluginspage)
|
||||
{
|
||||
setHTMLAttribute("pluginspage", pluginspage);
|
||||
}
|
||||
|
||||
public String getMayscript()
|
||||
{
|
||||
return getHTMLAttribute("mayscript");
|
||||
}
|
||||
|
||||
public void setMayscript(String mayscript)
|
||||
{
|
||||
setHTMLAttribute("mayscript", mayscript);
|
||||
}
|
||||
}
|
||||
@@ -72,6 +72,36 @@ public class DomHTMLObjectElement
|
||||
setHTMLAttribute("code", code);
|
||||
}
|
||||
|
||||
public String getJavaCode()
|
||||
{
|
||||
return getHTMLAttribute("java_code");
|
||||
}
|
||||
|
||||
public void setJavaCode(String code)
|
||||
{
|
||||
setHTMLAttribute("java_code", code);
|
||||
}
|
||||
|
||||
public String getObject()
|
||||
{
|
||||
return getHTMLAttribute("object");
|
||||
}
|
||||
|
||||
public void setObject(String obj)
|
||||
{
|
||||
setHTMLAttribute("object", obj);
|
||||
}
|
||||
|
||||
public String getJavaObject()
|
||||
{
|
||||
return getHTMLAttribute("java_object");
|
||||
}
|
||||
|
||||
public void setJavaObject(String obj)
|
||||
{
|
||||
setHTMLAttribute("java_object", obj);
|
||||
}
|
||||
|
||||
public String getAlign()
|
||||
{
|
||||
return getHTMLAttribute("align");
|
||||
@@ -92,6 +122,16 @@ public class DomHTMLObjectElement
|
||||
setHTMLAttribute("archive", archive);
|
||||
}
|
||||
|
||||
public String getJavaArchive()
|
||||
{
|
||||
return getHTMLAttribute("java_archive");
|
||||
}
|
||||
|
||||
public void setJavaArchive(String archive)
|
||||
{
|
||||
setHTMLAttribute("java_archive", archive);
|
||||
}
|
||||
|
||||
public String getBorder()
|
||||
{
|
||||
return getHTMLAttribute("border");
|
||||
@@ -112,6 +152,16 @@ public class DomHTMLObjectElement
|
||||
setHTMLAttribute("codebase", codeBase);
|
||||
}
|
||||
|
||||
public String getJavaCodeBase()
|
||||
{
|
||||
return getHTMLAttribute("java_codebase");
|
||||
}
|
||||
|
||||
public void setJavaCodeBase(String codeBase)
|
||||
{
|
||||
setHTMLAttribute("java_codebase", codeBase);
|
||||
}
|
||||
|
||||
public String getCodeType()
|
||||
{
|
||||
return getHTMLAttribute("codetype");
|
||||
@@ -202,6 +252,16 @@ public class DomHTMLObjectElement
|
||||
setHTMLAttribute("type", type);
|
||||
}
|
||||
|
||||
public String getJavaType()
|
||||
{
|
||||
return getHTMLAttribute("java_type");
|
||||
}
|
||||
|
||||
public void setJavaType(String type)
|
||||
{
|
||||
setHTMLAttribute("java_type", type);
|
||||
}
|
||||
|
||||
public String getUseMap()
|
||||
{
|
||||
return getHTMLAttribute("usemap");
|
||||
@@ -238,5 +298,24 @@ public class DomHTMLObjectElement
|
||||
return null;
|
||||
}
|
||||
|
||||
public void setMayscript(String may)
|
||||
{
|
||||
setHTMLAttribute("mayscript", may);
|
||||
}
|
||||
|
||||
public String getMayscript()
|
||||
{
|
||||
return getHTMLAttribute("mayscript");
|
||||
}
|
||||
|
||||
public void setScriptable(String scr)
|
||||
{
|
||||
setHTMLAttribute("scriptable", scr);
|
||||
}
|
||||
|
||||
public String getScriptable()
|
||||
{
|
||||
return getHTMLAttribute("scriptable");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -124,9 +124,11 @@ public class DomHTMLParser
|
||||
try
|
||||
{
|
||||
document = new DomHTMLDocument();
|
||||
|
||||
document.setCheckWellformedness(false);
|
||||
document.setCheckingCharacters(false);
|
||||
|
||||
cursor = document;
|
||||
|
||||
|
||||
parse(input);
|
||||
|
||||
DomHTMLDocument h = document;
|
||||
@@ -224,7 +226,6 @@ public class DomHTMLParser
|
||||
open.addFirst(close);
|
||||
close = close.getParentNode();
|
||||
}
|
||||
|
||||
if (close == null)
|
||||
cursor = document;
|
||||
else
|
||||
@@ -235,9 +236,8 @@ public class DomHTMLParser
|
||||
while (iter.hasNext())
|
||||
{
|
||||
Node item = (Node) iter.next();
|
||||
Node copy = item.cloneNode(true);
|
||||
cursor.appendChild(copy);
|
||||
cursor = copy;
|
||||
cursor.appendChild(item);
|
||||
cursor = item;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user