Author: mmerz
Date: Mon Feb 14 12:10:30 2005
New Revision: 153841
URL: http://svn.apache.org/viewcvs?view=rev&rev=153841
Log:
class name change LookUp -> Lookup
Contributor: Daryoush Mehrtash
Added:
incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/databinding/AxisTypeLookup.java
- copied, changed from r153839,
incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/databinding/XAxisTypeLookup.java
incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/databinding/SystemTypeLookupService.java
- copied, changed from r153839,
incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/databinding/XSystemTypeLookupService.java
Removed:
incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/databinding/XAxisTypeLookup.java
incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/databinding/XSystemTypeLookupService.java
Copied:
incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/databinding/AxisTypeLookup.java
(from r153839,
incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/databinding/XAxisTypeLookup.java)
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/databinding/AxisTypeLookup.java?view=diff&rev=153841&p1=incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/databinding/XAxisTypeLookup.java&r1=153839&p2=incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/databinding/AxisTypeLookup.java&r2=153841
==============================================================================
---
incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/databinding/XAxisTypeLookup.java
(original)
+++
incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/databinding/AxisTypeLookup.java
Mon Feb 14 12:10:30 2005
@@ -30,14 +30,14 @@
-public class AxisTypeLookUp implements BindingLookupService {
+public class AxisTypeLookup implements BindingLookupService {
TypeMapping tm;
/**
* @param tm
*/
- public AxisTypeLookUp(TypeMapping tm) {
+ public AxisTypeLookup(TypeMapping tm) {
super();
this.tm = tm;
}
Copied:
incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/databinding/SystemTypeLookupService.java
(from r153839,
incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/databinding/XSystemTypeLookupService.java)
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/databinding/SystemTypeLookupService.java?view=diff&rev=153841&p1=incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/databinding/XSystemTypeLookupService.java&r1=153839&p2=incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/databinding/SystemTypeLookupService.java&r2=153841
==============================================================================
---
incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/databinding/XSystemTypeLookupService.java
(original)
+++
incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/axis/databinding/SystemTypeLookupService.java
Mon Feb 14 12:10:30 2005
@@ -30,15 +30,15 @@
-public class SystemLookUpService implements BindingLookupService {
+public class SystemTypeLookupService implements BindingLookupService {
List<BindingLookupService> lookupServiceList = new
ArrayList<BindingLookupService>();
/**
*
*/
- public SystemLookUpService(org.apache.axis.encoding.TypeMapping tm) {
+ public SystemTypeLookupService(org.apache.axis.encoding.TypeMapping tm)
{
lookupServiceList.add(new XmlBeanTypeLookup());
- lookupServiceList.add(new AxisTypeLookUp(tm));
+ lookupServiceList.add(new AxisTypeLookup(tm));
}
/* (non-Javadoc)