org.eclipse.xsd.XSDPatternFacet Maven / Gradle / Ivy
/**
* Copyright (c) 2002-2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* IBM - Initial API and implementation
*/
package org.eclipse.xsd;
import org.eclipse.emf.common.util.EList;
/**
*
* A representation of the model object
* 'Pattern Facet'.
*
*
*
* The following features are supported:
*
*
* - {@link org.eclipse.xsd.XSDPatternFacet#getValue Value}
*
*
* @see org.eclipse.xsd.XSDPackage#getXSDPatternFacet()
* @model
* @generated
*/
public interface XSDPatternFacet extends XSDRepeatableFacet
{
/**
* Returns the value of the 'Value' attribute list.
* The list contents are of type {@link java.lang.String}.
*
*
* This represents the
* value
* infoset property.
* It is computed from the '{@link #getLexicalValue() Lexical Value}' attribute and should typically not be set directly.
* Each item in the list is a String representing a pattern.
* The overall effect of the list of patterns is the
* logical intersection.
*
*
* @return the value of the 'Value' attribute list.
* @see org.eclipse.xsd.XSDPackage#getXSDPatternFacet_Value()
* @model
* @generated
*/
EList getValue();
}