Instrumenting runtime classes with toString() to facilitate debuging
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@672978 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
46843700fd
commit
a3c2a9e319
3 changed files with 11 additions and 0 deletions
|
|
@ -103,4 +103,8 @@ public class RuntimeComponentImpl extends ComponentImpl implements RuntimeCompon
|
|||
public void setModelResolver(ModelResolver modelResolver) {
|
||||
this.modelResolver = modelResolver;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return getName();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -136,4 +136,7 @@ public class RuntimeComponentReferenceImpl extends ComponentReferenceImpl implem
|
|||
return policyProviders.get(binding);
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return getName();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -155,4 +155,8 @@ public class RuntimeComponentServiceImpl extends ComponentServiceImpl implements
|
|||
public List<PolicyProvider> getPolicyProviders(Binding binding) {
|
||||
return policyProviders.get(binding);
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return getName();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue