Package org.andromda.translation.ocl.node

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


            // we only want to add the first name (since the other
            // names will all be comma seperated and stored within
            // the inACommaFeatureCallParameterOption() method)
            if (this.namesAndTypes.isEmpty())
            {
                TName initialVariableName = name.getName();
                this.orderedNames.add(initialVariableName);
                this.namesAndTypes.put(this.orderedNames.getLast(), null);
            }
        }
View Full Code Here


         * @return AVariableDeclarationList
         */
        public AVariableDeclarationList getList()
        {

            TName initialName = (TName)this.orderedNames.getFirst();

            ATypeDeclaration typeDeclaration = (ATypeDeclaration)namesAndTypes.get(initialName);

            List variableDeclarationListTails = new ArrayList();
            if (!this.orderedNames.isEmpty())
View Full Code Here

TOP

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

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.