Uses of Interface
org.eclipse.emf.validation.service.IConstraintDescriptor

Packages that use IConstraintDescriptor
org.eclipse.emf.validation.model Types defining the "data model" of the EMF Validation plug-in, in most cases mapping directly to constructs in the constraintProviders extension point schema.  
org.eclipse.emf.validation.service The semi-public (internal-public) package defining the API for invocation of the validation engine and for the implementation of constraint providers.  
org.eclipse.emf.validation.xml The API for specification and processing of constraints in XML.  
 

Uses of IConstraintDescriptor in org.eclipse.emf.validation.model
 

Methods in org.eclipse.emf.validation.model that return IConstraintDescriptor
 IConstraintDescriptor ModelConstraint.getDescriptor()
           
 IConstraintDescriptor IModelConstraint.getDescriptor()
          Obtains my descriptor, which provides a variety of meta-data about me.
 

Methods in org.eclipse.emf.validation.model with parameters of type IConstraintDescriptor
 void Category.addConstraint(IConstraintDescriptor constraint)
          Adds a constraint to me.
 void Category.removeConstraint(IConstraintDescriptor constraint)
          Removes a constraint from me.
 

Constructors in org.eclipse.emf.validation.model with parameters of type IConstraintDescriptor
ModelConstraint(IConstraintDescriptor descriptor)
          Constructs me with the provided non-null constraint descriptor.
 

Uses of IConstraintDescriptor in org.eclipse.emf.validation.service
 

Classes in org.eclipse.emf.validation.service that implement IConstraintDescriptor
 class AbstractConstraintDescriptor
           A partial implementation of the IConstraintDescriptor interface that is useful for subclassing.
 

Methods in org.eclipse.emf.validation.service that return IConstraintDescriptor
 IConstraintDescriptor ConstraintRegistry.getDescriptor(java.lang.String id)
          Obtains the unique constraint descriptor having the specified ID.
 IConstraintDescriptor ConstraintRegistry.getDescriptor(java.lang.String pluginId, java.lang.String id)
          Obtains the unique constraint descriptor having the specified ID.
 IConstraintDescriptor AbstractConstraintDescriptor.getDescriptor()
           
 

Methods in org.eclipse.emf.validation.service with parameters of type IConstraintDescriptor
 void ConstraintRegistry.register(IConstraintDescriptor descriptor)
          Registers a new constraint descriptor.
 void ConstraintRegistry.unregister(IConstraintDescriptor descriptor)
          Unregisters an existing constraint descriptor.
 

Uses of IConstraintDescriptor in org.eclipse.emf.validation.xml
 

Subinterfaces of IConstraintDescriptor in org.eclipse.emf.validation.xml
 interface IXmlConstraintDescriptor
          Interface provided by constraint descriptors that are parsed from XML configuration data (such as is implemented in plug-in manifests).
 

Classes in org.eclipse.emf.validation.xml that implement IConstraintDescriptor
 class AbstractXmlConstraintDescriptor
           This class provides an abstract implementation of an XML constraint descriptor that is used to provide descriptions of a particular constraint from an IConfigurationElement.
 


Copyright 2002, 2006 IBM Corporation and others.
All Rights Reserved.