Searched defs:content (Results 1 - 25 of 169) sorted by relevance

1234567

/openjdk7/jdk/test/java/awt/Container/CheckZOrderChange/
H A DCheckZOrderChange.java36 private static Button content[] = new Button[]{new Button("Button 1"), new Button("Button 2"), new Button("Button 3"), new Button("Button 4")}; field in class:CheckZOrderChange
44 for (Button b: content){
52 for (Button b: content){
57 frame.setComponentZOrder(content[0], 2);
60 if (frame.getComponentZOrder(content[0]) != 2 ||
61 frame.getComponentZOrder(content[1]) != 0 ||
62 frame.getComponentZOrder(content[2]) != 1 ||
63 frame.getComponentZOrder(content[3]) != 3)
65 for (Button b: content){
/openjdk7/jdk/test/java/net/URLConnection/contentHandler/COM/foo/content/text/
H A Dplain.java28 * This class provides an example of a a replacement content handler for
29 * the text/plain content type. It reads the content of the URL, and prepends
33 * 1) the package must end in the major type of the content type (such as
35 * 2) the class name must be named with the subtype of the content type (for
36 * content type "text/plain", this would be "plain" as in this example; for
37 * content type "image/gif", the class name would be "gif", and the package
42 package COM.foo.content.text;
56 * Bring up the "Save to disk" dialog page to allow the content
61 * Go to a new page with the string as the plain text content
[all...]
/openjdk7/jdk/src/share/classes/sun/net/www/content/text/
H A DGeneric.java29 package sun.net.www.content.text;
H A DPlainTextInputStream.java26 package sun.net.www.content.text;
H A Dplain.java30 package sun.net.www.content.text;
/openjdk7/jaxp/src/org/w3c/dom/
H A DText.java46 * and represents the textual content (termed <a href='http://www.w3.org/TR/2004/REC-xml-20040204#syntax'>character data</a> in XML) of an <code>Element</code> or <code>Attr</code>. If there is no
47 * markup inside an element's content, the text is contained in a single
60 * <p> No lexical check is done on the content of a <code>Text</code> node
63 * characters "&lt;&amp;" if the textual content is part of an element or of
73 * will contain all the content up to the <code>offset</code> point. A
74 * new node of the same type, which contains all the content at and
92 * element content whitespace</a>, often abusively called "ignorable whitespace". The text node is
93 * determined to contain whitespace in element content during the load
162 * textual content of barTextNode with "yo"</em>
177 * @param content Th
184 replaceWholeText(String content) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/content/
H A DKeyInfoContent.java21 package com.sun.org.apache.xml.internal.security.keys.content;
/openjdk7/jdk/src/share/classes/sun/net/www/content/audio/
H A Daiff.java30 package sun.net.www.content.audio;
H A Dbasic.java30 package sun.net.www.content.audio;
H A Dwav.java30 package sun.net.www.content.audio;
H A Dx_aiff.java30 package sun.net.www.content.audio;
H A Dx_wav.java30 package sun.net.www.content.audio;
/openjdk7/jdk/src/share/classes/sun/net/www/content/image/
H A Dgif.java26 package sun.net.www.content.image;
H A Djpeg.java26 package sun.net.www.content.image;
H A Dpng.java26 package sun.net.www.content.image;
H A Dx_xbitmap.java26 package sun.net.www.content.image;
H A Dx_xpixmap.java26 package sun.net.www.content.image;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/
H A DDatatypeValidator.java39 * @param content the string value that needs to be validated
42 public void validate(String content, ValidationContext context) argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/dtd/
H A DENTITYDatatypeValidator.java52 * Checks that "content" string is valid ID value.
55 * @param content the string value that needs to be validated
57 * @throws InvalidDatatypeException if the content is
61 public void validate(String content, ValidationContext context) throws InvalidDatatypeValueException { argument
63 if (!context.isEntityUnparsed(content))
64 throw new InvalidDatatypeValueException("ENTITYNotUnparsed", new Object[]{content});
H A DIDDatatypeValidator.java54 * Checks that "content" string is valid ID value.
57 * @param content the string value that needs to be validated
59 * @throws InvalidDatatypeException if the content is
63 public void validate(String content, ValidationContext context) throws InvalidDatatypeValueException { argument
67 if (!XMLChar.isValidNCName(content)) {
68 throw new InvalidDatatypeValueException("IDInvalidWithNamespaces", new Object[]{content});
72 if (!XMLChar.isValidName(content)) {
73 throw new InvalidDatatypeValueException("IDInvalid", new Object[]{content});
77 if (context.isIdDeclared(content)) {
78 throw new InvalidDatatypeValueException("IDNotUnique", new Object[]{content});
[all...]
H A DIDREFDatatypeValidator.java51 * Checks that "content" string is valid IDREF value.
54 * @param content the string value that needs to be validated
56 * @throws InvalidDatatypeException if the content is
60 public void validate(String content, ValidationContext context) throws InvalidDatatypeValueException { argument
64 if (!XMLChar.isValidNCName(content)) {
65 throw new InvalidDatatypeValueException("IDREFInvalidWithNamespaces", new Object[]{content});
69 if (!XMLChar.isValidName(content)) {
70 throw new InvalidDatatypeValueException("IDREFInvalid", new Object[]{content});
74 context.addIdRef(content);
H A DListDatatypeValidator.java46 * Checks that "content" string is valid.
49 * @param content the string value that needs to be validated
51 * @throws InvalidDatatypeException if the content is
55 public void validate(String content, ValidationContext context) throws InvalidDatatypeValueException { argument
57 StringTokenizer parsedList = new StringTokenizer(content," ");
H A DNMTOKENDatatypeValidator.java42 * Checks that "content" string is valid NMTOKEN value.
45 * @param content the string value that needs to be validated
47 * @throws InvalidDatatypeException if the content is
51 public void validate(String content, ValidationContext context) throws InvalidDatatypeValueException { argument
52 if (!XMLChar.isValidNmtoken(content)) {
53 throw new InvalidDatatypeValueException("NMTOKENInvalid", new Object[]{content});
H A DNOTATIONDatatypeValidator.java43 * Checks that "content" string is valid NOTATION value.
46 * @param content the string value that needs to be validated
48 * @throws InvalidDatatypeException if the content is
52 public void validate(String content, ValidationContext context) throws InvalidDatatypeValueException { argument
H A DStringDatatypeValidator.java26 * <P>StringValidator validates that XML content is a W3C string type.</P>
48 * Checks that "content" string is valid string value.
51 * @param content the string value that needs to be validated
53 * @throws InvalidDatatypeException if the content is
57 public void validate(String content, ValidationContext context) throws InvalidDatatypeValueException { argument

Completed in 113 milliseconds

1234567