Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 11 jdk.javadoc.jmod - Java Document Tool
JDK 11 jdk.javadoc.jmod is the JMOD file for JDK 11 Java Document tool, which can be invoked by the "javadoc" command.
JDK 11 Java Document tool compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.javadoc.jmod.
JDK 11 Java Document tool compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Java Document tool source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.javadoc.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ jdk/javadoc/internal/doclets/toolkit/PropertyUtils.java
/* * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package jdk.javadoc.internal.doclets.toolkit; import java.util.regex.Pattern; import javax.lang.model.element.ExecutableElement; import javax.lang.model.type.TypeKind; import javax.lang.model.type.TypeMirror; import javax.lang.model.util.Types; /** * This class provides basic JavaFX property related utility methods. * Refer to the JavaFX conventions in the VisibleMemberTable comments. */ public class PropertyUtils { final TypeMirror jbObservableType; final Pattern fxMethodPatterns; final boolean javafx; final Types typeUtils; PropertyUtils(BaseConfiguration configuration) { javafx = configuration.javafx; typeUtils = configuration.docEnv.getTypeUtils(); // Disable strict check for JDK's without FX. TypeMirror jboType = configuration.disableJavaFxStrictChecks ? null : configuration.utils.getSymbol("javafx.beans.Observable"); jbObservableType = jboType != null ? configuration.docEnv.getTypeUtils().erasure(jboType) : null; fxMethodPatterns = javafx ? Pattern.compile("[sg]et\\p{Upper}.*||is\\p{Upper}.*") : null; } /** * Returns a base name for a property method. Supposing we * have {@code BooleanProperty acmeProperty()}, then "acme" * will be returned. * @param propertyMethod * @return the base name of a property method. */ public String getBaseName(ExecutableElement propertyMethod) { String name = propertyMethod.getSimpleName().toString(); String baseName = name.substring(0, name.indexOf("Property")); return baseName; } /** * Returns a property getter's name. Supposing we have a property * method {@code DoubleProperty acmeProperty()}, then "getAcme" * will be returned. * @param propertyMethod * @return the property getter's name. */ public String getGetName(ExecutableElement propertyMethod) { String baseName = getBaseName(propertyMethod); String fnUppercased = "" + Character.toUpperCase(baseName.charAt(0)) + baseName.substring(1); return "get" + fnUppercased; } /** * Returns an "is" method's name for a property method. Supposing * we have a property method {@code BooleanProperty acmeProperty()}, * then "isAcme" will be returned. * @param propertyMethod * @return the property is getter's name. */ public String getIsName(ExecutableElement propertyMethod) { String baseName = getBaseName(propertyMethod); String fnUppercased = "" + Character.toUpperCase(baseName.charAt(0)) + baseName.substring(1); return "is" + fnUppercased; } /** * Returns true if a property method could have an "is" method, meaning * {@code isAcme} could exist for a property method. * @param propertyMethod * @return true if the property could have an "is" method, false otherwise. */ public boolean hasIsMethod(ExecutableElement propertyMethod) { String propertyTypeName = propertyMethod.getReturnType().toString(); return "boolean".equals(propertyTypeName) || propertyTypeName.endsWith("BooleanProperty"); } /** * Returns a property setter's name. Supposing we have a property * method {@code DoubleProperty acmeProperty()}, then "setAcme" * will be returned. * @param propertyMethod * @return the property setter's method name. */ public String getSetName(ExecutableElement propertyMethod) { String baseName = getBaseName(propertyMethod); String fnUppercased = "" + Character.toUpperCase(baseName.charAt(0)) + baseName.substring(1); return "set" + fnUppercased; } /** * Returns true if the given setter method is a valid property setter * method. * @param setterMethod * @return true if setter method, false otherwise. */ public boolean isValidSetterMethod(ExecutableElement setterMethod) { return setterMethod.getReturnType().getKind() == TypeKind.VOID; } /** * Returns true if the method is a property method. * @param propertyMethod * @return true if the method is a property method, false otherwise. */ public boolean isPropertyMethod(ExecutableElement propertyMethod) { if (!javafx || !propertyMethod.getParameters().isEmpty() || !propertyMethod.getTypeParameters().isEmpty()) { return false; } String methodName = propertyMethod.getSimpleName().toString(); if (!methodName.endsWith("Property") || fxMethodPatterns.matcher(methodName).matches()) { return false; } TypeMirror returnType = propertyMethod.getReturnType(); if (jbObservableType == null) { // JavaFX references missing, make a lazy backward compatible check. return returnType.getKind() != TypeKind.VOID; } else { // Apply strict checks since JavaFX references are available returnType = typeUtils.erasure(propertyMethod.getReturnType()); return typeUtils.isAssignable(returnType, jbObservableType); } } }
⏎ jdk/javadoc/internal/doclets/toolkit/PropertyUtils.java
Or download all of them as a single archive file:
File name: jdk.javadoc-11.0.1-src.zip File size: 680806 bytes Release date: 2018-11-04 Download
⇒ JDK 11 jdk.jcmd.jmod - JCmd Tool
2020-07-22, 70712👍, 0💬
Popular Posts:
What Is commons-lang3-3.1.jar? commons-lang3-3.1.jar is the JAR file for Apache Commons Lang 3.1, wh...
xml-commons External Source Code Files are provided in the source package file, xml-commons-external...
HttpComponents Client Source Code Files are provided in the source package file, httpcomponents-clie...
JDK 11 jdk.charsets.jmod is the JMOD file for JDK 11 Charsets module. JDK 11 Charsets module compile...
What Is javamail-1_2.zip? javamail-1_2.zip is the binary package of JavaMail API 1.2 in ZIP format. ...