18 lines
435 B
Java
18 lines
435 B
Java
package fr.n7.simplepdl.design;
|
|
|
|
import org.eclipse.emf.ecore.EObject;
|
|
|
|
/**
|
|
* The services class used by VSM.
|
|
*/
|
|
public class Services {
|
|
|
|
/**
|
|
* See http://help.eclipse.org/neon/index.jsp?topic=%2Forg.eclipse.sirius.doc%2Fdoc%2Findex.html&cp=24 for documentation on how to write service methods.
|
|
*/
|
|
public EObject myService(EObject self, String arg) {
|
|
// TODO Auto-generated code
|
|
return self;
|
|
}
|
|
}
|