Searched refs:documentation (Results 1 - 22 of 22) sorted by relevance

/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/wsdl/writer/document/
H A DDocumented.java41 public com.sun.xml.internal.ws.wsdl.writer.document.Documented documentation(String value); method in interface:Documented
/openjdk10/langtools/src/jdk.javadoc/share/classes/com/sun/tools/javadoc/main/
H A DDocImpl.java84 * Raw documentation string.
86 protected String documentation; // Accessed in PackageDocImpl, RootDocImpl field in class:DocImpl
103 this.documentation = getCommentText(treePath);
118 * "documentation" string.
120 protected String documentation() { method in class:DocImpl
121 if (documentation == null) documentation = "";
122 return documentation;
130 String d = documentation();
210 * Utility for subclasses which read HTML documentation file
[all...]
H A DPackageDocImpl.java92 foundDoc = (documentation != null);
105 * Do lazy initialization of "documentation" string.
107 protected String documentation() { method in class:PackageDocImpl
108 if (documentation != null)
109 return documentation;
114 documentation = readHTMLDocumentation(s, docPath);
116 documentation = "";
121 documentation = "";
123 return documentation;
H A DRootDocImpl.java78 * @param env the documentation environment, state for this javadoc run
93 * @param env the documentation environment, state for this javadoc run
331 * Do lazy initialization of "documentation" string.
334 protected String documentation() { method in class:RootDocImpl
335 if (documentation == null) {
339 documentation = "";
343 documentation = readHTMLDocumentation(
347 documentation = "";
352 return documentation;
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/schemagen/xmlschema/
H A DAnnotation.java47 public Documentation documentation(); method in interface:Annotation
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/xmlschema/bindinfo/
H A DBindInfo.java82 * Documentation taken from {@code <xs:documentation>s}.
85 private Documentation documentation; field in class:BindInfo
95 if(documentation!=null && !documentation.contents.isEmpty())
215 * Gets the documentation parsed from {@code <xs:documentation>}s.
221 if(documentation==null || documentation.contents==null) return null;
224 for (Object c : documentation.contents) {
269 if(this.documentation
[all...]
/openjdk10/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wsdl/document/
H A DWSDLDocumentVisitorBase.java103 public void visit(Documentation documentation) throws Exception { argument
H A DWSDLDocumentVisitor.java69 public void visit(Documentation documentation) throws Exception; argument
/openjdk10/langtools/src/jdk.jshell/share/classes/jdk/jshell/
H A DSourceCodeAnalysis.java67 * Compute documentation for the given user's input. Multiple {@code Documentation} objects may
76 public abstract List<Documentation> documentation(String input, int cursor, boolean computeJavadoc); method in class:SourceCodeAnalysis
302 * A documentation for a candidate for continuation of the given user's input.
H A DSourceCodeAnalysisImpl.java1136 public List<Documentation> documentation(String code, int cursor, boolean computeJavadoc) { method in class:SourceCodeAnalysisImpl
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/java/
H A DBinaryMember.java124 * Get documentation
127 if (documentation != null) {
128 return documentation;
135 return documentation = new DataInputStream(new ByteArrayInputStream(data)).readUTF();
H A DClassDefinition.java63 protected String documentation; field in class:ClassDefinition
400 * Get the class' documentation
403 return documentation;
407 * Return true if the given documentation string contains a deprecation
411 public static boolean containsDeprecated(String documentation) { argument
412 if (documentation == null) {
417 (scan = documentation.indexOf(paraDeprecated, scan)) >= 0;
422 char ch = documentation.charAt(beg);
432 if (end < documentation.length()) {
433 char ch = documentation
[all...]
H A DMemberDefinition.java53 protected String documentation; field in class:MemberDefinition
393 * Get the field's documentation
396 return documentation;
979 documentation = null;
H A DBinaryClass.java204 c.documentation = new DataInputStream(new ByteArrayInputStream(data)).readUTF();
/openjdk10/make/
H A DDocs.gmk43 # This file generates all documentation for OpenJDK.
45 # We will generate API documentation for two different selections of the source
136 For further API reference and developer documentation see the \
147 <a href="$(REDISTRIBUTION_URL)">documentation redistribution policy</a>. \
231 # Setup make rules to create an API documentation collection, using javadoc and
242 # SHORT_NAME - The short name of this documentation collection
243 # LONG_NAME - The long name of this documentation collection
349 $$(call LogInfo, Running gengraphs for $1 documentation)
366 # Setup generation of the JDK API documentation (javadoc + modulegraph)
368 # Define the groups of the JDK API documentation
[all...]
/openjdk10/langtools/test/jdk/jshell/
H A DKullaTesting.java968 List<Documentation> documentation = getAnalysis().documentation(code, cursor, false);
969 Set<String> docSet = documentation.stream().map(doc -> doc.signature()).collect(Collectors.toSet());
978 List<Documentation> documentation = getAnalysis().documentation(code, cursor, true);
979 Set<String> docSet = documentation.stream()
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/javac/
H A DSourceMember.java80 this.documentation = doc;
84 if (ClassDefinition.containsDeprecated(documentation)) {
H A DSourceClass.java101 ClassDeclaration declaration, String documentation,
110 this.documentation = documentation;
112 if (ClassDefinition.containsDeprecated(documentation)) {
100 SourceClass(Environment env, long where, ClassDeclaration declaration, String documentation, int modifiers, IdentifierToken superClass, IdentifierToken interfaces[], SourceClass outerClass, Identifier localName) argument
/openjdk10/nashorn/samples/
H A DMain.asm13 * documentation and/or other materials provided with the distribution.
/openjdk10/langtools/src/jdk.jshell/share/classes/jdk/internal/jshell/tool/
H A DConsoleIOContext.java227 doc = repl.analysis.documentation(prefix + text, cursor + prefix.length(), false)
585 return repl.getResourceString("jshell.console.see.full.documentation");
629 return repl.getResourceString("jshell.console.see.documentation");
641 List<String> doc = repl.analysis.documentation(prefix + text, cursor + prefix.length(), true)
/openjdk10/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DWSDLModeler.java2797 Documentation documentation) {
2798 if (documentation != null && documentation.getContent() != null) {
2799 obj.setJavaDoc(documentation.getContent());
2795 setDocumentationIfPresent( ModelObject obj, Documentation documentation) argument
/openjdk10/common/autoconf/
H A Dgenerated-configure.sh1942 --infodir=DIR info documentation [DATAROOTDIR/info]
1944 --mandir=DIR man documentation [DATAROOTDIR/man]
1945 --docdir=DIR documentation root [DATAROOTDIR/doc/openjdk]
1946 --htmldir=DIR html documentation [DOCDIR]
1947 --dvidir=DIR dvi documentation [DOCDIR]
1948 --pdfdir=DIR pdf documentation [DOCDIR]
1949 --psdir=DIR ps documentation [DOCDIR]
1980 --enable-full-docs build complete documentation [enabled if all tools
2674 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5
2675 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >
[all...]

Completed in 377 milliseconds