當前位置: 首頁>>代碼示例>>Java>>正文


Java EObjectWithInverseResolvingEList類代碼示例

本文整理匯總了Java中org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList的典型用法代碼示例。如果您正苦於以下問題:Java EObjectWithInverseResolvingEList類的具體用法?Java EObjectWithInverseResolvingEList怎麽用?Java EObjectWithInverseResolvingEList使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


EObjectWithInverseResolvingEList類屬於org.eclipse.emf.ecore.util包,在下文中一共展示了EObjectWithInverseResolvingEList類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getPowerRatings

import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入依賴的package包/類
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<PowerRating> getPowerRatings() {
	if (powerRatings == null) {
		powerRatings = new EObjectWithInverseResolvingEList.ManyInverse<PowerRating>(PowerRating.class, this, InfAssetsPackage.TRANSFORMER_ASSET__POWER_RATINGS, InfAssetsPackage.POWER_RATING__TRANSFORMER_ASSETS);
	}
	return powerRatings;
}
 
開發者ID:SvenPeldszus,項目名稱:rgse.ttc17.emoflon.tgg,代碼行數:12,代碼來源:TransformerAssetImpl.java

示例2: getCreditRegisters

import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入依賴的package包/類
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<CreditRegister> getCreditRegisters() {
	if (creditRegisters == null) {
		creditRegisters = new EObjectWithInverseResolvingEList<CreditRegister>(CreditRegister.class, this, InfPaymentMeteringPackage.SDP_ACCOUNTING_FUNCTION__CREDIT_REGISTERS, InfPaymentMeteringPackage.CREDIT_REGISTER__SDP_ACCOUNTING_FUNCTION);
	}
	return creditRegisters;
}
 
開發者ID:SvenPeldszus,項目名稱:rgse.ttc17.emoflon.tgg,代碼行數:12,代碼來源:SDPAccountingFunctionImpl.java

示例3: getErpPOLineItems

import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入依賴的package包/類
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<ErpPOLineItem> getErpPOLineItems() {
	if (erpPOLineItems == null) {
		erpPOLineItems = new EObjectWithInverseResolvingEList<ErpPOLineItem>(ErpPOLineItem.class, this, InfERPSupportPackage.ERP_PURCHASE_ORDER__ERP_PO_LINE_ITEMS, InfERPSupportPackage.ERP_PO_LINE_ITEM__ERP_PURCHASE_ORDER);
	}
	return erpPOLineItems;
}
 
開發者ID:georghinkel,項目名稱:ttc2017smartGrids,代碼行數:12,代碼來源:ErpPurchaseOrderImpl.java

示例4: getBankAccounts

import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入依賴的package包/類
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<BankAccount> getBankAccounts() {
	if (bankAccounts == null) {
		bankAccounts = new EObjectWithInverseResolvingEList<BankAccount>(BankAccount.class, this, PaymentMeteringPackage.SERVICE_SUPPLIER__BANK_ACCOUNTS, InfCommonPackage.BANK_ACCOUNT__SERVICE_SUPPLIER);
	}
	return bankAccounts;
}
 
開發者ID:georghinkel,項目名稱:ttc2017smartGrids,代碼行數:12,代碼來源:ServiceSupplierImpl.java

示例5: getEnergyConsumers

import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入依賴的package包/類
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<ConformLoad> getEnergyConsumers() {
	if (energyConsumers == null) {
		energyConsumers = new EObjectWithInverseResolvingEList<ConformLoad>(ConformLoad.class, this, LoadModelPackage.CONFORM_LOAD_GROUP__ENERGY_CONSUMERS, LoadModelPackage.CONFORM_LOAD__LOAD_GROUP);
	}
	return energyConsumers;
}
 
開發者ID:georghinkel,項目名稱:ttc2017smartGrids,代碼行數:12,代碼來源:ConformLoadGroupImpl.java

示例6: getCustomerDatas

import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入依賴的package包/類
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<Customer> getCustomerDatas() {
	if (customerDatas == null) {
		customerDatas = new EObjectWithInverseResolvingEList.ManyInverse<Customer>(Customer.class, this, InfOperationsPackage.OUTAGE_NOTIFICATION__CUSTOMER_DATAS, CustomersPackage.CUSTOMER__OUTAGE_NOTIFICATIONS);
	}
	return customerDatas;
}
 
開發者ID:georghinkel,項目名稱:ttc2017smartGrids,代碼行數:12,代碼來源:OutageNotificationImpl.java

示例7: getInadvertentAccounts

import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入依賴的package包/類
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<InadvertentAccount> getInadvertentAccounts() {
	if (inadvertentAccounts == null) {
		inadvertentAccounts = new EObjectWithInverseResolvingEList<InadvertentAccount>(InadvertentAccount.class, this, EnergySchedulingPackage.HOST_CONTROL_AREA__INADVERTENT_ACCOUNTS, EnergySchedulingPackage.INADVERTENT_ACCOUNT__HOST_CONTROL_AREA);
	}
	return inadvertentAccounts;
}
 
開發者ID:georghinkel,項目名稱:ttc2017smartGrids,代碼行數:12,代碼來源:HostControlAreaImpl.java

示例8: getCustomerAgreements

import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入依賴的package包/類
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<CustomerAgreement> getCustomerAgreements() {
	if (customerAgreements == null) {
		customerAgreements = new EObjectWithInverseResolvingEList.ManyInverse<CustomerAgreement>(CustomerAgreement.class, this, CustomersPackage.PRICING_STRUCTURE__CUSTOMER_AGREEMENTS, CustomersPackage.CUSTOMER_AGREEMENT__PRICING_STRUCTURES);
	}
	return customerAgreements;
}
 
開發者ID:georghinkel,項目名稱:ttc2017smartGrids,代碼行數:12,代碼來源:PricingStructureImpl.java

示例9: getCableInfos

import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入依賴的package包/類
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<CableInfo> getCableInfos() {
	if (cableInfos == null) {
		cableInfos = new EObjectWithInverseResolvingEList<CableInfo>(CableInfo.class, this, InfAssetsPackage.DUCT_INFO__CABLE_INFOS, AssetModelsPackage.CABLE_INFO__DUCT_BANK_INFO);
	}
	return cableInfos;
}
 
開發者ID:SvenPeldszus,項目名稱:rgse.ttc17.emoflon.tgg,代碼行數:12,代碼來源:DuctInfoImpl.java

示例10: getEmissionCurves

import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入依賴的package包/類
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<EmissionCurve> getEmissionCurves() {
	if (emissionCurves == null) {
		emissionCurves = new EObjectWithInverseResolvingEList<EmissionCurve>(EmissionCurve.class, this, ProductionPackage.THERMAL_GENERATING_UNIT__EMISSION_CURVES, ProductionPackage.EMISSION_CURVE__THERMAL_GENERATING_UNIT);
	}
	return emissionCurves;
}
 
開發者ID:georghinkel,項目名稱:ttc2017smartGrids,代碼行數:12,代碼來源:ThermalGeneratingUnitImpl.java

示例11: getSeasonDayTypeSchedules

import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入依賴的package包/類
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<SeasonDayTypeSchedule> getSeasonDayTypeSchedules() {
	if (seasonDayTypeSchedules == null) {
		seasonDayTypeSchedules = new EObjectWithInverseResolvingEList<SeasonDayTypeSchedule>(SeasonDayTypeSchedule.class, this, LoadModelPackage.SEASON__SEASON_DAY_TYPE_SCHEDULES, LoadModelPackage.SEASON_DAY_TYPE_SCHEDULE__SEASON);
	}
	return seasonDayTypeSchedules;
}
 
開發者ID:georghinkel,項目名稱:ttc2017smartGrids,代碼行數:12,代碼來源:SeasonImpl.java

示例12: getAreaReserveSpec

import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入依賴的package包/類
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<AreaReserveSpec> getAreaReserveSpec() {
	if (areaReserveSpec == null) {
		areaReserveSpec = new EObjectWithInverseResolvingEList<AreaReserveSpec>(AreaReserveSpec.class, this, EnergySchedulingPackage.RESERVE__AREA_RESERVE_SPEC, EnergySchedulingPackage.AREA_RESERVE_SPEC__RESERVE_ENERGY_TRANSACTION);
	}
	return areaReserveSpec;
}
 
開發者ID:georghinkel,項目名稱:ttc2017smartGrids,代碼行數:12,代碼來源:ReserveImpl.java

示例13: getGmlPolygonSymbols

import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入依賴的package包/類
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<GmlPolygonSymbol> getGmlPolygonSymbols() {
	if (gmlPolygonSymbols == null) {
		gmlPolygonSymbols = new EObjectWithInverseResolvingEList<GmlPolygonSymbol>(GmlPolygonSymbol.class, this, InfGMLSupportPackage.GML_FILL__GML_POLYGON_SYMBOLS, InfGMLSupportPackage.GML_POLYGON_SYMBOL__GML_FILL);
	}
	return gmlPolygonSymbols;
}
 
開發者ID:georghinkel,項目名稱:ttc2017smartGrids,代碼行數:12,代碼來源:GmlFillImpl.java

示例14: getTransmissionProducts

import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入依賴的package包/類
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<TransmissionProduct> getTransmissionProducts() {
	if (transmissionProducts == null) {
		transmissionProducts = new EObjectWithInverseResolvingEList<TransmissionProduct>(TransmissionProduct.class, this, FinancialPackage.TRANSMISSION_PROVIDER__TRANSMISSION_PRODUCTS, FinancialPackage.TRANSMISSION_PRODUCT__TRANSMISSION_PROVIDER);
	}
	return transmissionProducts;
}
 
開發者ID:georghinkel,項目名稱:ttc2017smartGrids,代碼行數:12,代碼來源:TransmissionProviderImpl.java

示例15: getGmlPolygonSymbols

import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入依賴的package包/類
/**
 * <!-- begin-user-doc -->
 * <!-- end-user-doc -->
 * @generated
 */
public EList<GmlPolygonSymbol> getGmlPolygonSymbols() {
	if (gmlPolygonSymbols == null) {
		gmlPolygonSymbols = new EObjectWithInverseResolvingEList<GmlPolygonSymbol>(GmlPolygonSymbol.class, this, InfGMLSupportPackage.GML_DIAGRAM_OBJECT__GML_POLYGON_SYMBOLS, InfGMLSupportPackage.GML_POLYGON_SYMBOL__GML_DIAGRAM_OBJECT);
	}
	return gmlPolygonSymbols;
}
 
開發者ID:georghinkel,項目名稱:ttc2017smartGrids,代碼行數:12,代碼來源:GmlDiagramObjectImpl.java


注:本文中的org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。