Skip to Content.
Sympa Menu

notify-dpml - svn commit: r2067 - development/laboratory/plus/api/part/src/main/net/dpml/metro/type

notify-dpml AT lists.ibiblio.org

Subject: DPML Notify

List archive

Chronological Thread  
  • From: mcconnell AT dpml.net
  • To: notify-dpml AT lists.ibiblio.org
  • Subject: svn commit: r2067 - development/laboratory/plus/api/part/src/main/net/dpml/metro/type
  • Date: Mon, 14 Mar 2005 13:15:21 -0500

Author: mcconnell AT dpml.net
Date: Mon Mar 14 13:15:21 2005
New Revision: 2067

Added:

development/laboratory/plus/api/part/src/main/net/dpml/metro/type/Registry.java
- copied, changed from r2064,
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/Registry.java

development/laboratory/plus/api/part/src/main/net/dpml/metro/type/RegistryNotFoundException.java
- copied, changed from r2062,
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/RegistryNotFoundException.java

development/laboratory/plus/api/part/src/main/net/dpml/metro/type/RegistryRuntimeException.java
- copied, changed from r2062,
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/RegistryRuntimeException.java
development/laboratory/plus/api/part/src/main/net/dpml/metro/type/Type.java
- copied, changed from r2062,
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/Type.java

development/laboratory/plus/api/part/src/main/net/dpml/metro/type/TypeEntry.java
- copied, changed from r2062,
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/TypeEntry.java

development/laboratory/plus/api/part/src/main/net/dpml/metro/type/TypeHandler.java
- copied, changed from r2062,
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/TypeHandler.java

development/laboratory/plus/api/part/src/main/net/dpml/metro/type/TypeHandlerRuntimeException.java
- copied, changed from r2062,
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/TypeHandlerRuntimeException.java

development/laboratory/plus/api/part/src/main/net/dpml/metro/type/TypeNotFoundException.java
- copied, changed from r2062,
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/TypeNotFoundException.java

development/laboratory/plus/api/part/src/main/net/dpml/metro/type/TypeReference.java
- copied, changed from r2062,
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/TypeReference.java
Log:


Copied:
development/laboratory/plus/api/part/src/main/net/dpml/metro/type/Registry.java
(from r2064,
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/Registry.java)
==============================================================================
---
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/Registry.java
(original)
+++
development/laboratory/plus/api/part/src/main/net/dpml/metro/type/Registry.java
Mon Mar 14 13:15:21 2005
@@ -16,7 +16,7 @@
* limitations under the License.
*/

-package net.dpml.metro.part;
+package net.dpml.metro.type;

import java.io.InputStream;
import java.io.IOException;
@@ -28,6 +28,9 @@
import java.util.Properties;
import java.io.Serializable;

+import net.dpml.metro.part.Descriptor;
+import net.dpml.metro.part.BadStrategyException;
+
/**
* A registry is a container of serialized component type holders keyed by
classname.
*

Copied:
development/laboratory/plus/api/part/src/main/net/dpml/metro/type/RegistryNotFoundException.java
(from r2062,
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/RegistryNotFoundException.java)
==============================================================================
---
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/RegistryNotFoundException.java
(original)
+++
development/laboratory/plus/api/part/src/main/net/dpml/metro/type/RegistryNotFoundException.java
Mon Mar 14 13:15:21 2005
@@ -16,7 +16,7 @@
* limitations under the License.
*/

-package net.dpml.metro.part;
+package net.dpml.metro.type;

import java.net.URL;


Copied:
development/laboratory/plus/api/part/src/main/net/dpml/metro/type/RegistryRuntimeException.java
(from r2062,
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/RegistryRuntimeException.java)
==============================================================================
---
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/RegistryRuntimeException.java
(original)
+++
development/laboratory/plus/api/part/src/main/net/dpml/metro/type/RegistryRuntimeException.java
Mon Mar 14 13:15:21 2005
@@ -16,7 +16,7 @@
* limitations under the License.
*/

-package net.dpml.metro.part;
+package net.dpml.metro.type;

/**
* Unexpected runtime exception indicating an interanl registry error.

Copied:
development/laboratory/plus/api/part/src/main/net/dpml/metro/type/Type.java
(from r2062,
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/Type.java)
==============================================================================
---
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/Type.java
(original)
+++
development/laboratory/plus/api/part/src/main/net/dpml/metro/type/Type.java
Mon Mar 14 13:15:21 2005
@@ -16,7 +16,7 @@
* limitations under the License.
*/

-package net.dpml.metro.part;
+package net.dpml.metro.type;

import java.io.Serializable;
import java.net.URI;

Copied:
development/laboratory/plus/api/part/src/main/net/dpml/metro/type/TypeEntry.java
(from r2062,
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/TypeEntry.java)
==============================================================================
---
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/TypeEntry.java
(original)
+++
development/laboratory/plus/api/part/src/main/net/dpml/metro/type/TypeEntry.java
Mon Mar 14 13:15:21 2005
@@ -16,14 +16,15 @@
* limitations under the License.
*/

-package net.dpml.metro.part;
+package net.dpml.metro.type;

import java.io.Serializable;
import java.io.InputStream;
import java.io.IOException;
import java.net.URI;

-import net.dpml.metro.part.Type;
+import net.dpml.metro.part.Holder;
+import net.dpml.metro.part.BadStrategyException;

/**
* A type entry is an immutable datatype associating a classname with a

Copied:
development/laboratory/plus/api/part/src/main/net/dpml/metro/type/TypeHandler.java
(from r2062,
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/TypeHandler.java)
==============================================================================
---
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/TypeHandler.java
(original)
+++
development/laboratory/plus/api/part/src/main/net/dpml/metro/type/TypeHandler.java
Mon Mar 14 13:15:21 2005
@@ -16,13 +16,14 @@
* limitations under the License.
*/

-package net.dpml.metro.part;
+package net.dpml.metro.type;

import java.io.InputStream;
import java.io.IOException;
import java.net.URI;

-import net.dpml.metro.part.Type;
+import net.dpml.metro.part.Handler;
+import net.dpml.metro.part.BadStrategyException;

/**
* Definition of a type handler.

Copied:
development/laboratory/plus/api/part/src/main/net/dpml/metro/type/TypeHandlerRuntimeException.java
(from r2062,
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/TypeHandlerRuntimeException.java)
==============================================================================
---
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/TypeHandlerRuntimeException.java
(original)
+++
development/laboratory/plus/api/part/src/main/net/dpml/metro/type/TypeHandlerRuntimeException.java
Mon Mar 14 13:15:21 2005
@@ -16,7 +16,7 @@
* limitations under the License.
*/

-package net.dpml.metro.part;
+package net.dpml.metro.type;

/**
* Unexpected runtime exception indicating an internal type handler error.

Copied:
development/laboratory/plus/api/part/src/main/net/dpml/metro/type/TypeNotFoundException.java
(from r2062,
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/TypeNotFoundException.java)
==============================================================================
---
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/TypeNotFoundException.java
(original)
+++
development/laboratory/plus/api/part/src/main/net/dpml/metro/type/TypeNotFoundException.java
Mon Mar 14 13:15:21 2005
@@ -16,7 +16,7 @@
* limitations under the License.
*/

-package net.dpml.metro.part;
+package net.dpml.metro.type;

/**
* Exception thrown when an attempt is made to reference an unknown catalog
entry.

Copied:
development/laboratory/plus/api/part/src/main/net/dpml/metro/type/TypeReference.java
(from r2062,
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/TypeReference.java)
==============================================================================
---
development/laboratory/plus/api/part/src/main/net/dpml/metro/part/TypeReference.java
(original)
+++
development/laboratory/plus/api/part/src/main/net/dpml/metro/type/TypeReference.java
Mon Mar 14 13:15:21 2005
@@ -16,11 +16,13 @@
* limitations under the License.
*/

-package net.dpml.metro.part;
+package net.dpml.metro.type;

import java.net.URI;
import java.util.Properties;

+import net.dpml.metro.part.Descriptor;
+
/**
* A type reference is a reference to registry entry. The reference
contains
* the uri of the registry and the classname key of an entry in the registry.



  • svn commit: r2067 - development/laboratory/plus/api/part/src/main/net/dpml/metro/type, mcconnell, 03/14/2005

Archive powered by MHonArc 2.6.24.

Top of Page