Update of /cvsroot/springnet/Spring.Net.Integration/projects/Spring.Scheduling.Quartz/lib/net/2.0
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv24084/lib/net/2.0
Added Files:
Common.Logging.dll Nullables.dll Nullables.xml Quartz.dll
Quartz.pdb Quartz.xml Spring.Core.dll Spring.Core.pdb
Spring.Core.xml antlr.runtime.dll nunit.framework.dll
Log Message:
add initial quartrz integration support from Marko Lahma
--- NEW FILE: Nullables.xml ---
<?xml version="1.0"?>
<doc>
<assembly>
<name>Nullables</name>
</assembly>
<members>
<member name="T:Nullables.NullableBoolean">
<summary>
An <see cref="T:Nullables.INullableType"/> that wraps a <see cref="T:System.Boolean"/> value.
</summary>
</member>
<member name="T:Nullables.NullableByte">
<summary>
An <see cref="T:Nullables.INullableType"/> that wraps a <see cref="T:System.Byte"/> value.
</summary>
</member>
<member name="T:Nullables.NullableChar">
<summary>
An <see cref="T:Nullables.INullableType"/> that wraps a <see cref="T:System.Char"/> value.
</summary>
</member>
<member name="T:Nullables.NullableDateTime">
<summary>
An <see cref="T:Nullables.INullableType"/> that wraps a <see cref="T:System.DateTime"/> value.
</summary>
<remarks>
Please see the
<a href="http://msdn.microsoft.com/netframework/programming/bcl/faq/DateAndTimeFAQ.aspx">DateTime FAQ</a>
on MSDN.
</remarks>
</member>
<member name="T:Nullables.NullableDecimal">
<summary>
An <see cref="T:Nullables.INullableType"/> that wraps a <see cref="T:System.Decimal"/> value.
</summary>
</member>
<member name="T:Nullables.NullableDouble">
<summary>
An <see cref="T:Nullables.INullableType"/> that wraps a <see cref="T:System.Double"/> value.
</summary>
</member>
<member name="T:Nullables.NullableGuid">
<summary>
An <see cref="T:Nullables.INullableType"/> that wraps a <see cref="T:System.Guid"/> value.
</summary>
</member>
<member name="M:Nullables.NullableGuid.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Nullables.NullableGuid"/> class using the
value represented by the specified string.
</summary>
<param name="g">
A <see cref="T:System.String"/> that contains a GUID as described
in the <see cref="M:System.Guid.#ctor(System.String)"/> constructor.
</param>
<remarks>
If the <c>guid</c> string is <c>null</c> or <c>Empty</c> then the <c>HasValue</c>
property will be <c>false</c>.
</remarks>
<exception cref="T:System.FormatException">
The format of <c>g</c> is invalid.
</exception>
</member>
<member name="T:Nullables.NullableInt16">
<summary>
An <see cref="T:Nullables.INullableType"/> that wraps an <see cref="T:System.Int16"/> value.
</summary>
</member>
<member name="T:Nullables.NullableInt32">
<summary>
An <see cref="T:Nullables.INullableType"/> that wraps an <see cref="T:System.Int32"/> value.
</summary>
</member>
<member name="T:Nullables.NullableInt64">
<summary>
An <see cref="T:Nullables.INullableType"/> that wraps an <see cref="T:System.Int64"/> value.
</summary>
</member>
<member name="T:Nullables.NullableSByte">
<summary>
An <see cref="T:Nullables.INullableType"/> that wraps a <see cref="T:System.SByte"/> value.
</summary>
</member>
<member name="T:Nullables.NullableSingle">
<summary>
An <see cref="T:Nullables.INullableType"/> that wraps a <see cref="T:System.Single"/> value.
</summary>
</member>
</members>
</doc>
--- NEW FILE: Quartz.dll ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: Common.Logging.dll ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: Nullables.dll ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: Quartz.xml ---
<?xml version="1.0"?>
<doc>
<assembly>
<name>Quartz</name>
</assembly>
<members>
<member name="T:Quartz.Impl.AdoJobStore.DBSemaphore">
<summary>
Base class for database based lock handlers for providing thread/resource locking
in order to protect resources from being altered by multiple threads at the
same time.
</summary>
</member>
<member name="T:Quartz.Impl.AdoJobStore.StdAdoConstants">
<summary>
This class extends <see cref="T:Quartz.Impl.AdoJobStore.AdoConstants"/>
to include the query string constants in use by the <see cref="T:Quartz.Impl.AdoJobStore.StdAdoDelegate"/>
class.
</summary>
[...16324 lines suppressed...]
<member name="M:Quartz.Simpl.LoadingLoaderClassLoadHelper.GetResource(System.String)">
<summary> Finds a resource with a given name. This method returns null if no
resource with this name is found.
</summary>
<param name="name">name of the desired resource
</param>
<returns> a java.net.URL object
</returns>
</member>
<member name="M:Quartz.Simpl.LoadingLoaderClassLoadHelper.GetResourceAsStream(System.String)">
<summary> Finds a resource with a given name. This method returns null if no
resource with this name is found.
</summary>
<param name="name">name of the desired resource
</param>
<returns> a java.io.InputStream object
</returns>
</member>
</members>
</doc>
--- NEW FILE: Spring.Core.pdb ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: Spring.Core.dll ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: Spring.Core.xml ---
<?xml version="1.0"?>
<doc>
<assembly>
<name>Spring.Core</name>
</assembly>
<members>
<member name="T:Spring.Caching.AbstractCache">
<summary>
An abstract <see cref="T:Spring.Caching.ICache"/> implementation that can
be used as base class for concrete implementations.
</summary>
<author>Aleksandar Seovic</author>
<version>$Id: Spring.Core.xml,v 1.1 2007/09/10 21:33:06 markpollack Exp $</version>
</member>
<member name="T:Spring.Caching.ICache">
<summary>
Defines a contract that all cache implementations have to fulfill.
</summary>
<author>Aleksandar Seovic</author>
[...40371 lines suppressed...]
</summary>
<value>
Owning <see cref="T:Spring.Objects.Factory.IObjectFactory"/>
(may not be <see langword="null"/>). The object can immediately
call methods on the factory.
</value>
<remarks>
<p>
Invoked after population of normal object properties but before an init
callback like <see cref="T:Spring.Objects.Factory.IInitializingObject"/>'s
<see cref="M:Spring.Objects.Factory.IInitializingObject.AfterPropertiesSet"/>
method or a custom init-method.
</p>
</remarks>
<exception cref="T:Spring.Objects.ObjectsException">
In case of initialization errors.
</exception>
</member>
</members>
</doc>
--- NEW FILE: nunit.framework.dll ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: antlr.runtime.dll ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: Quartz.pdb ---
(This appears to be a binary file; contents omitted.)
|