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

12

/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DStringContent.java36 public class StringContent extends Content{ class in inherits:Content
41 * Constructor to construct StringContent object.
43 public StringContent() { method in class:StringContent
48 * Constructor to construct StringContent object with some initial content.
52 public StringContent(String initialContent) { method in class:StringContent
70 * Adds content for the StringContent object. The method escapes
H A DHtmlTree.java42 public static final Content EMPTY = new StringContent("");
101 * added is a StringContent, append the string to that StringContent or else
102 * create a new StringContent and add it to the html tree.
109 if (lastContent instanceof StringContent)
112 addContent(new StringContent(stringContent));
115 addContent(new StringContent(stringContent));
/openjdk7/langtools/test/com/sun/javadoc/testHtmlDocument/
H A DTestHtmlDocument.java68 StringContent titleContent = new StringContent("Markup test");
95 StringContent bodyContent = new StringContent(
102 StringContent anchorContent = new StringContent("Click Here");
104 StringContent pContent = new StringContent(" to <test> out a link.");
125 StringContent ddContent = new StringContent("Tes
[all...]
/openjdk7/jdk/src/share/sample/nio/server/
H A DStringContent.java51 class StringContent implements Content { class in inherits:Content
58 StringContent(CharSequence c, String t) { method in class:StringContent
65 StringContent(CharSequence c) { method in class:StringContent
69 StringContent(Exception x) { method in class:StringContent
H A DRequestServicer.java81 new StringContent(x));
143 new StringContent(rq.toString()));
152 new StringContent(x));
H A DRequestHandler.java107 new StringContent(x));
119 new StringContent(request.toString()));
139 new StringContent(x));
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DStringContent.java53 public final class StringContent implements AbstractDocument.Content, Serializable { class in inherits:AbstractDocument.Content,Serializable
56 * Creates a new StringContent object. Initial size defaults to 10.
58 public StringContent() { method in class:StringContent
63 * Creates a new StringContent object, with the initial
68 public StringContent(int initialLength) { method in class:StringContent
401 synchronized(StringContent.this) {
416 synchronized(StringContent.this) {
459 synchronized(StringContent.this) {
476 synchronized(StringContent.this) {
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DSerializedFormWriterImpl.java78 Content h1Content = new StringContent(header);
186 Content headerContent = new StringContent(header);
188 Content serialContent = new StringContent(serialUID);
H A DHtmlSerialMethodWriter.java85 Content headingContent = new StringContent(heading);
100 Content noCustomizationMsg = new StringContent(msg);
H A DAnnotationTypeOptionalMemberWriterImpl.java74 Content dd = HtmlTree.DD(new StringContent(
H A DSingleIndexWriter.java114 getHyperLink("#_" + unicode + "_", new StringContent(unicode)));
H A DConstantsSummaryWriterImpl.java157 Content headingContent = new StringContent(".*");
253 Content modifier = new StringContent(mods.nextToken());
284 Content valueContent = new StringContent(member.constantValueExpression());
H A DAnnotationTypeWriterImpl.java156 Content pkgNameContent = new StringContent(pkgname);
162 Content headerContent = new StringContent(header);
219 Content annotationName = new StringContent(annotationType.name());
H A DSplitIndexWriter.java140 new StringContent(unicodeChars[i].toString())));
H A DAbstractIndexWriter.java104 Content headContent = new StringContent(unicode.toString());
133 Content link = getPackageLink(pkg, new StringContent(Util.getPackageName(pkg)));
H A DFieldWriterImpl.java105 Content fieldName = new StringContent(field.name());
239 Content label = new StringContent(cd.isClass() ?
H A DClassWriterImpl.java163 Content pkgNameContent = new StringContent(pkgname);
171 Content headerContent = new StringContent(header);
231 Content className = new StringContent(classDoc.name());
543 Content separator = new StringContent(", ");
H A DHtmlSerialFieldWriter.java112 Content headingContent = new StringContent(heading);
H A DNestedClassWriterImpl.java148 Content label = new StringContent(cd.isInterface() ?
H A DTreeWriter.java144 link, "", new StringContent(packages[i].name())));
H A DMethodWriterImpl.java122 Content methodName = new StringContent(method.name());
260 Content label = new StringContent(cd.isClass() ?
H A DAnnotationTypeRequiredMemberWriterImpl.java109 Content memberName = new StringContent(member.name());
H A DConstructorWriterImpl.java129 Content constructorName = new StringContent(constructor.name());
H A DEnumConstantWriterImpl.java104 Content enumConstantName = new StringContent(enumConstant.name());
/openjdk7/jdk/make/mksample/nio/server/
H A DMakefile63 $(SAMPLE_DST_DIR)/StringContent.java \

Completed in 80 milliseconds

12