Package eu.admire.registry.pe

Examples of eu.admire.registry.pe.SimpleProcessingElementDescriptor.addSuperType()


        if (type.getDescriptor() != null)
        {
            descriptor =
                new SimpleProcessingElementDescriptor(
                        null, TypeUtilities.cloneDescriptor(type.getDescriptor()), null);
            descriptor.addSuperType(mExecutionState.getNamespaceManager().resolve(text));
        }
        mType = new ProcessingElementTypeType(descriptor);
    }
   
    @Override
View Full Code Here


        SimpleProcessingElementDescriptor descriptor = null;
        if (type.getDescriptor() != null)
        {
            descriptor =
                new SimpleProcessingElementDescriptor(null, type.getDescriptor(), null);
            descriptor.addSuperType(
                    mExecutionState.getNamespaceManager().resolve(text));
        }
        mType = new ProcessingElementTypeType(descriptor);
    }
   
View Full Code Here

                    null);
        if (mSupertype != null)
        {
            String qName =
                mExecutionState.getNamespaceManager().resolve(mSupertype);
            descriptor.addSuperType(qName);
        }
        return descriptor;
    }
   
    private Graph getGraph()
View Full Code Here

                descriptor.getName(),
                inputCopy,
                outputCopy);
        for (String supertype : descriptor.getSuperType())
        {
            result.addSuperType(supertype);
        }
        return result;
    }
   
View Full Code Here

        SimpleProcessingElementDescriptor desc =
            new SimpleProcessingElementDescriptor(
                    name,
                    TypeUtilities.cloneDescriptor(supertype.getDescriptor()),
                    null);
        desc.addSuperType(supertype.getName());
        mDescriptor = desc;
    }

    public CompositeProcessingElement getImplementation()
    {
View Full Code Here

        SimpleProcessingElementDescriptor descriptor = null;
        if (type.getDescriptor() != null)
        {
            descriptor =
                new SimpleProcessingElementDescriptor(null, type.getDescriptor(), null);
            descriptor.addSuperType(mExecutionState.getNamespaceManager().resolve(text));
        }
        mType = new ProcessingElementTypeType(descriptor);
    }
   
    public void declareArray(int dimension)
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.