org.eclipse.emf.ecore.util.EDataTypeUniqueEList Java Examples

The following examples show how to use org.eclipse.emf.ecore.util.EDataTypeUniqueEList. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: BlockImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<TemplateValidationMessage> getValidationMessages() {
    if (validationMessages == null) {
        validationMessages = new EDataTypeUniqueEList<TemplateValidationMessage>(TemplateValidationMessage.class,
                this, TemplatePackage.BLOCK__VALIDATION_MESSAGES);
    }
    return validationMessages;
}
 
Example #2
Source File: LetImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<TemplateValidationMessage> getValidationMessages() {
    if (validationMessages == null) {
        validationMessages = new EDataTypeUniqueEList<TemplateValidationMessage>(TemplateValidationMessage.class,
                this, TemplatePackage.LET__VALIDATION_MESSAGES);
    }
    return validationMessages;
}
 
Example #3
Source File: ContentControlImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<TemplateValidationMessage> getValidationMessages() {
    if (validationMessages == null) {
        validationMessages = new EDataTypeUniqueEList<TemplateValidationMessage>(TemplateValidationMessage.class,
                this, TemplatePackage.CONTENT_CONTROL__VALIDATION_MESSAGES);
    }
    return validationMessages;
}
 
Example #4
Source File: TemplateImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<XWPFRun> getClosingRuns() {
    if (closingRuns == null) {
        closingRuns = new EDataTypeUniqueEList<XWPFRun>(XWPFRun.class, this,
                TemplatePackage.TEMPLATE__CLOSING_RUNS);
    }
    return closingRuns;
}
 
Example #5
Source File: TemplateImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<TemplateValidationMessage> getValidationMessages() {
    if (validationMessages == null) {
        validationMessages = new EDataTypeUniqueEList<TemplateValidationMessage>(TemplateValidationMessage.class,
                this, TemplatePackage.TEMPLATE__VALIDATION_MESSAGES);
    }
    return validationMessages;
}
 
Example #6
Source File: TemplateImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<XWPFRun> getRuns() {
    if (runs == null) {
        runs = new EDataTypeUniqueEList<XWPFRun>(XWPFRun.class, this, TemplatePackage.TEMPLATE__RUNS);
    }
    return runs;
}
 
Example #7
Source File: LetImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<XWPFRun> getRuns() {
    if (runs == null) {
        runs = new EDataTypeUniqueEList<XWPFRun>(XWPFRun.class, this, TemplatePackage.LET__RUNS);
    }
    return runs;
}
 
Example #8
Source File: StaticFragmentImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<TemplateValidationMessage> getValidationMessages() {
    if (validationMessages == null) {
        validationMessages = new EDataTypeUniqueEList<TemplateValidationMessage>(TemplateValidationMessage.class,
                this, TemplatePackage.STATIC_FRAGMENT__VALIDATION_MESSAGES);
    }
    return validationMessages;
}
 
Example #9
Source File: StaticFragmentImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<XWPFRun> getClosingRuns() {
    if (closingRuns == null) {
        closingRuns = new EDataTypeUniqueEList<XWPFRun>(XWPFRun.class, this,
                TemplatePackage.STATIC_FRAGMENT__CLOSING_RUNS);
    }
    return closingRuns;
}
 
Example #10
Source File: StaticFragmentImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<XWPFRun> getRuns() {
    if (runs == null) {
        runs = new EDataTypeUniqueEList<XWPFRun>(XWPFRun.class, this, TemplatePackage.STATIC_FRAGMENT__RUNS);
    }
    return runs;
}
 
Example #11
Source File: LetImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<XWPFRun> getClosingRuns() {
    if (closingRuns == null) {
        closingRuns = new EDataTypeUniqueEList<XWPFRun>(XWPFRun.class, this, TemplatePackage.LET__CLOSING_RUNS);
    }
    return closingRuns;
}
 
Example #12
Source File: UserDocImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<XWPFRun> getRuns() {
    if (runs == null) {
        runs = new EDataTypeUniqueEList<XWPFRun>(XWPFRun.class, this, TemplatePackage.USER_DOC__RUNS);
    }
    return runs;
}
 
Example #13
Source File: QueryImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<XWPFRun> getRuns() {
    if (runs == null) {
        runs = new EDataTypeUniqueEList<XWPFRun>(XWPFRun.class, this, TemplatePackage.QUERY__RUNS);
    }
    return runs;
}
 
Example #14
Source File: CommentImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<XWPFRun> getClosingRuns() {
    if (closingRuns == null) {
        closingRuns = new EDataTypeUniqueEList<XWPFRun>(XWPFRun.class, this, TemplatePackage.COMMENT__CLOSING_RUNS);
    }
    return closingRuns;
}
 
Example #15
Source File: CommentImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<XWPFRun> getRuns() {
    if (runs == null) {
        runs = new EDataTypeUniqueEList<XWPFRun>(XWPFRun.class, this, TemplatePackage.COMMENT__RUNS);
    }
    return runs;
}
 
Example #16
Source File: UserDocImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<XWPFRun> getClosingRuns() {
    if (closingRuns == null) {
        closingRuns = new EDataTypeUniqueEList<XWPFRun>(XWPFRun.class, this,
                TemplatePackage.USER_DOC__CLOSING_RUNS);
    }
    return closingRuns;
}
 
Example #17
Source File: BlockImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<XWPFRun> getClosingRuns() {
    if (closingRuns == null) {
        closingRuns = new EDataTypeUniqueEList<XWPFRun>(XWPFRun.class, this, TemplatePackage.BLOCK__CLOSING_RUNS);
    }
    return closingRuns;
}
 
Example #18
Source File: BlockImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<XWPFRun> getRuns() {
    if (runs == null) {
        runs = new EDataTypeUniqueEList<XWPFRun>(XWPFRun.class, this, TemplatePackage.BLOCK__RUNS);
    }
    return runs;
}
 
Example #19
Source File: RepetitionImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<TemplateValidationMessage> getValidationMessages() {
    if (validationMessages == null) {
        validationMessages = new EDataTypeUniqueEList<TemplateValidationMessage>(TemplateValidationMessage.class,
                this, TemplatePackage.REPETITION__VALIDATION_MESSAGES);
    }
    return validationMessages;
}
 
Example #20
Source File: RepetitionImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<XWPFRun> getClosingRuns() {
    if (closingRuns == null) {
        closingRuns = new EDataTypeUniqueEList<XWPFRun>(XWPFRun.class, this,
                TemplatePackage.REPETITION__CLOSING_RUNS);
    }
    return closingRuns;
}
 
Example #21
Source File: RepetitionImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<XWPFRun> getRuns() {
    if (runs == null) {
        runs = new EDataTypeUniqueEList<XWPFRun>(XWPFRun.class, this, TemplatePackage.REPETITION__RUNS);
    }
    return runs;
}
 
Example #22
Source File: ConditionalImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<TemplateValidationMessage> getValidationMessages() {
    if (validationMessages == null) {
        validationMessages = new EDataTypeUniqueEList<TemplateValidationMessage>(TemplateValidationMessage.class,
                this, TemplatePackage.CONDITIONAL__VALIDATION_MESSAGES);
    }
    return validationMessages;
}
 
Example #23
Source File: ConditionalImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<XWPFRun> getClosingRuns() {
    if (closingRuns == null) {
        closingRuns = new EDataTypeUniqueEList<XWPFRun>(XWPFRun.class, this,
                TemplatePackage.CONDITIONAL__CLOSING_RUNS);
    }
    return closingRuns;
}
 
Example #24
Source File: ConditionalImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<XWPFRun> getRuns() {
    if (runs == null) {
        runs = new EDataTypeUniqueEList<XWPFRun>(XWPFRun.class, this, TemplatePackage.CONDITIONAL__RUNS);
    }
    return runs;
}
 
Example #25
Source File: LinkImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<TemplateValidationMessage> getValidationMessages() {
    if (validationMessages == null) {
        validationMessages = new EDataTypeUniqueEList<TemplateValidationMessage>(TemplateValidationMessage.class,
                this, TemplatePackage.LINK__VALIDATION_MESSAGES);
    }
    return validationMessages;
}
 
Example #26
Source File: LinkImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<XWPFRun> getClosingRuns() {
    if (closingRuns == null) {
        closingRuns = new EDataTypeUniqueEList<XWPFRun>(XWPFRun.class, this, TemplatePackage.LINK__CLOSING_RUNS);
    }
    return closingRuns;
}
 
Example #27
Source File: LinkImpl.java    From M2Doc with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * 
 * @generated
 */
public EList<XWPFRun> getRuns() {
    if (runs == null) {
        runs = new EDataTypeUniqueEList<XWPFRun>(XWPFRun.class, this, TemplatePackage.LINK__RUNS);
    }
    return runs;
}
 
Example #28
Source File: ModelPropertyTypeImpl.java    From Knowage-Server with GNU Affero General Public License v3.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<String> getAdmissibleValues() {
	if (admissibleValues == null) {
		admissibleValues = new EDataTypeUniqueEList<String>(String.class, this, ModelPackage.MODEL_PROPERTY_TYPE__ADMISSIBLE_VALUES);
	}
	return admissibleValues;
}
 
Example #29
Source File: ModelPropertyTypeImpl.java    From Knowage-Server with GNU Affero General Public License v3.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc --> <!-- end-user-doc -->
 * 
 * @generated
 */
@Override
public EList<String> getAdmissibleValues() {
	if (admissibleValues == null) {
		admissibleValues = new EDataTypeUniqueEList<String>(String.class, this, ModelPackage.MODEL_PROPERTY_TYPE__ADMISSIBLE_VALUES);
	}
	return admissibleValues;
}
 
Example #30
Source File: SplitTableImpl.java    From neoscada with Eclipse Public License 1.0 5 votes vote down vote up
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
@Override
public EList<String> getFields ()
{
    if ( fields == null )
    {
        fields = new EDataTypeUniqueEList<String> ( String.class, this, ParserPackage.SPLIT_TABLE__FIELDS );
    }
    return fields;
}