blob: 18d4e8a36811ed135e28368e39a3acdd9b7d06ad [file] [log] [blame]
gkessler40272782010-03-17 00:22:30 +00001/***************************************************************************************************
2 * Copyright (c) 2005, 2006 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * IBM Corporation - initial API and implementation
10 * Oracle Corporation - revision
11 **************************************************************************************************/
12package org.eclipse.jst.jsf.facesconfig.emf;
13
14import org.eclipse.emf.common.util.EList;
15import org.eclipse.emf.ecore.EObject;
16
17/**
18 * <!-- begin-user-doc -->
19 * A representation of the model object '<em><b>Default Validators Type</b></em>'.
20 * <!-- end-user-doc -->
21 *
22 * <p>
23 * The following features are supported:
24 * <ul>
25 * <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DefaultValidatorsType#getValidatorId <em>Validator Id</em>}</li>
26 * <li>{@link org.eclipse.jst.jsf.facesconfig.emf.DefaultValidatorsType#getId <em>Id</em>}</li>
27 * </ul>
28 * </p>
29 *
30 * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDefaultValidatorsType()
31 * @model extendedMetaData="name='default-validators_._type' kind='elementOnly'"
32 * @generated
33 */
34public interface DefaultValidatorsType extends EObject {
35 /**
36 * <!-- begin-user-doc -->
37 * <!-- end-user-doc -->
38 * @generated
39 */
40 String copyright = "Copyright (c) 2005, 2006 IBM Corporation and others"; //$NON-NLS-1$
41
42 /**
43 * Returns the value of the '<em><b>Validator Id</b></em>' containment reference list.
44 * The list contents are of type {@link org.eclipse.jst.jsf.facesconfig.emf.ValidatorIdType}.
45 * <!-- begin-user-doc -->
46 * <p>
47 * If the meaning of the '<em>Validator Id</em>' containment reference list isn't clear,
48 * there really should be more of a description here...
49 * </p>
50 * <!-- end-user-doc -->
51 * @return the value of the '<em>Validator Id</em>' containment reference list.
52 * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDefaultValidatorsType_ValidatorId()
53 * @model type="org.eclipse.jst.jsf.facesconfig.emf.ValidatorIdType" containment="true"
54 * extendedMetaData="kind='element' name='validator-id' namespace='##targetNamespace'"
55 * @generated
56 */
57 EList getValidatorId();
58
59 /**
60 * Returns the value of the '<em><b>Id</b></em>' attribute.
61 * <!-- begin-user-doc -->
62 * <p>
63 * If the meaning of the '<em>Id</em>' attribute isn't clear,
64 * there really should be more of a description here...
65 * </p>
66 * <!-- end-user-doc -->
67 * @return the value of the '<em>Id</em>' attribute.
68 * @see #setId(String)
69 * @see org.eclipse.jst.jsf.facesconfig.emf.FacesConfigPackage#getDefaultValidatorsType_Id()
70 * @model unique="false" id="true" dataType="org.eclipse.emf.ecore.xml.type.ID"
71 * extendedMetaData="kind='attribute' name='id' namespace='##targetNamespace'"
72 * @generated
73 */
74 String getId();
75
76 /**
77 * Sets the value of the '{@link org.eclipse.jst.jsf.facesconfig.emf.DefaultValidatorsType#getId <em>Id</em>}' attribute.
78 * <!-- begin-user-doc -->
79 * <!-- end-user-doc -->
80 * @param value the new value of the '<em>Id</em>' attribute.
81 * @see #getId()
82 * @generated
83 */
84 void setId(String value);
85
86} // DefaultValidatorsType