Changeset 7732
- Timestamp:
- Jun 17, 2019, 9:36:09 AM (4 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build.xml
r7711 r7732 1027 1027 1028 1028 <header><![CDATA[${base.version}${base.versionsuffix}: ${TODAY}]]></header> 1029 <link href="http ://docs.oracle.com/javase/8/docs/api/"/>1030 <link href="http ://docs.jboss.org/hibernate/core/4.3/javadocs/" />1029 <link href="https://docs.oracle.com/en/java/javase/11/docs/api/"/> 1030 <link href="https://docs.jboss.org/hibernate/orm/5.4/javadocs/" /> 1031 1031 <link href="http://www.jdom.org/docs/apidocs/" /> 1032 <link href="http://tomcat.apache.org/tomcat- 8.0-doc/servletapi/" />1033 <link href="http://tomcat.apache.org/tomcat- 8.0-doc/jspapi/" />1034 <link href="http://tomcat.apache.org/tomcat- 8.0-doc/api/" />1032 <link href="http://tomcat.apache.org/tomcat-9.0-doc/servletapi/" /> 1033 <link href="http://tomcat.apache.org/tomcat-9.0-doc/jspapi/" /> 1034 <link href="http://tomcat.apache.org/tomcat-9.0-doc/api/" /> 1035 1035 <link href="http://www.singularsys.com/jep/doc/javadoc/" /> 1036 1036 <link href="http://www.jfree.org/jfreechart/api/gjdoc/" /> 1037 1037 <link href="http://logging.apache.org/log4j/1.2/apidocs/" /> 1038 <link href="http://download.oracle.com/docs/cd/E17802_01/products/products/java-media/jai/forDevelopers/jai-apidocs/" />1039 1038 <tag name="base.developer" description="Developer info" /> 1040 1039 <tag name="base.internal" description="This class/package is not part of the Public API" scope="overview,packages,types" /> … … 1061 1060 <tag name="hibernate.collection-one-to-many" description="Hibernate: collection-one-to-many" scope="methods" /> 1062 1061 <tag name="hibernate.collection-many-to-many" description="Hibernate: collection-many-to-many" scope="methods" /> 1062 <tag name="hibernate.component" description="Hibernate: component" scope="methods" /> 1063 1063 <tag name="hibernate.bag" description="Hibernate: bag" scope="methods" /> 1064 1064 <tag name="hibernate.many-to-any" description="Hibernate: many-to-any" scope="methods" /> 1065 1065 <tag name="hibernate.many-to-any-column" description="Hibernate: many-to-any-column" scope="methods" /> 1066 <!-- The below tags are needed to get rid of javadoc warnings for all tags with a hyphen (hibernate.many-to-one, etc.) -->1067 <tag name="hibernate.component" description="Hibernate: component" scope="methods" />1068 <tag name="hibernate.many" description="Hibernate: many" scope="methods" />1069 <tag name="hibernate.collection" description="Hibernate: collection" scope="methods" />1070 <tag name="hibernate.index" description="Hibernate: index" scope="methods" />1071 <tag name="hibernate.one" description="Hibernate: one" scope="methods" />1072 <tag name="hibernate.generator" description="Hibernate: one" scope="methods" />1073 1066 </javadoc> 1074 1067 </target> -
trunk/src/core/net/sf/basedb/core/signal/ThreadSignalHandler.java
r7515 r7732 223 223 224 224 /** 225 Call this method with a true value to make the signal handler 226 use {@link Thread#stop(Throwable)} instead of {@link Thread#interrupt()}. 227 Note that the <code>Thread.stop</code> method is deprecated and it is not 228 recommended that it is used. For some plug-ins though this may be the 229 only option, if they are mainly executing code outside of their control 230 which doesn't check the {@link Thread#interrupted()} status. The exception 231 passed to the thread will be a {@link InterruptedException}. 232 @param forceStop TRUE to stop the thread by force, FALSE to signal to 233 it with a flag 225 Thread.stop() has been removed from the Java API. 234 226 @deprecated In 3.14. Calling this is ignored and the signal handler will always use the interrupt method. 235 227 */
Note: See TracChangeset
for help on using the changeset viewer.