Package org.andromda.metafacades.uml

Examples of org.andromda.metafacades.uml.OperationFacade


        do
        {
            Collection ops = this.getOperations();
            for (final Iterator i = ops.iterator(); i.hasNext();)
            {
                OperationFacade op = (OperationFacade)i.next();
                if (op.hasStereotype(EJBProfile.STEREOTYPE_SELECT_METHOD))
                {
                    retval.add(op);
                }
            }
            if (follow)
View Full Code Here


    {
        Collection collOps = this.getOperations();
        Iterator it = collOps.iterator();
        while (it.hasNext())
        {
            OperationFacade operation = (OperationFacade)it.next();
            if (operation.getName().equalsIgnoreCase(op))
            {
                return true;
            }
        }
        return false;
View Full Code Here

TOP

Related Classes of org.andromda.metafacades.uml.OperationFacade

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.