Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "QVTo/New and Noteworthy/Helios"

Line 46: Line 46:
  
 
The milestone was completed on Tuesday, 2 February 2010
 
The milestone was completed on Tuesday, 2 February 2010
 +
 +
====Enhancements====
  
 
[https://bugs.eclipse.org/bugs/show_bug.cgi?id=287685 287685] Provide support for standalone QVTO execution
 
[https://bugs.eclipse.org/bugs/show_bug.cgi?id=287685 287685] Provide support for standalone QVTO execution
Line 51: Line 53:
 
[https://bugs.eclipse.org/bugs/show_bug.cgi?id=287714 287714] Revise excessive checking for [inout] and [out] parameter types
 
[https://bugs.eclipse.org/bugs/show_bug.cgi?id=287714 287714] Revise excessive checking for [inout] and [out] parameter types
  
[https://bugs.eclipse.org/bugs/show_bug.cgi?id=297966 297966] QVTo should align their grammars to LPGv2
+
======LPG v2.0.17 adoption======
  
[https://bugs.eclipse.org/bugs/show_bug.cgi?id=300560 300560] Sync with OCL grammar on reintroducing official LPG 2 templates
+
[https://bugs.eclipse.org/bugs/show_bug.cgi?id=297966 297966] QVTo grammar is aligned to LPGv2
 +
 
 +
[https://bugs.eclipse.org/bugs/show_bug.cgi?id=300560 300560] Reintroducing official LPGv2 templates
  
 
==Milestone 6==
 
==Milestone 6==
Line 59: Line 63:
 
The milestone was completed on Tuesday, 16 March 2010
 
The milestone was completed on Tuesday, 16 March 2010
  
[https://bugs.eclipse.org/bugs/show_bug.cgi?id=302592 302592] Sync with changes in OCL on implementing new _ prefix policies
+
====Enhancements====
 +
 
 +
[https://bugs.eclipse.org/bugs/show_bug.cgi?id=302592 302592] New _ (underscore) prefix policies
 +
 
 +
Now parser supports _'xxx' name escaping policy (along with old _xxx).
  
 
==Milestone 7==
 
==Milestone 7==
  
 
The milestone was completed on Tuesday, 4 May 2010
 
The milestone was completed on Tuesday, 4 May 2010
 +
 +
====Enhancements====
  
 
[https://bugs.eclipse.org/bugs/show_bug.cgi?id=308049 308049] Accessing Eclipse console from QVTo black-box library
 
[https://bugs.eclipse.org/bugs/show_bug.cgi?id=308049 308049] Accessing Eclipse console from QVTo black-box library
Line 69: Line 79:
 
Java black-box implementation now has a mean to access QVTo execution context so transformation configuration properties and standard logging capability are available.
 
Java black-box implementation now has a mean to access QVTo execution context so transformation configuration properties and standard logging capability are available.
  
Java black-box library methods that are declared to have an access to QVTo execution context:
+
 
 +
Sample of Java black-box library methods that are declared to have an access to QVTo execution context:
 
<source lang="java">
 
<source lang="java">
 
@Operation (kind=Kind.HELPER, withExecutionContext=true)
 
@Operation (kind=Kind.HELPER, withExecutionContext=true)
Line 86: Line 97:
 
}
 
}
 
</source>
 
</source>
 +
  
 
Sample invocation of the methods above from QVTo script:
 
Sample invocation of the methods above from QVTo script:

Revision as of 17:42, 26 May 2010

Milestone 2

The milestone was completed on Wednesday, 30 September 2009

Enhancements

204085 XMI serialization of AST models created by the QVTo parser

256149 Contextual operation in Java black-box library as non-static Java method

267493 UI creation wizard for QVTo Ant tasks

284989 QVTo Invocation API now handles dynamic models

285007 Semantic highlighting to QVTo editor

287589 Performance improvement of trace generation and look up

287594 Direct support for 'nullable' enumerations

Bugs

287711 Input EObjects having eContainer != null can't be accessed as model extent root objects

Milestone 3

The milestone was completed on Tuesday, 10 November 2009

291458 Content viewer for QVTo concrete syntax files

Milestone 4

The milestone was completed on Wednesday, 16 December 2009

290002 Adopt QVT CST to latest OCL 3.0.0 CST

295060 Transformation executor must accept a generic transformation URI

295844 Implement concept of debuggable QVT Virtual Machine

295845 Provide QVT debug core implementation

296633 Provide debug.ui implementation

Milestone 5

The milestone was completed on Tuesday, 2 February 2010

Enhancements

287685 Provide support for standalone QVTO execution

287714 Revise excessive checking for [inout] and [out] parameter types

LPG v2.0.17 adoption

297966 QVTo grammar is aligned to LPGv2

300560 Reintroducing official LPGv2 templates

Milestone 6

The milestone was completed on Tuesday, 16 March 2010

Enhancements

302592 New _ (underscore) prefix policies

Now parser supports _'xxx' name escaping policy (along with old _xxx).

Milestone 7

The milestone was completed on Tuesday, 4 May 2010

Enhancements

308049 Accessing Eclipse console from QVTo black-box library

Java black-box implementation now has a mean to access QVTo execution context so transformation configuration properties and standard logging capability are available.


Sample of Java black-box library methods that are declared to have an access to QVTo execution context:

@Operation (kind=Kind.HELPER, withExecutionContext=true)
public void logToConsole(org.eclipse.m2m.qvt.oml.util.IContext context, String param) {
	context.getLog().log(param);
}
 
@Operation (withExecutionContext=true)
public void cancelExecution(org.eclipse.m2m.qvt.oml.util.IContext context) {
	context.getMonitor().cancel();
}
 
@Operation (contextual=true, withExecutionContext=true)
public String getConfigProperty(org.eclipse.m2m.qvt.oml.util.IContext context, String strContext) {
	return context.getConfigProperty(strContext).toString();
}


Sample invocation of the methods above from QVTo script:

import org.bar.Foo;
main() {
	logToConsole('console output from blackbox lib');
 
	log('strTest'.getConfigProperty());
 
	cancelExecution();
}

Back to the top