/openjdk7/jdk/test/java/awt/Container/CheckZOrderChange/ |
H A D | CheckZOrderChange.java | 36 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 D | plain.java | 28 * 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 D | Generic.java | 29 package sun.net.www.content.text;
|
H A D | PlainTextInputStream.java | 26 package sun.net.www.content.text;
|
H A D | plain.java | 30 package sun.net.www.content.text;
|
/openjdk7/jaxp/src/org/w3c/dom/ |
H A D | Text.java | 46 * 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 "<&" 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 D | KeyInfoContent.java | 21 package com.sun.org.apache.xml.internal.security.keys.content;
|
/openjdk7/jdk/src/share/classes/sun/net/www/content/audio/ |
H A D | aiff.java | 30 package sun.net.www.content.audio;
|
H A D | basic.java | 30 package sun.net.www.content.audio;
|
H A D | wav.java | 30 package sun.net.www.content.audio;
|
H A D | x_aiff.java | 30 package sun.net.www.content.audio;
|
H A D | x_wav.java | 30 package sun.net.www.content.audio;
|
/openjdk7/jdk/src/share/classes/sun/net/www/content/image/ |
H A D | gif.java | 26 package sun.net.www.content.image;
|
H A D | jpeg.java | 26 package sun.net.www.content.image;
|
H A D | png.java | 26 package sun.net.www.content.image;
|
H A D | x_xbitmap.java | 26 package sun.net.www.content.image;
|
H A D | x_xpixmap.java | 26 package sun.net.www.content.image;
|
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/ |
H A D | DatatypeValidator.java | 39 * @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 D | ENTITYDatatypeValidator.java | 52 * 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 D | IDDatatypeValidator.java | 54 * 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 D | IDREFDatatypeValidator.java | 51 * 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 D | ListDatatypeValidator.java | 46 * 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 D | NMTOKENDatatypeValidator.java | 42 * 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 D | NOTATIONDatatypeValidator.java | 43 * 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 D | StringDatatypeValidator.java | 26 * <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
|