Searched refs:StringContent (Results 1 - 25 of 83) sorted by relevance

1234

/openjdk9/langtools/test/jdk/javadoc/doclet/testHtmlDocument/
H A DTestHtmlDocument.java77 StringContent titleContent = new StringContent("Markup test");
104 StringContent bodyContent = new StringContent(
111 StringContent anchorContent = new StringContent("Click Here");
113 StringContent pContent = new StringContent(" to <test> out a link.");
134 StringContent ddContent = new StringContent("Tes
[all...]
/openjdk9/langtools/test/com/sun/javadoc/testHtmlDocument/
H A DTestHtmlDocument.java73 StringContent titleContent = new StringContent("Markup test");
100 StringContent bodyContent = new StringContent(
107 StringContent anchorContent = new StringContent("Click Here");
109 StringContent pContent = new StringContent(" to <test> out a link.");
130 StringContent ddContent = new StringContent("Tes
[all...]
/openjdk9/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/markup/
H A DContentBuilder.java58 StringContent sc;
59 if (c != null && c instanceof StringContent) {
60 sc = (StringContent) c;
62 contents.add(sc = new StringContent());
H A DStringContent.java44 public class StringContent extends Content { class in inherits:Content
49 * Constructor to construct StringContent object.
51 public StringContent() { method in class:StringContent
56 * Constructor to construct StringContent object with some initial content.
60 public StringContent(CharSequence initialContent) { method in class:StringContent
77 * Adds content for the StringContent object. The method escapes
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DContentBuilder.java58 StringContent sc;
59 if (c != null && c instanceof StringContent) {
60 sc = (StringContent) c;
62 contents.add(sc = new StringContent());
H A DStringContent.java45 public class StringContent extends Content { class in inherits:Content
50 * Constructor to construct StringContent object.
52 public StringContent() { method in class:StringContent
57 * Constructor to construct StringContent object with some initial content.
61 public StringContent(String initialContent) { method in class:StringContent
80 * Adds content for the StringContent object. The method escapes
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/formats/html/
H A DTagletWriterImpl.java33 import com.sun.tools.doclets.formats.html.markup.StringContent;
77 Content result = HtmlTree.CODE(new StringContent(utils.normalizeNewlines(tag.text())));
137 Content result = HtmlTree.A_ID(anchorName, new StringContent(tagText));
171 return new StringContent(path);
183 new StringContent(configuration.getText("doclet.Deprecated"))));
198 new StringContent(configuration.getText("doclet.Deprecated"))));
209 new StringContent(configuration.getText("doclet.Deprecated"))));
221 Content result = new StringContent(utils.normalizeNewlines(tag.text()));
237 new StringContent(header)));
272 new StringContent(configuratio
[all...]
H A DHtmlSerialMethodWriter.java89 Content headingContent = new StringContent(heading);
104 Content noCustomizationMsg = new StringContent(msg);
H A DSerializedFormWriterImpl.java85 Content h1Content = new StringContent(header);
169 new StringContent(classDoc.qualifiedName());
212 Content headerContent = new StringContent(header);
214 Content serialContent = new StringContent(serialUID);
H A DLinkInfoImpl.java30 import com.sun.tools.doclets.formats.html.markup.StringContent;
290 this.label = new StringContent(label);
H A DConstantsSummaryWriterImpl.java191 Content headingContent = new StringContent(".*");
233 new StringContent(cd.qualifiedName());
308 Content modifier = new StringContent(mods.nextToken());
339 Content valueContent = new StringContent(member.constantValueExpression());
/openjdk9/jdk/test/javax/swing/undo/UndoManager/
H A DAbstractDocumentUndoConcurrentTest.java31 import javax.swing.text.StringContent;
53 doc1 = new PlainDocument(new StringContent());
59 doc2 = new PlainDocument(new StringContent());
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/text/
H A DStringContent.java54 public final class StringContent implements AbstractDocument.Content, Serializable { class in inherits:AbstractDocument.Content,Serializable
57 * Creates a new StringContent object. Initial size defaults to 10.
59 public StringContent() { method in class:StringContent
64 * Creates a new StringContent object, with the initial
69 public StringContent(int initialLength) { method in class:StringContent
405 synchronized(StringContent.this) {
420 synchronized(StringContent.this) {
465 synchronized(StringContent.this) {
483 synchronized(StringContent.this) {
/openjdk9/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/
H A DSerializedFormWriterImpl.java36 import jdk.javadoc.internal.doclets.formats.html.markup.StringContent;
88 Content h1Content = new StringContent(header);
172 : new StringContent(utils.getFullyQualifiedName(typeElement));
213 Content headerContent = new StringContent(header);
215 Content serialContent = new StringContent(serialUID);
H A DTagletWriterImpl.java44 import jdk.javadoc.internal.doclets.formats.html.markup.StringContent;
93 StringContent content = new StringContent(utils.normalizeNewlines(ch.getText(tag)));
109 Content result = HtmlTree.A_ID(HtmlStyle.searchTagResult, anchorName, new StringContent(tagText));
168 return new StringContent(path);
218 Content result = new StringContent(utils.normalizeNewlines(ch.getText(tag)));
227 new StringContent(header)));
266 new StringContent(configuration.getText("doclet.Returns")))));
294 new StringContent(configuration.getText("doclet.Constants_Summary"))));
304 new StringContent(configuratio
[all...]
H A DHtmlSerialMethodWriter.java36 import jdk.javadoc.internal.doclets.formats.html.markup.StringContent;
97 Content headingContent = new StringContent(heading);
112 Content noCustomizationMsg = new StringContent(msg);
H A DIndexRedirectWriter.java36 import jdk.javadoc.internal.doclets.formats.html.markup.StringContent;
81 Content windowTitle = HtmlTree.TITLE(new StringContent(title));
108 bodyContent.addContent(HtmlTree.P(HtmlTree.A(topFilePath, new StringContent(topFilePath))));
H A DAnnotationTypeOptionalMemberWriterImpl.java38 import jdk.javadoc.internal.doclets.formats.html.markup.StringContent;
99 Content dd = HtmlTree.DD(new StringContent(value.toString()));
H A DModulePackageIndexFrameWriter.java42 import jdk.javadoc.internal.doclets.formats.html.markup.StringContent;
89 Content profNameContent = new StringContent(mdle.getQualifiedName().toString());
114 Content moduleNameContent = new StringContent(mdle.getQualifiedName().toString());
150 pkgLabel = new StringContent("<unnamed package>");
H A DSingleIndexWriter.java33 import jdk.javadoc.internal.doclets.formats.html.markup.StringContent;
145 new StringContent(unicode)));
H A DLinkInfoImpl.java33 import jdk.javadoc.internal.doclets.formats.html.markup.StringContent;
298 this.label = new StringContent(label);
H A DModuleIndexFrameWriter.java40 import jdk.javadoc.internal.doclets.formats.html.markup.StringContent;
109 Content mdlLabel = new StringContent(mdle.getQualifiedName());
H A DPackageIndexFrameWriter.java37 import jdk.javadoc.internal.doclets.formats.html.markup.StringContent;
112 packageLabel = new StringContent("<unnamed package>");
H A DModuleFrameWriter.java40 import jdk.javadoc.internal.doclets.formats.html.markup.StringContent;
98 Content mdlLabel = new StringContent(mdlName);
180 Content arr_i_name = new StringContent(utils.getSimpleName(typeElement));
H A DPackageFrameWriter.java38 import jdk.javadoc.internal.doclets.formats.html.markup.StringContent;
104 Content pkgNameContent = new StringContent(pkgName);
190 Content arr_i_name = new StringContent(utils.getSimpleName(typeElement));

Completed in 184 milliseconds

1234