org.eclipse.emf.ecore.util.EObjectContainmentEList Java Examples
The following examples show how to use
org.eclipse.emf.ecore.util.EObjectContainmentEList.
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 Project: graphical-lsp Author: eclipsesource File: EdgeImpl.java License: Eclipse Public License 2.0 | 5 votes |
/** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @Override public EList<Point> getBendPoints() { if (bendPoints == null) { bendPoints = new EObjectContainmentEList<Point>(Point.class, this, WfnotationPackage.EDGE__BEND_POINTS); } return bendPoints; }
Example #2
Source Project: solidity-ide Author: Yakindu File: SourceUnitImpl.java License: Eclipse Public License 1.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EList<DomainElement> getPragma() { if (pragma == null) { pragma = new EObjectContainmentEList<DomainElement>(DomainElement.class, this, SolidityPackage.SOURCE_UNIT__PRAGMA); } return pragma; }
Example #3
Source Project: graphical-lsp Author: eclipsesource File: GIssueMarkerImpl.java License: Eclipse Public License 2.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EList<GIssue> getIssues() { if (issues == null) { issues = new EObjectContainmentEList<GIssue>(GIssue.class, this, GraphPackage.GISSUE_MARKER__ISSUES); } return issues; }
Example #4
Source Project: Knowage-Server Author: KnowageLabs File: ModelImpl.java License: GNU Affero General Public License v3.0 | 5 votes |
/** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @Override public EList<ModelPropertyType> getPropertyTypes() { if (propertyTypes == null) { propertyTypes = new EObjectContainmentEList<ModelPropertyType>(ModelPropertyType.class, this, ModelPackage.MODEL__PROPERTY_TYPES); } return propertyTypes; }
Example #5
Source Project: neoscada Author: eclipse File: CompositeComponentImpl.java License: Eclipse Public License 1.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<Component> getChildren () { if ( children == null ) { children = new EObjectContainmentEList<Component> ( Component.class, this, DetailViewPackage.COMPOSITE_COMPONENT__CHILDREN ); } return children; }
Example #6
Source Project: ADT_Frontend Author: abapGit File: RepositoriesImpl.java License: MIT License | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EList<IRepository> getRepositories() { if (repositories == null) { repositories = new EObjectContainmentEList<IRepository>(IRepository.class, this, IAbapgitrepositoriesPackage.REPOSITORIES__REPOSITORIES); } return repositories; }
Example #7
Source Project: ADT_Frontend Author: abapGit File: ExternalRepositoryInfoImpl.java License: MIT License | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EList<IBranch> getBranches() { if (this.branches == null) { this.branches = new EObjectContainmentEList<IBranch>(IBranch.class, this, IAbapgitexternalrepoPackage.EXTERNAL_REPOSITORY_INFO__BRANCHES); } return this.branches; }
Example #8
Source Project: neoscada Author: eclipse File: ProfileImpl.java License: Eclipse Public License 1.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<PropertyEntry> getProperties () { if ( properties == null ) { properties = new EObjectContainmentEList.Resolving<PropertyEntry> ( PropertyEntry.class, this, RecipePackage.PROFILE__PROPERTIES ); } return properties; }
Example #9
Source Project: neoscada Author: eclipse File: ConnectionTypeImpl.java License: Eclipse Public License 1.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<UpdateType> getUpdate () { if ( update == null ) { update = new EObjectContainmentEList<UpdateType> ( UpdateType.class, this, ConfigurationPackage.CONNECTION_TYPE__UPDATE ); } return update; }
Example #10
Source Project: n4js Author: eclipse File: VersionRangeSetRequirementImpl.java License: Eclipse Public License 1.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EList<VersionRange> getRanges() { if (ranges == null) { ranges = new EObjectContainmentEList<VersionRange>(VersionRange.class, this, SemverPackage.VERSION_RANGE_SET_REQUIREMENT__RANGES); } return ranges; }
Example #11
Source Project: n4js Author: eclipse File: ParameterizedTypeRefStructural_IMImpl.java License: Eclipse Public License 1.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EList<TypeVariableMapping> getPostponedSubstitutions() { if (postponedSubstitutions == null) { postponedSubstitutions = new EObjectContainmentEList<TypeVariableMapping>(TypeVariableMapping.class, this, ImPackage.PARAMETERIZED_TYPE_REF_STRUCTURAL_IM__POSTPONED_SUBSTITUTIONS); } return postponedSubstitutions; }
Example #12
Source Project: neoscada Author: eclipse File: ProfileImpl.java License: Eclipse Public License 1.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<BundleStartLevel> getSetbsl () { if ( setbsl == null ) { setbsl = new EObjectContainmentEList.Resolving<BundleStartLevel> ( BundleStartLevel.class, this, ProfilePackage.PROFILE__SETBSL ); } return setbsl; }
Example #13
Source Project: neoscada Author: eclipse File: WorldImpl.java License: Eclipse Public License 1.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<Node> getNodes () { if ( nodes == null ) { nodes = new EObjectContainmentEList.Resolving<Node> ( Node.class, this, WorldPackage.WORLD__NODES ); } return nodes; }
Example #14
Source Project: neoscada Author: eclipse File: CommonDeploymentMechanismImpl.java License: Eclipse Public License 1.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<SetupModule> getAdditionalSetupModules () { if ( additionalSetupModules == null ) { additionalSetupModules = new EObjectContainmentEList.Resolving<SetupModule> ( SetupModule.class, this, DeploymentPackage.COMMON_DEPLOYMENT_MECHANISM__ADDITIONAL_SETUP_MODULES ); } return additionalSetupModules; }
Example #15
Source Project: solidity-ide Author: Yakindu File: FallbackDefinitionImpl.java License: Eclipse Public License 1.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EList<Modifier> getModifier() { if (modifier == null) { modifier = new EObjectContainmentEList<Modifier>(Modifier.class, this, SolidityPackage.FALLBACK_DEFINITION__MODIFIER); } return modifier; }
Example #16
Source Project: neoscada Author: eclipse File: ConnectionTypeImpl.java License: Eclipse Public License 1.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<QueryType> getQuery () { if ( query == null ) { query = new EObjectContainmentEList<QueryType> ( QueryType.class, this, ConfigurationPackage.CONNECTION_TYPE__QUERY ); } return query; }
Example #17
Source Project: n4js Author: eclipse File: SymbolTableImpl.java License: Eclipse Public License 1.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EList<SymbolTableEntry> getEntries() { if (entries == null) { entries = new EObjectContainmentEList<SymbolTableEntry>(SymbolTableEntry.class, this, ImPackage.SYMBOL_TABLE__ENTRIES); } return entries; }
Example #18
Source Project: neoscada Author: eclipse File: SiteImpl.java License: Eclipse Public License 1.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<Link> getLinks() { if (links == null) { links = new EObjectContainmentEList<Link>(Link.class, this, WebPackage.SITE__LINKS); } return links; }
Example #19
Source Project: n4js Author: eclipse File: BlockImpl.java License: Eclipse Public License 1.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EList<Statement> getStatements() { if (statements == null) { statements = new EObjectContainmentEList<Statement>(Statement.class, this, N4JSPackage.BLOCK__STATEMENTS); } return statements; }
Example #20
Source Project: n4js Author: eclipse File: N4ClassDefinitionImpl.java License: Eclipse Public License 1.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EList<ParameterizedTypeRef> getImplementedInterfaceRefs() { if (implementedInterfaceRefs == null) { implementedInterfaceRefs = new EObjectContainmentEList<ParameterizedTypeRef>(ParameterizedTypeRef.class, this, N4JSPackage.N4_CLASS_DEFINITION__IMPLEMENTED_INTERFACE_REFS); } return implementedInterfaceRefs; }
Example #21
Source Project: n4js Author: eclipse File: ArrayLiteralImpl.java License: Eclipse Public License 1.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EList<ArrayElement> getElements() { if (elements == null) { elements = new EObjectContainmentEList<ArrayElement>(ArrayElement.class, this, N4JSPackage.ARRAY_LITERAL__ELEMENTS); } return elements; }
Example #22
Source Project: neoscada Author: eclipse File: ConfigurationsImpl.java License: Eclipse Public License 1.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<Settings> getSettings () { if ( settings == null ) { settings = new EObjectContainmentEList.Resolving<Settings> ( Settings.class, this, InfrastructurePackage.CONFIGURATIONS__SETTINGS ); } return settings; }
Example #23
Source Project: n4js Author: eclipse File: TFormalParameterImpl.java License: Eclipse Public License 1.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EList<TAnnotation> getAnnotations() { if (annotations == null) { annotations = new EObjectContainmentEList<TAnnotation>(TAnnotation.class, this, TypesPackage.TFORMAL_PARAMETER__ANNOTATIONS); } return annotations; }
Example #24
Source Project: neoscada Author: eclipse File: ApplicationNodeImpl.java License: Eclipse Public License 1.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<Application> getApplications () { if ( applications == null ) { applications = new EObjectContainmentEList.Resolving<Application> ( Application.class, this, WorldPackage.APPLICATION_NODE__APPLICATIONS ); } return applications; }
Example #25
Source Project: n4js Author: eclipse File: ExportDeclarationImpl.java License: Eclipse Public License 1.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EList<ExportSpecifier> getNamedExports() { if (namedExports == null) { namedExports = new EObjectContainmentEList<ExportSpecifier>(ExportSpecifier.class, this, N4JSPackage.EXPORT_DECLARATION__NAMED_EXPORTS); } return namedExports; }
Example #26
Source Project: neoscada Author: eclipse File: ParserDriverImpl.java License: Eclipse Public License 1.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EList<ApplicationModule> getModules () { if ( modules == null ) { modules = new EObjectContainmentEList.Resolving<ApplicationModule> ( ApplicationModule.class, this, ParserPackage.PARSER_DRIVER__MODULES ); } return modules; }
Example #27
Source Project: n4js Author: eclipse File: N4ClassifierDeclarationImpl.java License: Eclipse Public License 1.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EList<TypeVariable> getTypeVars() { if (typeVars == null) { typeVars = new EObjectContainmentEList<TypeVariable>(TypeVariable.class, this, N4JSPackage.N4_CLASSIFIER_DECLARATION__TYPE_VARS); } return typeVars; }
Example #28
Source Project: n4js Author: eclipse File: AnnotationImpl.java License: Eclipse Public License 1.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EList<AnnotationArgument> getArgs() { if (args == null) { args = new EObjectContainmentEList<AnnotationArgument>(AnnotationArgument.class, this, N4JSPackage.ANNOTATION__ARGS); } return args; }
Example #29
Source Project: neoscada Author: eclipse File: GlobalImpl.java License: Eclipse Public License 1.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<MonitorPoolImport> getMonitorPoolImports () { if ( monitorPoolImports == null ) { monitorPoolImports = new EObjectContainmentEList.Resolving<MonitorPoolImport> ( MonitorPoolImport.class, this, GlobalizePackage.GLOBAL__MONITOR_POOL_IMPORTS ); } return monitorPoolImports; }
Example #30
Source Project: n4js Author: eclipse File: N4MethodDeclarationImpl.java License: Eclipse Public License 1.0 | 5 votes |
/** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EList<FormalParameter> getFpars() { if (fpars == null) { fpars = new EObjectContainmentEList<FormalParameter>(FormalParameter.class, this, N4JSPackage.N4_METHOD_DECLARATION__FPARS); } return fpars; }