当前位置: 首页>>代码示例>>Java>>正文


Java ArtifactInfoContext类代码示例

本文整理汇总了Java中org.ofbiz.minilang.artifact.ArtifactInfoContext的典型用法代码示例。如果您正苦于以下问题:Java ArtifactInfoContext类的具体用法?Java ArtifactInfoContext怎么用?Java ArtifactInfoContext使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


ArtifactInfoContext类属于org.ofbiz.minilang.artifact包,在下文中一共展示了ArtifactInfoContext类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: gatherArtifactInfo

import org.ofbiz.minilang.artifact.ArtifactInfoContext; //导入依赖的package包/类
@Override
public void gatherArtifactInfo(ArtifactInfoContext aic) {
    SimpleMethod simpleMethodToCall;
    try {
        simpleMethodToCall = SimpleMethod.getSimpleMethod(this.xmlURL, this.methodName);
        if (simpleMethodToCall != null) {
            if (!aic.hasVisited(simpleMethodToCall)) {
                aic.addSimpleMethod(simpleMethodToCall);
                simpleMethodToCall.gatherArtifactInfo(aic);
            }
        }
    } catch (MiniLangException e) {
        Debug.logWarning("Could not find <simple-method name=\"" + this.methodName + "\"> in XML document " + this.xmlResource + ": " + e.toString(), module);
    }
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:16,代码来源:CallSimpleMethod.java

示例2: gatherArtifactInfo

import org.ofbiz.minilang.artifact.ArtifactInfoContext; //导入依赖的package包/类
@Override
public void gatherArtifactInfo(ArtifactInfoContext aic) {
    for (MethodOperation methodOp : this.methodOperations) {
        methodOp.gatherArtifactInfo(aic);
    }
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:7,代码来源:SimpleMethod.java

示例3: getAllEntityNamesUsed

import org.ofbiz.minilang.artifact.ArtifactInfoContext; //导入依赖的package包/类
@Deprecated
public Set<String> getAllEntityNamesUsed() throws MiniLangException {
    ArtifactInfoContext aic = new ArtifactInfoContext();
    gatherArtifactInfo(aic);
    return aic.getEntityNames();
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:7,代码来源:SimpleMethod.java

示例4: getAllServiceNamesCalled

import org.ofbiz.minilang.artifact.ArtifactInfoContext; //导入依赖的package包/类
@Deprecated
public Set<String> getAllServiceNamesCalled() throws MiniLangException {
    ArtifactInfoContext aic = new ArtifactInfoContext();
    gatherArtifactInfo(aic);
    return aic.getServiceNames();
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:7,代码来源:SimpleMethod.java

示例5: gatherArtifactInfo

import org.ofbiz.minilang.artifact.ArtifactInfoContext; //导入依赖的package包/类
@Override
public void gatherArtifactInfo(ArtifactInfoContext aic) {
    aic.addServiceName(this.serviceNameFse.toString());
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:5,代码来源:CallServiceAsynch.java

示例6: gatherArtifactInfo

import org.ofbiz.minilang.artifact.ArtifactInfoContext; //导入依赖的package包/类
@Override
public void gatherArtifactInfo(ArtifactInfoContext aic) {
    for (MethodOperation method : this.subOps) {
        method.gatherArtifactInfo(aic);
    }
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:7,代码来源:IterateMap.java

示例7: gatherArtifactInfo

import org.ofbiz.minilang.artifact.ArtifactInfoContext; //导入依赖的package包/类
@Override
public void gatherArtifactInfo(ArtifactInfoContext aic) {
    for (MethodOperation method : this.thenSubOps) {
        method.gatherArtifactInfo(aic);
    }
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:7,代码来源:While.java

示例8: gatherArtifactInfo

import org.ofbiz.minilang.artifact.ArtifactInfoContext; //导入依赖的package包/类
@Override
public void gatherArtifactInfo(ArtifactInfoContext aic) {
    aic.addEntityName(this.finder.getEntityName());
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:5,代码来源:EntityCondition.java

示例9: gatherArtifactInfo

import org.ofbiz.minilang.artifact.ArtifactInfoContext; //导入依赖的package包/类
@Override
public void gatherArtifactInfo(ArtifactInfoContext aic) {
    aic.addEntityName(relationNameFse.toString());
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:5,代码来源:RemoveRelated.java

示例10: gatherArtifactInfo

import org.ofbiz.minilang.artifact.ArtifactInfoContext; //导入依赖的package包/类
@Override
public void gatherArtifactInfo(ArtifactInfoContext aic) {
    aic.addEntityName(entityNameFse.toString());
}
 
开发者ID:ilscipio,项目名称:scipio-erp,代码行数:5,代码来源:RemoveByAnd.java


注:本文中的org.ofbiz.minilang.artifact.ArtifactInfoContext类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。