Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.releng.predicates/model/predicates.ecore')
-rw-r--r--plugins/org.eclipse.emf.cdo.releng.predicates/model/predicates.ecore43
1 files changed, 43 insertions, 0 deletions
diff --git a/plugins/org.eclipse.emf.cdo.releng.predicates/model/predicates.ecore b/plugins/org.eclipse.emf.cdo.releng.predicates/model/predicates.ecore
new file mode 100644
index 0000000000..a8aad151d9
--- /dev/null
+++ b/plugins/org.eclipse.emf.cdo.releng.predicates/model/predicates.ecore
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="predicates" nsURI="http://www.eclipse.org/CDO/releng/predicates/1.0"
+ nsPrefix="predicates">
+ <eClassifiers xsi:type="ecore:EClass" name="Predicate" abstract="true" interface="true">
+ <eOperations name="matches" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EBoolean">
+ <eParameters name="project" eType="#//Project"/>
+ </eOperations>
+ </eClassifiers>
+ <eClassifiers xsi:type="ecore:EDataType" name="Project" instanceClassName="org.eclipse.core.resources.IProject"/>
+ <eClassifiers xsi:type="ecore:EClass" name="NamePredicate" eSuperTypes="#//Predicate">
+ <eStructuralFeatures xsi:type="ecore:EAttribute" name="pattern" lowerBound="1"
+ eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
+ </eClassifiers>
+ <eClassifiers xsi:type="ecore:EClass" name="RepositoryPredicate" eSuperTypes="#//Predicate">
+ <eStructuralFeatures xsi:type="ecore:EAttribute" name="project" eType="#//Project"/>
+ </eClassifiers>
+ <eClassifiers xsi:type="ecore:EClass" name="AndPredicate" eSuperTypes="#//Predicate">
+ <eStructuralFeatures xsi:type="ecore:EReference" name="operands" upperBound="-1"
+ eType="#//Predicate" containment="true"/>
+ </eClassifiers>
+ <eClassifiers xsi:type="ecore:EClass" name="OrPredicate" eSuperTypes="#//Predicate">
+ <eStructuralFeatures xsi:type="ecore:EReference" name="operands" upperBound="-1"
+ eType="#//Predicate" containment="true"/>
+ </eClassifiers>
+ <eClassifiers xsi:type="ecore:EClass" name="NotPredicate" eSuperTypes="#//Predicate">
+ <eStructuralFeatures xsi:type="ecore:EReference" name="operand" eType="#//Predicate"
+ containment="true"/>
+ </eClassifiers>
+ <eClassifiers xsi:type="ecore:EClass" name="NaturePredicate" eSuperTypes="#//Predicate">
+ <eStructuralFeatures xsi:type="ecore:EAttribute" name="nature" lowerBound="1"
+ eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
+ </eClassifiers>
+ <eClassifiers xsi:type="ecore:EClass" name="BuilderPredicate" eSuperTypes="#//Predicate">
+ <eStructuralFeatures xsi:type="ecore:EAttribute" name="builder" lowerBound="1"
+ eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
+ </eClassifiers>
+ <eClassifiers xsi:type="ecore:EClass" name="FilePredicate" eSuperTypes="#//Predicate">
+ <eStructuralFeatures xsi:type="ecore:EAttribute" name="filePattern" lowerBound="1"
+ eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
+ <eStructuralFeatures xsi:type="ecore:EAttribute" name="contentPattern" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
+ </eClassifiers>
+</ecore:EPackage>

Back to the top