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

1234567

/openjdk7/jdk/src/share/classes/javax/swing/
H A DJRootPane.java165 * typically provided by way of the content pane. If you replace the content
166 * pane, it is recommended that you make the content pane opaque
167 * by way of <code>setOpaque(true)</code>. Additionally, if the content pane
304 /** The content pane. */
307 /** The layered pane that manages the menu bar and content pane. */
311 * The glass pane that overlays the menu bar and content pane,
606 * Sets the content pane -- the container that holds the components
611 * content pane. If you replace the content pan
618 setContentPane(Container content) argument
[all...]
H A DJEditorPane.java44 * A text component to edit various kinds of content.
53 * of content it is given. The content type that editor is bound
55 * installed. If the content is set to a new URL, its type is used
57 * load the content.
59 * By default, the following types of content are known:
75 * There are several ways to load content into this component.
80 * <code>EditorKit</code> will be used, and the content type will be
84 * component from a <code>Reader</code>. Note that if the content type is HTML,
89 * and the content typ
1129 replaceSelection(String content) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSAttributeChecker.java1622 public static String normalize(String content, short ws) { argument
1623 int len = content == null ? 0 : content.length();
1625 return content;
1632 ch = content.charAt(i);
1644 ch = content.charAt(i);
1653 ch = content.charAt(i+1);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xinclude/
H A DXPointerElementHandler.java445 public void setXPointerSchemaPointer(String content){ argument
446 fSchemaPointer = content;
/openjdk7/jaxp/src/com/sun/xml/internal/stream/writers/
H A DXMLStreamWriterImpl.java94 * This flag can be used to turn escaping off for content. It does
95 * not apply to attribute content.
1349 * Writes XML content to underlying writer. Escapes characters unless
1352 private void writeXMLContent(char[] content, int start, int length, argument
1355 fWriter.write(content, start, length);
1366 char ch = content[index];
1369 fWriter.write(content, startWritePos, index - startWritePos );
1381 fWriter.write(content, startWritePos, index - startWritePos);
1388 fWriter.write(content, startWritePos, index - startWritePos);
1395 fWriter.write(content, startWritePo
1407 writeXMLContent(String content) argument
1419 writeXMLContent( String content, boolean escapeChars, boolean escapeDoubleQuotes) argument
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/
H A DDiagramScene.java115 private InstanceContent content; field in class:DiagramScene
186 content.remove(w.getNode());
228 content.remove(widget.getNode());
347 content = new InstanceContent();
348 lookup = new AbstractLookup(content);
840 content.remove(w.getNode());
920 content.add(w.getNode());
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DDatatypeConverterImpl.java146 public BigDecimal parseDecimal(String content) { argument
147 return _parseDecimal(content);
150 public static BigDecimal _parseDecimal(CharSequence content) { argument
151 content = WhiteSpaceProcessor.trim(content);
153 if (content.length() <= 0) {
157 return new BigDecimal(content.toString());
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/main/
H A DJavaCompiler.java582 protected JCCompilationUnit parse(JavaFileObject filename, CharSequence content) { argument
586 if (content != null) {
594 Parser parser = parserFactory.newParser(content, keepComments(), genEndPos, lineDebugInfo);
603 if (content != null && taskListener != null) {
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DJarSigner.java2310 byte[] content = baos.toByteArray();
2312 sig.update(content);
2333 signatureAlgorithm, certChain, content, zipFile);
2364 * This object encapsulates the parameters used to perform content signing.
2374 private byte[] content; field in class:JarSignerParameters
2382 X509Certificate[] signerCertificateChain, byte[] content,
2395 this.content = content;
2454 * Retrieves the content that was signed.
2456 * @return The content byte
2380 JarSignerParameters(String[] args, URI tsa, X509Certificate tsaCertificate, byte[] signature, String signatureAlgorithm, X509Certificate[] signerCertificateChain, byte[] content, ZipFile source) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDecoratedPeer.java52 XContentWindow content; field in class:XDecoratedPeer
69 return (content == null) ? window : content.getWindow();
102 content = XContentWindow.createContent(this);
176 return getGraphics(content.surfaceData,
531 if (content != null &&
532 !content.getSize().equals(newDimensions.getSize()))
637 if (content == null) {
641 content.setContentBounds(dims);
941 // we receive only one set of cross notifications(first set is from content windo
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLDocumentFragmentScannerImpl.java64 * This class is responsible for scanning the structure and content
100 /** Scanner state: content. */
227 /** Debug content driver scanning. */
924 /** Creates a content Driver. */
1447 * // content
1550 // content
1577 * Scans element content.
1586 protected int scanContent(XMLStringBuffer content) throws IOException, XNIException { argument
1588 //scanContent sets the correct co-ordinates as per the content read
1591 content
1842 scanEntityReference(XMLStringBuffer content) argument
1928 handleCharacter(char c, String entity, XMLStringBuffer content) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMNodeProxy.java2023 * This attribute returns the text content of this node and its
2030 * element content whitespaces . Similarly, on setting, no parsing is
2031 * performed either, the input string is taken as pure textual content.
2032 * <br>The string returned is made of the text content of this node
2073 * This attribute returns the text content of this node and its
2080 * element content whitespaces . Similarly, on setting, no parsing is
2081 * performed either, the input string is taken as pure textual content.
2082 * <br>The string returned is made of the text content of this node
2251 public Text replaceWholeText(String content) argument
2266 if (content
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DUnImplNode.java48 * <meta name="usage" content="internal"/>
1680 * This attribute returns the text content of this node and its
1687 * element content whitespaces . Similarly, on setting, no parsing is
1688 * performed either, the input string is taken as pure textual content.
1689 * <br>The string returned is made of the text content of this node
1729 * This attribute returns the text content of this node and its
1736 * element content whitespaces . Similarly, on setting, no parsing is
1737 * performed either, the input string is taken as pure textual content.
1738 * <br>The string returned is made of the text content of this node
1899 public Text replaceWholeText(String content) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DXMLCipher.java774 * content with this the resulting <code>EncryptedType</code> within the
781 * <code>NodeList</code> having replaced the content of the source
787 logger.log(java.util.logging.Level.FINE, "Encrypting element content...");
894 * @param content
898 public Document doFinal(Document context, Element element, boolean content) argument
912 if (content) {
919 if (content) {
957 * or element content.
963 * of the encrypted content (may be <code>null</code>)
991 * @param contentMode <code>true</code> to encrypt element's content onl
1896 serialize(NodeList content) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DHtmlWriter.java220 * Get the configuration string as a content.
223 * @return a content tree for the text
230 * Get the configuration string as a content.
234 * @return a content tree for the text
241 * Get the configuration string as a content.
246 * @return a content tree for the text
305 * Returns a content tree for the SCRIPT tag for the main page(index.html).
307 * @return a content for the SCRIPT tag
960 * @param content String contents.
962 public void anchor(String name, String content) { argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DXSSimpleTypeDecl.java1542 public Object validate(String content, ValidationContext context, ValidatedInfo validatedInfo) throws InvalidDatatypeValueException { argument
1554 Object ob = getActualValue(content, context, validatedInfo, needNormalize);
1570 public ValidatedInfo validateWithInfo(String content, ValidationContext context, ValidatedInfo validatedInfo) throws InvalidDatatypeValueException { argument
1582 getActualValue(content, context, validatedInfo, needNormalize);
1593 public Object validate(Object content, ValidationContext context, ValidatedInfo validatedInfo) throws InvalidDatatypeValueException { argument
1605 Object ob = getActualValue(content, context, validatedInfo, needNormalize);
1641 String content = validatedInfo.normalizedValue;
1653 new Object[]{content, Integer.toString(length), Integer.toString(fMaxLength), fTypeName});
1661 new Object[]{content, Integer.toString(length), Integer.toString(fMinLength), fTypeName});
1669 new Object[]{content, Intege
1820 getActualValue(Object content, ValidationContext context, ValidatedInfo validatedInfo, boolean needNormalize) argument
1982 normalize(String content, short ws) argument
2028 normalize(Object content, short ws) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DJTextComponent.java202 * <li>inserting content into the editor for the
204 * <li>removing content with the backspace and del
226 * content.
797 // viewToModel currently returns null for some HTML content
1359 * Replaces the currently selected content with new content
1366 * of the action for inserting content that gets bound to the
1369 * @param content the content to replace the selection with
1371 public void replaceSelection(String content) { argument
[all...]
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DXMLKit.java266 * XMLKit.content(Filter, Collection sink) // copies content to sink
275 * Comparator XMLKit.contentOrder() // for comparing/sorting mixed content
1217 Element content = new Element(size);
1218 System.arraycopy(parts, 0, content.parts, 0, size);
1219 content.size = size;
1220 return content;
1442 // findAllInTree(f,S) == findAll(findInTree(content(f,S)))
1444 // removeAllInTree(f,S) == replaceAll(replaceInTree(and(content(f,S),emptyF)))
1476 replaceAll(replaceInTree(and(content(
3215 public static Filter content(final Filter f, final Collection<Object> sink) { method in class:XMLKit
[all...]
/openjdk7/jaxp/src/org/w3c/dom/css/
H A DCSS2Properties.java575 * See the content property definition in CSS2.
579 * See the content property definition in CSS2.
585 public void setContent(String content) argument

Completed in 6677 milliseconds

1234567