Package org.andromda.translation.ocl.node

Examples of org.andromda.translation.ocl.node.AVariableDeclarationListTail


                    ATypeDeclaration typeDecl = (ATypeDeclaration)this.namesAndTypes.get(name);

                    AVariableDeclaration variableDeclaration = new AVariableDeclaration(getName(name.getExpression()),
                            typeDecl);

                    variableDeclarationListTails.add(new AVariableDeclarationListTail(name.getComma(),
                            variableDeclaration, null));
                }
            }

            AVariableDeclarationList list = new AVariableDeclarationList(
View Full Code Here


                if (variableTails != null)
                {
                    Iterator variableTailIt = variableTails.iterator();
                    while (variableTailIt.hasNext())
                    {
                        AVariableDeclarationListTail tail = (AVariableDeclarationListTail)variableTailIt.next();
                        declarations.add(
                                ConcreteSyntaxUtils.newVariableDeclaration(tail.getVariableDeclaration(),
                                        tail.getVariableDeclarationValue()));
                    }
                }
            }
        }
        return (VariableDeclaration[])declarations.toArray(new VariableDeclaration[0]);
View Full Code Here

TOP

Related Classes of org.andromda.translation.ocl.node.AVariableDeclarationListTail

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.