Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for tablet (0.16 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/MethodsRenderer.java

            if (!classMethods.isEmpty()) {
                Element table = document.createElement("table");
                summarySection.appendChild(table);
    
                title = document.createElement("title");
                table.appendChild(title);
                title.appendChild(document.createTextNode("Methods - " + classDoc.getSimpleName()));
    
                methodTableRenderer.renderTo(classMethods, table);
            }
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ExtensionMethodsSummaryRenderer.java

            titleabbrev.appendChild(document.createTextNode(" plugin"));
    
            Element table = document.createElement("table");
            section.appendChild(table);
    
            title = document.createElement("title");
            table.appendChild(title);
            title.appendChild(document.createTextNode("Methods - "));
            literal = document.createElement("literal");
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.6K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/HtmlToXmlJavadocLexer.java

            blockElements.add("h6");
            blockElements.add("table");
            blockElements.add("thead");
            blockElements.add("tbody");
            blockElements.add("tr");
            blockElements.add("dl");
            blockElements.add("dt");
            blockElements.add("dd");
    
            blockContent.add("ul");
            blockContent.add("ol");
            blockContent.add("table");
            blockContent.add("thead");
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 5.8K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

        }
    
        private void addTOC(Document document) {
            Element tocSection = document.body().select("section.topic").first().before("<section class='table-of-contents'/>").previousElementSibling();
            tocSection.append("<h2>Table Of Contents</h2>");
            Element toc = tocSection.append("<ul class='toc'/>").children().last();
    
            Elements h23elements = document.select("h2,h3");
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Apr 25 04:49:56 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocConverter.java

                if (elementName.equals("table")) {
                    if (currentTable != null) {
                        throw new UnsupportedOperationException("A table within a table is not supported.");
                    }
                    currentTable = document.createElement("table");
                    nodes.push(currentTable);
                    return true;
                }
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 29.3K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/RenderMarkdown.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.docs;
    
    import com.vladsch.flexmark.ext.tables.TablesExtension;
    import com.vladsch.flexmark.html.HtmlRenderer;
    import com.vladsch.flexmark.parser.Parser;
    import com.vladsch.flexmark.util.options.MutableDataSet;
    import org.gradle.api.DefaultTask;
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 3.2K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BlocksRenderer.java

            if (!classBlocks.isEmpty()) {
                Element table = document.createElement("table");
                summarySection.appendChild(table);
    
                title = document.createElement("title");
                table.appendChild(title);
                title.appendChild(document.createTextNode("Script blocks - " + classDoc.getSimpleName()));
    
                blockTableRenderer.renderTo(classBlocks, table);
            }
    
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ExtensionBlocksSummaryRenderer.java

            titleabbrev.appendChild(document.createTextNode(" plugin"));
    
            Element table = document.createElement("table");
            section.appendChild(table);
    
            title = document.createElement("title");
            table.appendChild(title);
            title.appendChild(document.createTextNode("Script blocks - "));
            literal = document.createElement("literal");
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.6K bytes
    - Viewed (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ExtensionPropertiesSummaryRenderer.java

            titleabbrev.appendChild(document.createTextNode(" plugin"));
    
            Element table = document.createElement("table");
            section.appendChild(table);
    
            title = document.createElement("title");
            table.appendChild(title);
            title.appendChild(document.createTextNode("Properties - "));
            literal = document.createElement("literal");
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.6K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/PropertiesRenderer.java

                Element table = document.createElement("table");
                summarySection.appendChild(table);
    
                title = document.createElement("title");
                table.appendChild(title);
                title.appendChild(document.createTextNode("Properties - " + classDoc.getSimpleName()));
    
                propertyTableRenderer.renderTo(classProperties, table);
            }
    
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4.1K bytes
    - Viewed (0)
Back to top