diff options
Diffstat (limited to '')
2 files changed, 4 insertions, 4 deletions
diff --git a/branches/sca-java-1.x/modules/implementation-widget-runtime/src/test/resources/content/store.html b/branches/sca-java-1.x/modules/implementation-widget-runtime/src/test/resources/content/store.html index 58f9f560a7..95b0d10a15 100644 --- a/branches/sca-java-1.x/modules/implementation-widget-runtime/src/test/resources/content/store.html +++ b/branches/sca-java-1.x/modules/implementation-widget-runtime/src/test/resources/content/store.html @@ -26,10 +26,10 @@ <script language="JavaScript">
//@Reference
- var catalog = new Reference("Catalog");
+ var catalog = new tuscany.sca.Reference("Catalog");
//@Reference
- var shoppingCart = new Reference("ShoppingCart"); + var shoppingCart = new tuscany.sca.Reference("ShoppingCart"); //@Property var locale = Property("locale");
diff --git a/branches/sca-java-1.x/modules/implementation-widget-runtime/src/test/resources/content/storeJS.html b/branches/sca-java-1.x/modules/implementation-widget-runtime/src/test/resources/content/storeJS.html index 6bbc285377..2e3d76d9a3 100644 --- a/branches/sca-java-1.x/modules/implementation-widget-runtime/src/test/resources/content/storeJS.html +++ b/branches/sca-java-1.x/modules/implementation-widget-runtime/src/test/resources/content/storeJS.html @@ -32,10 +32,10 @@ <script language="JavaScript">
//@Reference
- var catalog = new Reference("Catalog");
+ var catalog = new tuscany.sca.Reference("Catalog");
//@Reference
- var shoppingCart = new Reference("ShoppingCart"); + var shoppingCart = new tuscany.sca.Reference("ShoppingCart"); //@Property var locale = Property("locale");
|