本文整理汇总了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);
}
}
示例2: gatherArtifactInfo
import org.ofbiz.minilang.artifact.ArtifactInfoContext; //导入依赖的package包/类
@Override
public void gatherArtifactInfo(ArtifactInfoContext aic) {
for (MethodOperation methodOp : this.methodOperations) {
methodOp.gatherArtifactInfo(aic);
}
}
示例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();
}
示例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();
}
示例5: gatherArtifactInfo
import org.ofbiz.minilang.artifact.ArtifactInfoContext; //导入依赖的package包/类
@Override
public void gatherArtifactInfo(ArtifactInfoContext aic) {
aic.addServiceName(this.serviceNameFse.toString());
}
示例6: gatherArtifactInfo
import org.ofbiz.minilang.artifact.ArtifactInfoContext; //导入依赖的package包/类
@Override
public void gatherArtifactInfo(ArtifactInfoContext aic) {
for (MethodOperation method : this.subOps) {
method.gatherArtifactInfo(aic);
}
}
示例7: gatherArtifactInfo
import org.ofbiz.minilang.artifact.ArtifactInfoContext; //导入依赖的package包/类
@Override
public void gatherArtifactInfo(ArtifactInfoContext aic) {
for (MethodOperation method : this.thenSubOps) {
method.gatherArtifactInfo(aic);
}
}
示例8: gatherArtifactInfo
import org.ofbiz.minilang.artifact.ArtifactInfoContext; //导入依赖的package包/类
@Override
public void gatherArtifactInfo(ArtifactInfoContext aic) {
aic.addEntityName(this.finder.getEntityName());
}
示例9: gatherArtifactInfo
import org.ofbiz.minilang.artifact.ArtifactInfoContext; //导入依赖的package包/类
@Override
public void gatherArtifactInfo(ArtifactInfoContext aic) {
aic.addEntityName(relationNameFse.toString());
}
示例10: gatherArtifactInfo
import org.ofbiz.minilang.artifact.ArtifactInfoContext; //导入依赖的package包/类
@Override
public void gatherArtifactInfo(ArtifactInfoContext aic) {
aic.addEntityName(entityNameFse.toString());
}