Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Modeling » EMF » How to get the org.eclipse.uml2.uml.Type?
How to get the org.eclipse.uml2.uml.Type? [message #958844] Fri, 26 October 2012 08:56 Go to next message
Taimo Maier is currently offline Taimo MaierFriend
Messages: 14
Registered: October 2012
Junior Member
Hello everybody,

I have a problem:
I want to give as a Parameter an EList<org.eclipse.uml2.uml.Type>, but when I try to cast the Type (paratype in this example below) I get an error:
Quote:
java.lang.ClassCastException: java.lang.Class incompatible with org.eclipse.uml2.uml.Type


Method[] m = c.getDeclaredMethods();
Class[] paratypes;
		
for (Method method : m) {
		paratypes = method.getParameterTypes();

		if(paratypes.length > 0) {
			for (Class paratype : paratypes) {
				methodenParameterList.add((org.eclipse.uml2.uml.Type) paratype);	
...


So is there any possibility to get the org.eclipse.uml2.uml.Type or to convert the normal type?

Thanks
Re: How to get the org.eclipse.uml2.uml.Type? [message #959235 is a reply to message #958844] Fri, 26 October 2012 14:59 Go to previous messageGo to next message
Ed Merks is currently offline Ed MerksFriend
Messages: 33133
Registered: July 2009
Senior Member
No, there isn't a general mechanism for mapping Java's reflective data
back to EMF's reflective data.

On 26/10/2012 3:43 PM, Taimo Maier wrote:
> Hello everybody,
>
> I have a problem:
> I want to give as a Parameter an EList<org.eclipse.uml2.uml.Type>, but
> when I try to cast the Type (paratype in this example below) I get an
> error:
> Quote:
>> java.lang.ClassCastException: java.lang.Class incompatible with
>> org.eclipse.uml2.uml.Type
>
>
>
> Method[] m = c.getDeclaredMethods();
> Class[] paratypes;
>
> for (Method method : m) {
> paratypes = method.getParameterTypes();
>
> if(paratypes.length > 0) {
> for (Class paratype : paratypes) {
> methodenParameterList.add((org.eclipse.uml2.uml.Type) paratype);
> ..
>
>
> So is there any possibility to get the org.eclipse.uml2.uml.Type or to
> convert the normal type?
>
> Thanks
>


Ed Merks
Professional Support: https://www.macromodeling.com/
Re: How to get the org.eclipse.uml2.uml.Type? [message #961829 is a reply to message #959235] Sun, 28 October 2012 16:38 Go to previous messageGo to next message
Taimo Maier is currently offline Taimo MaierFriend
Messages: 14
Registered: October 2012
Junior Member
What is the most elegant and intelligent way?
Re: How to get the org.eclipse.uml2.uml.Type? [message #961841 is a reply to message #961829] Sun, 28 October 2012 16:45 Go to previous messageGo to next message
Ed Merks is currently offline Ed MerksFriend
Messages: 33133
Registered: July 2009
Senior Member
Taimo,

Taking a step back, why do you need to solve this problem?

On 28/10/2012 5:38 PM, Taimo Maier wrote:
> What is the most elegant and intelligent way?


Ed Merks
Professional Support: https://www.macromodeling.com/
Re: How to get the org.eclipse.uml2.uml.Type? [message #961960 is a reply to message #958844] Sun, 28 October 2012 18:58 Go to previous messageGo to next message
Ed Willink is currently offline Ed WillinkFriend
Messages: 7655
Registered: July 2009
Senior Member
Hi

I suspect that you just have an import typo.

You need to explicitly import/use org.eclipse.uml2.uml.Class to avoid
confusion with java.lang.Class.

Regards

Ed Willink


On 26/10/2012 14:43, Taimo Maier wrote:
> Hello everybody,
>
> I have a problem:
> I want to give as a Parameter an EList<org.eclipse.uml2.uml.Type>, but
> when I try to cast the Type (paratype in this example below) I get an
> error:
> Quote:
>> java.lang.ClassCastException: java.lang.Class incompatible with
>> org.eclipse.uml2.uml.Type
>
>
>
> Method[] m = c.getDeclaredMethods();
> Class[] paratypes;
>
> for (Method method : m) {
> paratypes = method.getParameterTypes();
>
> if(paratypes.length > 0) {
> for (Class paratype : paratypes) {
> methodenParameterList.add((org.eclipse.uml2.uml.Type) paratype);
> ..
>
>
> So is there any possibility to get the org.eclipse.uml2.uml.Type or to
> convert the normal type?
>
> Thanks
>
Re: How to get the org.eclipse.uml2.uml.Type? [message #962793 is a reply to message #961960] Mon, 29 October 2012 10:32 Go to previous messageGo to next message
Taimo Maier is currently offline Taimo MaierFriend
Messages: 14
Registered: October 2012
Junior Member
Which typo?
But in general how would you solve the problem to get the org.eclipse.uml2.uml.Type?
Re: How to get the org.eclipse.uml2.uml.Type? [message #962826 is a reply to message #962793] Mon, 29 October 2012 11:01 Go to previous messageGo to next message
Ed Merks is currently offline Ed MerksFriend
Messages: 33133
Registered: July 2009
Senior Member
Taimo,

Of course in general there is no corresponding UML Type. In fact UML
knows nothing about the possibility that there might even exist a
corresponding type, so it begs the question, what problem are you trying
to solve? You've not answered that.


On 29/10/2012 11:32 AM, Taimo Maier wrote:
> Which typo?
> But in general how would you solve the problem to get the
> org.eclipse.uml2.uml.Type?


Ed Merks
Professional Support: https://www.macromodeling.com/
Re: How to get the org.eclipse.uml2.uml.Type? [message #962838 is a reply to message #962826] Mon, 29 October 2012 11:11 Go to previous messageGo to next message
Taimo Maier is currently offline Taimo MaierFriend
Messages: 14
Registered: October 2012
Junior Member
You're right, sorry...
For exmaple I need to give the parameter Type to the methode createAssociation(...,
..., ..., ..., ..., Type end1Type, ..., ..., ..., ..., ...) or for createOwnedAttribute(..., Type type)
Re: How to get the org.eclipse.uml2.uml.Type? [message #962865 is a reply to message #962838] Mon, 29 October 2012 11:39 Go to previous messageGo to next message
Ed Merks is currently offline Ed MerksFriend
Messages: 33133
Registered: July 2009
Senior Member
Taimo,

There's nothing in UML that restricts these types to correspond in any
way to anything in Java. You might generate C++ from your UML model.
So I don't understand how you expect there to be any mechanism for
determining a UML Type given only a Java Class. If you're using UML in
some specific way, i.e., in a way that lets you specify how UML Types
correspond to Java, that's something you've not explained.


On 29/10/2012 12:11 PM, Taimo Maier wrote:
> You're right, sorry...
> For exmaple I need to give the parameter Type to the methode
> createAssociation(...,
> .., ..., ..., ..., Type end1Type, ..., ..., ..., ..., ...) or for
> createOwnedAttribute(..., Type type)


Ed Merks
Professional Support: https://www.macromodeling.com/
Re: How to get the org.eclipse.uml2.uml.Type? [message #962951 is a reply to message #962865] Mon, 29 October 2012 13:03 Go to previous messageGo to next message
Taimo Maier is currently offline Taimo MaierFriend
Messages: 14
Registered: October 2012
Junior Member
The aim is to generate UML or EMF files to generate models from given classes with information like attributes, associations, etc. It's a Java stand alone project and the information are readout via Reflection. So I'm looking for a possibility to get the Type for the methods createAttribute, createAssociation, etc.
http://help.eclipse.org/helios/index.jsp?topic=%2Forg.eclipse.uml2.doc%2Freferences%2Fjavadoc%2Forg%2Feclipse%2Fuml2%2Fuml%2FType.html
Re: How to get the org.eclipse.uml2.uml.Type? [message #962965 is a reply to message #962951] Mon, 29 October 2012 13:12 Go to previous messageGo to next message
Ed Merks is currently offline Ed MerksFriend
Messages: 33133
Registered: July 2009
Senior Member
Taimo,

It seems likely that there exists no corresponding UML Type for any
given Class. With Ecore you can create wrapper EDataTypes for any given
Java class, but your questions are about UML2 not Ecore. I can't answer
those UML-specific questions. There's a eclipse.modeling.mdt.uml2 forum
for such questions. But even then, the context for your question isn't
clear because it's not clear how you will map UML to Java so it's even
less clear how you ought to do the inverse.


On 29/10/2012 2:04 PM, Taimo Maier wrote:
> The aim is to generate UML or EMF files to generate models from given
> classes with information like attributes, associations, etc. It's a
> Java stand alone project and the information are readout via
> Reflection. So I'm looking for a possibility to get the Type for the
> methods createAttribute, createAssociation, etc.
> http://help.eclipse.org/helios/index.jsp?topic=%2Forg.eclipse.uml2.doc%2Freferences%2Fjavadoc%2Forg%2Feclipse%2Fuml2%2Fuml%2FType.html
>
>


Ed Merks
Professional Support: https://www.macromodeling.com/
Re: How to get the org.eclipse.uml2.uml.Type? [message #962972 is a reply to message #962951] Mon, 29 October 2012 13:17 Go to previous messageGo to next message
Christian Damus is currently offline Christian DamusFriend
Messages: 1270
Registered: July 2009
Location: Canada
Senior Member

Hi, Taimo,

The Type is some element in your UML model. If your model doesn't
already contain the Type instance that you need, then you will have to
create it.

There are many different kinds of Type that you can create in a UML
model: Class, Interface, DataType, Actor, UseCase, Node, even
Association, to name just a few. Presumably you will create UML Class
elements to represent Java classes and UML Interface elements to
represent java interfaces (I'm just guessing).

A UML Package element has short-cut methods for create some types, like
createOwnedClass(...). Otherwise you can always use the UMLFactory to
create the kind of Type that you need and add it to a Package's
getOwnedTypes() list.

HTH,

Christian


On 2012-10-29 13:04:01 +0000, Taimo Maier said:

> The aim is to generate UML or EMF files to generate models from given
> classes with information like attributes, associations, etc. It's a
> Java stand alone project and the information are readout via
> Reflection. So I'm looking for a possibility to get the Type for the
> methods createAttribute, createAssociation, etc.
> http://help.eclipse.org/helios/index.jsp?topic=%2Forg.eclipse.uml2.doc%2Freferences%2Fjavadoc%2Forg%2Feclipse%2Fuml2%2Fuml%2FType.html
>
Re: How to get the org.eclipse.uml2.uml.Type? [message #963125 is a reply to message #962972] Mon, 29 October 2012 15:43 Go to previous messageGo to next message
Taimo Maier is currently offline Taimo MaierFriend
Messages: 14
Registered: October 2012
Junior Member
Okay, at the moment I try another way:
Like in my code example I get a Type (paratype) and now I have to know the EClassifier. How can I get the EClassifier from paratype?

Method[] m = c.getDeclaredMethods();
Class[] paratypes;
		
for (Method method : m) {
		paratypes = method.getParameterTypes();

		if(paratypes.length > 0) {
			for (Class paratype : paratypes) {
	
...



private void addEAttribute(EClass clazz, String name, EClassifier type)
{
        final EAttribute attribute = EcoreFactory.eINSTANCE.createEAttribute();       
        attribute.setName(name);
	attribute.setEType(type);
	clazz.getEStructuralFeatures().add(attribute);
}
Re: How to get the org.eclipse.uml2.uml.Type? [message #963145 is a reply to message #963125] Mon, 29 October 2012 15:54 Go to previous messageGo to next message
Ed Merks is currently offline Ed MerksFriend
Messages: 33133
Registered: July 2009
Senior Member
Taimo,

You can always create an EDataType and set the instanceClass. You can
use one of the the EDataTypes in EcorePackage, if there's one there for
the class you have.


On 29/10/2012 4:43 PM, Taimo Maier wrote:
> Okay, at the moment I try another way:
> Like in my code example I get a Type (paratype) and now I have to know
> the EClassifier. How can I get the EClassifier from paratype?
>
>
> Method[] m = c.getDeclaredMethods();
> Class[] paratypes;
>
> for (Method method : m) {
> paratypes = method.getParameterTypes();
>
> if(paratypes.length > 0) {
> for (Class paratype : paratypes) {
>
> ..
>
>
>
> private void addEAttribute(EClass clazz, String name, EClassifier type)
> {
> final EAttribute attribute =
> EcoreFactory.eINSTANCE.createEAttribute(); attribute.setName(name);
> attribute.setEType(type);
> clazz.getEStructuralFeatures().add(attribute);
> }


Ed Merks
Professional Support: https://www.macromodeling.com/
Re: How to get the org.eclipse.uml2.uml.Type? [message #963146 is a reply to message #963125] Mon, 29 October 2012 15:54 Go to previous messageGo to next message
Christian Damus is currently offline Christian DamusFriend
Messages: 1270
Registered: July 2009
Location: Canada
Senior Member

Hi, Taimo,

Now you're creating an Ecore model representing your Java classes, not
a UML model? Didn't you need a UML model?

Ecore is a modeling language like UML: if you need to create a model
of your Java classes using Ecore, then you have to create appropriate
EClassifiers as you would have to create appropriate Types in a UML
model.

I think there's something fundamental missing from the discussion,
which probably is an incorrect assumption about Ecore's and UML's
capabilities. Your application cannot just "get" an Ecore EClassifier
or a UML Type "from" a Java class. Your application has to *create*
the model.

Cheers,

Christian


On 2012-10-29 15:43:21 +0000, Taimo Maier said:

> Okay, at the moment I try another way:
> Like in my code example I get a Type (paratype) and now I have to know
> the EClassifier. How can I get the EClassifier from paratype?
>
>
> Method[] m = c.getDeclaredMethods();
> Class[] paratypes;
>
> for (Method method : m) {
> paratypes = method.getParameterTypes();
>
> if(paratypes.length > 0) {
> for (Class paratype : paratypes) {
>
> ..
>
>
>
> private void addEAttribute(EClass clazz, String name, EClassifier type)
> {
> final EAttribute attribute =
> EcoreFactory.eINSTANCE.createEAttribute();
> attribute.setName(name);
> attribute.setEType(type);
> clazz.getEStructuralFeatures().add(attribute);
> }
Re: How to get the org.eclipse.uml2.uml.Type? [message #963215 is a reply to message #963146] Mon, 29 October 2012 16:51 Go to previous messageGo to next message
Taimo Maier is currently offline Taimo MaierFriend
Messages: 14
Registered: October 2012
Junior Member
Yes, now I'm creating an Ecore model. In the end it doesn't matter whether it's an Ecore model or an UML model.

How do you mean? I tried this, but it didn't work...
for (Method method : m) {
		
			//mod = method.getModifiers();
			paratypes = method.getParameterTypes();

			if(paratypes.length > 0) {
				for (Class paratype : paratypes) {

					EDataType type = null;
					type.setInstanceClass(paratype.getClass());
					type.setInstanceClassName(paratype.toString());
					methodenParameterList.add(type);


Quote:
I think there's something fundamental missing from the discussion,
which probably is an incorrect assumption about Ecore's and UML's
capabilities. Your application cannot just "get" an Ecore EClassifier
or a UML Type "from" a Java class. Your application has to *create*
the model.

I'm very new to this topic, so it can be that I do something wrong this is why I asked you Smile So thank a lot for your (Christian W. Damus, Ed Merks and Ed Willink) help Smile
Re: How to get the org.eclipse.uml2.uml.Type? [message #963237 is a reply to message #963215] Mon, 29 October 2012 17:07 Go to previous messageGo to next message
Christian Damus is currently offline Christian DamusFriend
Messages: 1270
Registered: July 2009
Location: Canada
Senior Member

Hi, Taimo,

What didn't work?

What is "methodenParameterList" ? Is it a list of EClassifiers? Or a
list of EParameters?

You probably don't want to create a new EDataType for every Java method
parameter type, because many methods will have parameters of the same
type, so you will end up creating EDataTypes for the same Java classes
over and over again. Not to mention that you aren't adding them to the
model. They need to be added to some EPackage.

I think Ed's suggestion to take a step back and consider what you are
actually trying to do is good advice. If it doesn't matter whether the
model is an Ecore or a UML model, then it seems doubtful that the model
can be of any use at all.

Cheers,

Christian


On 2012-10-29 16:51:16 +0000, Taimo Maier said:

> Yes, now I'm creating an Ecore model. In the end it doesn't matter
> whether it's an Ecore model or an UML model.
>
> How do you mean? I tried this, but it didn't work...
>
> for (Method method : m) {
>
> //mod = method.getModifiers();
> paratypes = method.getParameterTypes();
>
> if(paratypes.length > 0) {
> for (Class paratype : paratypes) {
>
> EDataType type = null;
> type.setInstanceClass(paratype.getClass());
> type.setInstanceClassName(paratype.toString());
> methodenParameterList.add(type);
>
> Quote:
>> I think there's something fundamental missing from the discussion,
>> which probably is an incorrect assumption about Ecore's and UML's
>> capabilities. Your application cannot just "get" an Ecore EClassifier
>> or a UML Type "from" a Java class. Your application has to *create*
>> the model.
>
> I'm very new to this topic, so it can be that I do something wrong this
> is why I asked you :) So thank a lot for your (Christian W. Damus, Ed
> Merks and Ed Willink) help :)
Re: How to get the org.eclipse.uml2.uml.Type? [message #963855 is a reply to message #963215] Tue, 30 October 2012 04:30 Go to previous messageGo to next message
Ed Merks is currently offline Ed MerksFriend
Messages: 33133
Registered: July 2009
Senior Member
Taimo,

Comments below.

On 29/10/2012 5:51 PM, Taimo Maier wrote:
> Yes, now I'm creating an Ecore model. In the end it doesn't matter
> whether it's an Ecore model or an UML model.
>
> How do you mean? I tried this, but it didn't work...
>
> for (Method method : m) {
>
> //mod = method.getModifiers();
> paratypes = method.getParameterTypes();
>
> if(paratypes.length > 0) {
> for (Class paratype : paratypes) {
>
> EDataType type = null;
> type.setInstanceClass(paratype.getClass());
I imagine you'll get a null pointer exception.
> type.setInstanceClassName(paratype.toString());
You don't have to set both; one is derived from the other.
> methodenParameterList.add(type);
Have a look at org.eclipse.emf.importer.java.builder.JavaEcoreBuilder to
see something similar.

It seems likely you'd want to take generics into account, but that will
only make the problem harder.
>
> Quote:
>> I think there's something fundamental missing from the discussion,
>> which probably is an incorrect assumption about Ecore's and UML's
>> capabilities. Your application cannot just "get" an Ecore EClassifier
>> or a UML Type "from" a Java class. Your application has to *create*
>> the model.
>
> I'm very new to this topic, so it can be that I do something wrong
> this is why I asked you :) So thank a lot for your (Christian W.
> Damus, Ed Merks and Ed Willink) help :)


Ed Merks
Professional Support: https://www.macromodeling.com/
Re: How to get the org.eclipse.uml2.uml.Type? [message #964164 is a reply to message #963237] Tue, 30 October 2012 10:04 Go to previous messageGo to next message
Taimo Maier is currently offline Taimo MaierFriend
Messages: 14
Registered: October 2012
Junior Member
Christian W. Damus wrote on Mon, 29 October 2012 13:07
Hi, Taimo,
What didn't work?

Here is the error message:
Quote:
java.lang.NullPointerException
at main.MethodenInfoPluglet.methodsParameterType(Unknown Source)


Quote:
What is "methodenParameterList" ? Is it a list of EClassifiers? Or a
list of EParameters?

It's better when I post the full code.

methodsParameterType from the class MethodenInfoPluglet:
	@SuppressWarnings("unchecked")
	public EList<EClassifier> methodsParameterType(Class c) throws ClassNotFoundException {
			
		EList<EClassifier> methodenParameterList = new BasicEList<EClassifier>();
		Method[] m = c.getDeclaredMethods();
		Class[] paratypes;
		
		for (Method method : m) {
		
			//mod = method.getModifiers();
			paratypes = method.getParameterTypes();

			if(paratypes.length > 0) {
				for (Class paratype : paratypes) {
				
					
					EDataType type = null;
					type.setInstanceClass(paratype.getClass());
					
					type.setInstanceClassName(paratype.toString());
					methodenParameterList.add(type);
					
					
				}
			} else
				methodenParameterList.add(null);
		}
		return methodenParameterList;
	}




public class ModellErstellenPluglet3 {
        PackageInfoPluglet packageInfoPluglet = new PackageInfoPluglet();
	KlassenInfoPluglet klassenInfoPluglet = new KlassenInfoPluglet();
	AttributeInfoPluglet attributeInfoPluglet = new AttributeInfoPluglet();
	MethodenInfoPluglet methodenInfoPluglet = new MethodenInfoPluglet();	
	EntityInfoPluglet entityInfoPluglet = new EntityInfoPluglet();

        public void diagrammErstellen(final String directory, final java.lang.Class<?> clazz) throws ClassNotFoundException {
                // Methoden
		final EList<String> methodsWithoutReturnNameList = methodenInfoPluglet.methodenOhneRueckgabewertAusgeben(clazz);
		final EList<EClassifier> methodsParameterTypeList = methodenInfoPluglet.methodsParameterType(clazz);

                        ...

                        ResourceSet resourceSet = new ResourceSetImpl();
                        resourceSet.getResourceFactoryRegistry().getExtensionToFactoryMap().put("xml", new XMLResourceFactoryImpl());
		        
		        URI fileUri = URI.createFileURI("C:/" + directory + className + "1.ecore");
		        Resource res = resourceSet.createResource(fileUri);

				EPackage ePackage  = createPackage(packageName);
				EClass eClass = createEClass(ePackage, className);
				
				for (int i=0; i < methodsWithoutReturnNameList.size(); i++) {
					addEOperation(eClass, methodsWithoutReturnNameList.get(i), methodsWithoutReturnNameList, methodsParameterTypeList);
				}
                                ...
}


private EOperation addEOperation(EClass clazz, String name, EList<String> paramNames, EList<EClassifier> paramTypes) { // , EClassifier type
		
		final EOperation tempEOperation = EcoreFactory.eINSTANCE.createEOperation();
//		tempOperation.setEType(value);
		tempEOperation.setName(name);
		if (paramNames != null) {
			for (int i = 0; i < paramNames.size(); i++) {
				createOwnedParameter(tempEOperation, paramNames.get(i)); // , paramTypes.get(i)
			}
		}
		clazz.getEOperations().add(tempEOperation);
		return tempEOperation;
	}


So the tempEOperation.setEType(); needs an EClassifier.



Quote:
I think Ed's suggestion to take a step back and consider what you are
actually trying to do is good advice.

I try to explain: The aim is to create models from given classes. The information like attributes, operations, etc. must be in the model (So I think it doesn't matter whether it's an Ecore model or an UML model? The aim is that all information are in the model). I readout all information via Reflection in Java and in the methodsParameterType I get the Type, but it's an Java type, but .setEType() needs an EClassifier. So the question is how to get the EClassifier. I hope that it's clear now.


[Updated on: Tue, 30 October 2012 10:07]

Report message to a moderator

Re: How to get the org.eclipse.uml2.uml.Type? [message #964362 is a reply to message #964164] Tue, 30 October 2012 13:11 Go to previous messageGo to next message
Christian Damus is currently offline Christian DamusFriend
Messages: 1270
Registered: July 2009
Location: Canada
Senior Member

Hi, Taimo,

OK, I see. So, you will probably have to create and maintain a model
that has EPackages for each Java package, or one EPackage to collect
all the Java types that you're working with. Every time you need to
get an EClassifier for some Java class, you would need to look for it
in the model in case it was encountered before and added to the model.
If you don't already have it, then create the EClassifier and add it to
the appropriate EPackage in your model so you can find it again, later.

Rather than collect method parameter type EClasses in a list, why not
just create and add the EParameters to the EOperation? Then you'll
have a model of the operation.

Ed suggested looking at an example that builds an Ecore model from
Java. That should definitely help.

cW
Re: How to get the org.eclipse.uml2.uml.Type? [message #964414 is a reply to message #964362] Tue, 30 October 2012 13:54 Go to previous messageGo to next message
Taimo Maier is currently offline Taimo MaierFriend
Messages: 14
Registered: October 2012
Junior Member
Okay thank you for your answer, but I don't know how to realize this step programmatically from getting the normal Java Type to getting the EParameter or EClass.

Re: How to get the org.eclipse.uml2.uml.Type? [message #964450 is a reply to message #964414] Tue, 30 October 2012 14:25 Go to previous message
Ed Merks is currently offline Ed MerksFriend
Messages: 33133
Registered: July 2009
Senior Member
Taimo,

You need to demonstrate a little more initiative. I already pointed out
code that does a very similar thing, so have a look at that rather than
asking someone to spell out every detail for you.


On 30/10/2012 2:54 PM, Taimo Maier wrote:
> Okay thank you for your answer, but I don't know how to realize this
> step programmatically from getting the normal Java Type to getting the
> EParameter or EClass.
>
>


Ed Merks
Professional Support: https://www.macromodeling.com/
Previous Topic:EMF saving resources problem
Next Topic:[CDO] Detecting whether a legacy object is being populated from revision data
Goto Forum:
  


Current Time: Tue Apr 16 07:03:55 GMT 2024

Powered by FUDForum. Page generated in 0.08902 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top