本文整理匯總了Java中org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList.ManyInverse方法的典型用法代碼示例。如果您正苦於以下問題:Java EObjectWithInverseResolvingEList.ManyInverse方法的具體用法?Java EObjectWithInverseResolvingEList.ManyInverse怎麽用?Java EObjectWithInverseResolvingEList.ManyInverse使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList
的用法示例。
在下文中一共展示了EObjectWithInverseResolvingEList.ManyInverse方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getFTRs
import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入方法依賴的package包/類
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<FTR> getFTRs() {
if (ftRs == null) {
ftRs = new EObjectWithInverseResolvingEList.ManyInverse<FTR>(FTR.class, this, MarketOperationsPackage.PNODE__FT_RS, MarketOperationsPackage.FTR__PNODES);
}
return ftRs;
}
示例2: getOutageRecords
import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入方法依賴的package包/類
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<OutageRecord> getOutageRecords() {
if (outageRecords == null) {
outageRecords = new EObjectWithInverseResolvingEList.ManyInverse<OutageRecord>(OutageRecord.class, this, InfOperationsPackage.OUTAGE_CODE__OUTAGE_RECORDS, InfOperationsPackage.OUTAGE_RECORD__OUTAGE_CODES);
}
return outageRecords;
}
示例3: getChangeSets
import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入方法依賴的package包/類
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<ChangeSet> getChangeSets() {
if (changeSets == null) {
changeSets = new EObjectWithInverseResolvingEList.ManyInverse<ChangeSet>(ChangeSet.class, this, CommonPackage.DOCUMENT__CHANGE_SETS, InfOperationsPackage.CHANGE_SET__DOCUMENTS);
}
return changeSets;
}
示例4: getCrafts
import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入方法依賴的package包/類
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<Craft> getCrafts() {
if (crafts == null) {
crafts = new EObjectWithInverseResolvingEList.ManyInverse<Craft>(Craft.class, this, InfWorkPackage.CAPABILITY__CRAFTS, InfCommonPackage.CRAFT__CAPABILITIES);
}
return crafts;
}
示例5: getWorkCostDetails
import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入方法依賴的package包/類
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<WorkCostDetail> getWorkCostDetails() {
if (workCostDetails == null) {
workCostDetails = new EObjectWithInverseResolvingEList.ManyInverse<WorkCostDetail>(WorkCostDetail.class, this, InfWorkPackage.PROPERTY_UNIT__WORK_COST_DETAILS, InfWorkPackage.WORK_COST_DETAIL__PROPERTY_UNITS);
}
return workCostDetails;
}
示例6: getDesignLocations
import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入方法依賴的package包/類
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<DesignLocation> getDesignLocations() {
if (designLocations == null) {
designLocations = new EObjectWithInverseResolvingEList.ManyInverse<DesignLocation>(DesignLocation.class, this, InfWorkPackage.CONDITION_FACTOR__DESIGN_LOCATIONS, InfWorkPackage.DESIGN_LOCATION__CONDITION_FACTORS);
}
return designLocations;
}
示例7: getShortedWindingSpecs
import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入方法依賴的package包/類
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<ToWindingSpec> getShortedWindingSpecs() {
if (shortedWindingSpecs == null) {
shortedWindingSpecs = new EObjectWithInverseResolvingEList.ManyInverse<ToWindingSpec>(ToWindingSpec.class, this, AssetModelsPackage.SHORT_CIRCUIT_TEST__SHORTED_WINDING_SPECS, AssetModelsPackage.TO_WINDING_SPEC__SHORT_CIRCUIT_TESTS);
}
return shortedWindingSpecs;
}
示例8: getDocuments
import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入方法依賴的package包/類
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<Document> getDocuments() {
if (documents == null) {
documents = new EObjectWithInverseResolvingEList.ManyInverse<Document>(Document.class, this, InfOperationsPackage.NETWORK_DATA_SET__DOCUMENTS, CommonPackage.DOCUMENT__NETWORK_DATA_SETS);
}
return documents;
}
示例9: getWorkBillingInfos
import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入方法依賴的package包/類
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<WorkBillingInfo> getWorkBillingInfos() {
if (workBillingInfos == null) {
workBillingInfos = new EObjectWithInverseResolvingEList.ManyInverse<WorkBillingInfo>(WorkBillingInfo.class, this, InfERPSupportPackage.ERP_INVOICE_LINE_ITEM__WORK_BILLING_INFOS, InfCustomersPackage.WORK_BILLING_INFO__ERP_LINE_ITEMS);
}
return workBillingInfos;
}
示例10: getHazards
import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入方法依賴的package包/類
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<Hazard> getHazards() {
if (hazards == null) {
hazards = new EObjectWithInverseResolvingEList.ManyInverse<Hazard>(Hazard.class, this, CommonPackage.LOCATION__HAZARDS, InfLocationsPackage.HAZARD__LOCATIONS);
}
return hazards;
}
示例11: getLinks
import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入方法依賴的package包/類
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<ComputingResource> getLinks() {
if (links == null) {
links = new EObjectWithInverseResolvingEList.ManyInverse<ComputingResource>(ComputingResource.class, this, AnalysisPackage.COMMUNICATION_RESOURCE__LINKS, AnalysisPackage.COMPUTING_RESOURCE__LINKED_BY);
}
return links;
}
示例12: getLimits
import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入方法依賴的package包/類
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<Limit> getLimits() {
if (limits == null) {
limits = new EObjectWithInverseResolvingEList.ManyInverse<Limit>(Limit.class, this, InfAssetsPackage.PROCEDURE__LIMITS, MeasPackage.LIMIT__PROCEDURES);
}
return limits;
}
示例13: getScheduledBy
import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入方法依賴的package包/類
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<AvailableTransmissionCapacity> getScheduledBy() {
if (scheduledBy == null) {
scheduledBy = new EObjectWithInverseResolvingEList.ManyInverse<AvailableTransmissionCapacity>(AvailableTransmissionCapacity.class, this, ReservationPackage.TRANSMISSION_SERVICE__SCHEDULED_BY, EnergySchedulingPackage.AVAILABLE_TRANSMISSION_CAPACITY__SCHEDULE_FOR);
}
return scheduledBy;
}
示例14: getWorkLocations
import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入方法依賴的package包/類
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<WorkLocation> getWorkLocations() {
if (workLocations == null) {
workLocations = new EObjectWithInverseResolvingEList.ManyInverse<WorkLocation>(WorkLocation.class, this, InfWorkPackage.DESIGN_LOCATION__WORK_LOCATIONS, InfWorkPackage.WORK_LOCATION__DESIGN_LOCATIONS);
}
return workLocations;
}
示例15: getWorkCostDetails
import org.eclipse.emf.ecore.util.EObjectWithInverseResolvingEList; //導入方法依賴的package包/類
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<WorkCostDetail> getWorkCostDetails() {
if (workCostDetails == null) {
workCostDetails = new EObjectWithInverseResolvingEList.ManyInverse<WorkCostDetail>(WorkCostDetail.class, this, WorkPackage.WORK__WORK_COST_DETAILS, InfWorkPackage.WORK_COST_DETAIL__WORKS);
}
return workCostDetails;
}